mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
28 lines
726 B
CSS
28 lines
726 B
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/. */
|
|
|
|
dropmarker {
|
|
width: 16px;
|
|
height: 16px;
|
|
-moz-box-align: center;
|
|
-moz-box-pack: center;
|
|
background-color: transparent;
|
|
padding: 1px;
|
|
list-style-image: url("chrome://global/skin/arrow/arrow-dn.gif");
|
|
-moz-image-region: auto;
|
|
}
|
|
|
|
dropmarker:hover:active {
|
|
background: #aaaaaa;
|
|
padding-top: 2px;
|
|
padding-bottom: 0px;
|
|
-moz-padding-start: 2px;
|
|
-moz-padding-end: 0px;
|
|
}
|
|
|
|
dropmarker[disabled="true"] {
|
|
list-style-image: url("chrome://global/skin/arrow/arrow-dn-dis.gif");
|
|
padding: 1px !important;
|
|
}
|