mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
144 lines
3.0 KiB
CSS
144 lines
3.0 KiB
CSS
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
|
|
|
|
menupopup,
|
|
panel {
|
|
-moz-appearance: menupopup;
|
|
background-color: Menu;
|
|
}
|
|
|
|
menupopup > menu > menupopup {
|
|
margin-top: -4px;
|
|
}
|
|
|
|
.popup-internal-box {
|
|
padding: 4px 0;
|
|
}
|
|
|
|
panel[titlebar] {
|
|
-moz-appearance: none; /* to disable rounded corners */
|
|
}
|
|
|
|
panel[type="arrow"] {
|
|
-moz-appearance: none;
|
|
background: transparent;
|
|
transition: opacity 300ms;
|
|
}
|
|
|
|
.panel-arrowcontainer[panelopen] {
|
|
transition-duration: 200ms, 150ms;
|
|
transition-property: opacity, transform;
|
|
transition-timing-function: ease-out;
|
|
}
|
|
|
|
.panel-arrowcontainer:not([panelopen]) {
|
|
opacity: 0;
|
|
}
|
|
|
|
.panel-arrowcontainer:not([panelopen])[side="top"] {
|
|
transform: translateY(-20px);
|
|
}
|
|
|
|
.panel-arrowcontainer:not([panelopen])[side="bottom"] {
|
|
transform: translateY(20px);
|
|
}
|
|
|
|
.panel-arrowcontainer:not([panelopen])[side="left"] {
|
|
transform: translateX(-20px);
|
|
}
|
|
|
|
.panel-arrowcontainer:not([panelopen])[side="right"] {
|
|
transform: translateX(20px);
|
|
}
|
|
|
|
panel[type="arrow"][side="top"],
|
|
panel[type="arrow"][side="bottom"] {
|
|
margin-left: -26px;
|
|
margin-right: -26px;
|
|
}
|
|
|
|
panel[type="arrow"][side="left"],
|
|
panel[type="arrow"][side="right"] {
|
|
margin-top: -26px;
|
|
margin-bottom: -26px;
|
|
}
|
|
|
|
.panel-arrowcontent {
|
|
-moz-appearance: none;
|
|
background: #ededed;
|
|
border-radius: 5px;
|
|
box-shadow: 0 0 0 1px rgba(255,255,255,.5) inset,
|
|
0 1px 0 rgba(255,255,255,.05) inset,
|
|
0 0 0 1px rgba(0,0,0,.25);
|
|
color: #333;
|
|
padding: 16px;
|
|
margin: 1px;
|
|
}
|
|
|
|
.panel-arrow[side="top"] {
|
|
list-style-image: url("chrome://global/skin/arrow/panelarrow-vertical.png");
|
|
margin-left: 6px;
|
|
margin-right: 6px;
|
|
margin-bottom: -2px;
|
|
}
|
|
|
|
.panel-arrow[side="bottom"] {
|
|
list-style-image: url("chrome://global/skin/arrow/panelarrow-vertical.png");
|
|
-moz-transform: scaleY(-1);
|
|
margin-left: 6px;
|
|
margin-right: 6px;
|
|
margin-top: -2px;
|
|
}
|
|
|
|
.panel-arrow[side="left"] {
|
|
list-style-image: url("chrome://global/skin/arrow/panelarrow-horizontal.png");
|
|
margin-top: 6px;
|
|
margin-bottom: 6px;
|
|
margin-right: -2px;
|
|
}
|
|
|
|
.panel-arrow[side="right"] {
|
|
list-style-image: url("chrome://global/skin/arrow/panelarrow-horizontal.png");
|
|
transform: scaleX(-1);
|
|
margin-top: 6px;
|
|
margin-bottom: 6px;
|
|
margin-left: -2px;
|
|
}
|
|
|
|
/* ::::: tooltip ::::: */
|
|
|
|
tooltip {
|
|
-moz-appearance: tooltip;
|
|
margin-top: 18px;
|
|
padding: 2px 3px;
|
|
max-width: 40em;
|
|
color: InfoText;
|
|
font: message-box;
|
|
cursor: default;
|
|
}
|
|
|
|
tooltip[titletip="true"] {
|
|
/* See bug 32157 comment 128
|
|
* margin: -2px 0px 0px -3px;
|
|
*/
|
|
max-width: none;
|
|
}
|
|
|
|
/* rules for popups associated with menulists */
|
|
|
|
menulist > menupopup,
|
|
.menulist-menupopup {
|
|
min-width: 0px;
|
|
}
|
|
|
|
menulist[editable="true"] > menupopup {
|
|
-moz-appearance: none;
|
|
}
|
|
|
|
menulist[editable="true"] > menupopup > .popup-internal-box {
|
|
padding: 0;
|
|
}
|