blob: 5870ed5d1b532e9870e3f2d608b2a78670c315db (
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
42
43
44
45
46
47
|
/* 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/. */
/* ===== colorpicker.css ================================================
== Styles used by the XUL colorpicker element.
======================================================================= */
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
/* ::::: colorpicker button ::::: */
/* colorpicker button */
colorpicker[type="button"] {
-moz-appearance: button;
width: 38px;
height: 24px;
}
.colorpicker-button-colorbox {
border: 1px solid #000000;
}
/* ::::: colorpicker tiles ::::: */
.colorpickertile {
width: 20px;
height: 20px;
margin: 1px;
border-left: 1px solid ThreeDShadow;
border-top: 1px solid ThreeDShadow;
border-right: 1px solid ThreeDHighlight;
border-bottom: 1px solid ThreeDHighlight;
}
.colorpickertile[selected="true"] {
border: 2px outset #C0C0C0;
}
.colorpickertile[hover="true"] {
border: 2px dotted #FFFFFF;
}
.cp-light[hover="true"] {
border: 2px dotted #909090;
}
|