50 строки
1.2 KiB
CSS
50 строки
1.2 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/. */
|
|
|
|
spinbuttons {
|
|
height: 16px;
|
|
}
|
|
|
|
.spinbuttons-button {
|
|
border: 1px solid;
|
|
padding: 1px;
|
|
border-top-color: #5D616E;
|
|
border-right-color: #2D3B49;
|
|
border-bottom-color: #2D3B49;
|
|
border-left-color: #5D616E;
|
|
border-radius: 0;
|
|
background: #B1BBC5 50% 50% no-repeat;
|
|
width: 13px;
|
|
min-width: 13px;
|
|
margin: 0;
|
|
-moz-box-flex: 1;
|
|
}
|
|
|
|
.spinbuttons-button:hover:active {
|
|
border-color: #8290A5;
|
|
border-top-color: #8290A5;
|
|
border-right-color: #8290A5;
|
|
border-bottom-color: #8290A5;
|
|
border-left-color: #8290A5;
|
|
background-color: #90A1B3;
|
|
}
|
|
|
|
.spinbuttons-button[disabled="true"] {
|
|
background-color: #B7BFCB;
|
|
border: 1px solid !important;
|
|
padding: 1px !important;
|
|
border-top-color: #8290A5 !important;
|
|
border-right-color: #8290A5 !important;
|
|
border-bottom-color: #8290A5 !important;
|
|
border-left-color: #8290A5 !important;
|
|
}
|
|
|
|
.spinbuttons-up {
|
|
list-style-image: url("chrome://global/skin/scrollbar/mini-btn-up.gif");
|
|
}
|
|
|
|
.spinbuttons-down {
|
|
list-style-image: url("chrome://global/skin/scrollbar/mini-btn-dn.gif");
|
|
}
|