1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/toolkit/themes/windows/global/dropmarker.css Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,35 @@ 1.4 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.5 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.6 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.7 + 1.8 +dropmarker { 1.9 + -moz-appearance: menulist-button; 1.10 + width: 16px; 1.11 + height: 16px; 1.12 + -moz-box-align: center; 1.13 + -moz-box-pack: center; 1.14 + border: 2px solid; 1.15 + -moz-border-top-colors: ThreeDLightShadow ThreeDHighlight; 1.16 + -moz-border-right-colors: ThreeDDarkShadow ThreeDShadow; 1.17 + -moz-border-bottom-colors: ThreeDDarkShadow ThreeDShadow; 1.18 + -moz-border-left-colors: ThreeDLightShadow ThreeDHighlight; 1.19 + background-color: -moz-Dialog; 1.20 + padding: 1px; 1.21 + list-style-image: url("chrome://global/skin/arrow/arrow-dn.gif"); 1.22 + -moz-image-region: auto; 1.23 +} 1.24 + 1.25 +dropmarker:hover:active:not([disabled="true"]) { 1.26 + -moz-border-top-colors: ThreeDShadow ThreeDFace; 1.27 + -moz-border-right-colors: ThreeDShadow ThreeDFace; 1.28 + -moz-border-bottom-colors: ThreeDShadow ThreeDFace; 1.29 + -moz-border-left-colors: ThreeDShadow ThreeDFace; 1.30 + padding-top: 2px; 1.31 + padding-bottom: 0px; 1.32 + -moz-padding-start: 2px; 1.33 + -moz-padding-end: 0px; 1.34 +} 1.35 + 1.36 +dropmarker[disabled="true"] { 1.37 + list-style-image: url("chrome://global/skin/arrow/arrow-dn-dis.gif"); 1.38 +}