Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
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 @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
7 /* ::::: colorpicker button ::::: */
9 colorpicker[type="button"] {
10 width: 38px;
11 height: 24px;
12 border: 1px solid #a7a7a7;
13 background-color: ThreeDFace;
14 padding: 3px;
15 -moz-appearance: button-bevel;
16 }
18 .colorpicker-button-colorbox {
19 border: 1px solid #000000;
20 }
22 /* ::::: colorpicker tiles ::::: */
24 .colorpickertile {
25 width : 20px;
26 height : 20px;
27 margin : 1px;
28 }
30 .colorpickertile[selected="true"] {
31 border : 1px outset #C0C0C0;
33 }
35 .colorpickertile[hover="true"] {
36 border : 1px dotted #A7A7A7;
37 }
39 .cp-light[hover="true"] {
40 border : 1px dotted #000000;
41 }