Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5 dropmarker {
6 -moz-appearance: menulist-button;
7 width: 16px;
8 height: 16px;
9 -moz-box-align: center;
10 -moz-box-pack: center;
11 border: 2px solid;
12 -moz-border-top-colors: ThreeDLightShadow ThreeDHighlight;
13 -moz-border-right-colors: ThreeDDarkShadow ThreeDShadow;
14 -moz-border-bottom-colors: ThreeDDarkShadow ThreeDShadow;
15 -moz-border-left-colors: ThreeDLightShadow ThreeDHighlight;
16 background-color: -moz-Dialog;
17 padding: 1px;
18 list-style-image: url("chrome://global/skin/arrow/arrow-dn.gif");
19 -moz-image-region: auto;
20 }
22 dropmarker:hover:active:not([disabled="true"]) {
23 -moz-border-top-colors: ThreeDShadow ThreeDFace;
24 -moz-border-right-colors: ThreeDShadow ThreeDFace;
25 -moz-border-bottom-colors: ThreeDShadow ThreeDFace;
26 -moz-border-left-colors: ThreeDShadow ThreeDFace;
27 padding-top: 2px;
28 padding-bottom: 0px;
29 -moz-padding-start: 2px;
30 -moz-padding-end: 0px;
31 }
33 dropmarker[disabled="true"] {
34 list-style-image: url("chrome://global/skin/arrow/arrow-dn-dis.gif");
35 }