mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-26 02:17:34 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
125
toolkit/themes/faststripe/global/button.css
Normal file
125
toolkit/themes/faststripe/global/button.css
Normal file
|
|
@ -0,0 +1,125 @@
|
|||
/* 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/. */
|
||||
|
||||
/* ===== button.css =====================================================
|
||||
== Styles used by the XUL button element.
|
||||
======================================================================= */
|
||||
|
||||
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
|
||||
|
||||
/* :::::::::: button :::::::::: */
|
||||
|
||||
button {
|
||||
/*-moz-appearance: button;*/
|
||||
margin: 3px 7px 3px 7px;
|
||||
min-width: 6.3em;
|
||||
border: 1px solid;
|
||||
border-color: #555555;
|
||||
background-color: #eeeeee;
|
||||
color: black;
|
||||
border-radius: 3px 3px;
|
||||
}
|
||||
|
||||
.button-box {
|
||||
border: 1px solid transparent;
|
||||
padding-top: 1px;
|
||||
padding-bottom: 2px;
|
||||
padding-inline-start: 3px;
|
||||
padding-inline-end: 4px;
|
||||
}
|
||||
|
||||
.button-text {
|
||||
margin: 0 !important;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/* .......... focused state .......... */
|
||||
|
||||
button:focus {
|
||||
}
|
||||
|
||||
button:focus > .button-box {
|
||||
border: 1px dotted black;
|
||||
}
|
||||
|
||||
/* .......... default state .......... */
|
||||
|
||||
button[default="true"] {
|
||||
margin: 1px 5px 1px 5px;
|
||||
border-width: 2px;
|
||||
border-radius: 3px 3px;
|
||||
border-color: black;
|
||||
}
|
||||
|
||||
/* .......... active/open/checked state .......... */
|
||||
|
||||
button:hover:active,
|
||||
button[open="true"],
|
||||
button[checked="true"] {
|
||||
border-color: black;
|
||||
background: #777777;
|
||||
}
|
||||
|
||||
/* .......... disabled state .......... */
|
||||
|
||||
button[disabled="true"] {
|
||||
border-color: #dddddd;
|
||||
color: gray;
|
||||
}
|
||||
|
||||
button[disabled="true"] > .button-box {
|
||||
padding-top: 1px !important;
|
||||
padding-bottom: 2px !important;
|
||||
padding-inline-start: 3px !important;
|
||||
padding-inline-end: 4px !important;
|
||||
}
|
||||
|
||||
/* ::::: menu/menu-button buttons ::::: */
|
||||
|
||||
button[type="menu-button"] {
|
||||
-moz-box-align: center;
|
||||
-moz-box-pack: center;
|
||||
margin: 0;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.button-menu-dropmarker,
|
||||
.button-menubutton-dropmarker {
|
||||
-moz-appearance: none !important;
|
||||
margin: 1px;
|
||||
background-color: transparent !important;
|
||||
border: none !important;
|
||||
min-width:11px;
|
||||
min-height:11px;
|
||||
}
|
||||
|
||||
.button-menubutton-dropmarker[open="true"] {
|
||||
margin-top: 2px;
|
||||
margin-bottom: 0px;
|
||||
margin-inline-start: 2px;
|
||||
margin-inline-end: 0px;
|
||||
}
|
||||
|
||||
/* ::::: plain buttons ::::: */
|
||||
|
||||
button.plain {
|
||||
border: 0px !important;
|
||||
margin: 0px !important;
|
||||
padding: 0px !important;
|
||||
}
|
||||
|
||||
button[type="disclosure"] {
|
||||
border: 0px !important;
|
||||
margin: 0px !important;
|
||||
padding: 0px !important;
|
||||
list-style-image: url("chrome://global/skin/tree/twisty-clsd.png");
|
||||
min-width: 0px !important;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
button[type="disclosure"][open="true"] {
|
||||
list-style-image: url("chrome://global/skin/tree/twisty-open.png");
|
||||
}
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue