blob: 075437db89607be403dc7b232ad92c2f5fd6e1c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
/* 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/. */
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
/* ::::: colorpicker button ::::: */
colorpicker[type="button"] {
width: 38px;
height: 24px;
border: 1px solid #a7a7a7;
background-color: ThreeDFace;
padding: 3px;
-moz-appearance: button-bevel;
}
.colorpicker-button-colorbox {
border: 1px solid #000000;
}
/* ::::: colorpicker tiles ::::: */
.colorpickertile {
width : 20px;
height : 20px;
margin : 1px;
}
.colorpickertile[selected="true"] {
border : 1px outset #C0C0C0;
}
.colorpickertile[hover="true"] {
border : 1px dotted #A7A7A7;
}
.cp-light[hover="true"] {
border : 1px dotted #000000;
}
|