mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-27 02:47:31 +09:00
parent
470a6e4401
commit
13fcc4a046
949 changed files with 95662 additions and 444 deletions
141
toolkit/themes/osx/global/popup.css
Normal file
141
toolkit/themes/osx/global/popup.css
Normal file
|
|
@ -0,0 +1,141 @@
|
|||
/* 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;
|
||||
}
|
||||
|
||||
panel[type="arrow"][side="top"],
|
||||
panel[type="arrow"][side="bottom"] {
|
||||
margin-left: -25px;
|
||||
margin-right: -25px;
|
||||
}
|
||||
|
||||
panel[type="arrow"][side="left"],
|
||||
panel[type="arrow"][side="right"] {
|
||||
margin-top: -25px;
|
||||
margin-bottom: -25px;
|
||||
}
|
||||
|
||||
.panel-arrowcontent {
|
||||
-moz-appearance: none;
|
||||
background: var(--arrowpanel-background);
|
||||
border-radius: var(--arrowpanel-border-radius);
|
||||
box-shadow: 0 0 0 1px var(--arrowpanel-border-color);
|
||||
color: var(--arrowpanel-color);
|
||||
border: none;
|
||||
padding: var(--arrowpanel-padding);
|
||||
margin: 1px;
|
||||
}
|
||||
|
||||
.panel-arrow[side="top"] {
|
||||
list-style-image: var(--panel-arrow-image-vertical,
|
||||
url("chrome://global/skin/arrow/panelarrow-vertical.png"));
|
||||
margin-left: 16px;
|
||||
margin-right: 16px;
|
||||
margin-bottom: -1px;
|
||||
}
|
||||
|
||||
.panel-arrow[side="bottom"] {
|
||||
list-style-image: url("chrome://global/skin/arrow/panelarrow-vertical.png");
|
||||
-moz-transform: scaleY(-1);
|
||||
margin-left: 16px;
|
||||
margin-right: 16px;
|
||||
margin-top: -1px;
|
||||
}
|
||||
|
||||
.panel-arrow[side="left"] {
|
||||
list-style-image: url("chrome://global/skin/arrow/panelarrow-horizontal.png");
|
||||
margin-top: 16px;
|
||||
margin-bottom: 16px;
|
||||
margin-right: -1px;
|
||||
}
|
||||
|
||||
.panel-arrow[side="right"] {
|
||||
list-style-image: url("chrome://global/skin/arrow/panelarrow-horizontal.png");
|
||||
transform: scaleX(-1);
|
||||
margin-top: 16px;
|
||||
margin-bottom: 16px;
|
||||
margin-left: -1px;
|
||||
}
|
||||
|
||||
@media (min-resolution: 2dppx) {
|
||||
.panel-arrow[side="top"],
|
||||
.panel-arrow[side="bottom"] {
|
||||
list-style-image: var(--panel-arrow-image-vertical,
|
||||
url("chrome://global/skin/arrow/panelarrow-vertical@2x.png"));
|
||||
width: 18px;
|
||||
height: 10px;
|
||||
}
|
||||
|
||||
.panel-arrow[side="left"],
|
||||
.panel-arrow[side="right"] {
|
||||
list-style-image: url("chrome://global/skin/arrow/panelarrow-horizontal@2x.png");
|
||||
width: 10px;
|
||||
height: 18px;
|
||||
}
|
||||
}
|
||||
|
||||
/* ::::: 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 {
|
||||
min-width: 0px;
|
||||
}
|
||||
|
||||
menulist > menupopup:not([position]) {
|
||||
margin-inline-start: -13px;
|
||||
margin-top: -2px;
|
||||
}
|
||||
|
||||
menulist[editable="true"] > menupopup {
|
||||
-moz-appearance: none;
|
||||
}
|
||||
|
||||
menulist > menupopup > .popup-internal-box {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
menulist:not([editable="true"]) > menupopup {
|
||||
padding: 4px 0;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue