first part of syncing LCARStrek with Firefox 49/50 devtools theme changes
[themes.git] / LCARStrek / devtools / eyedropper.css
CommitLineData
acc20e5d
RK
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/. */
4
5#canvas {
6 image-rendering: -moz-crisp-edges;
7 cursor: none;
8 border: 3px solid #A09090;
9 border-radius: 50%;
10}
11
12#canvas-overflow {
13 overflow: hidden;
14 width: 96px;
15 height: 96px;
16}
17
18#color-preview {
19 width: 16px;
20 height: 16px;
21 border: solid 1px #9C9CFF;
22 margin: 3px;
23}
24
25#color-value-box {
26 background-color: #000000;
27 border-radius: 1px;
28 width: 150px;
29}
30
31#color-value {
6f751fd1
RK
32 /* avoid the # appearing at the end for some colours in RTL locales */
33 direction: ltr;
acc20e5d
RK
34 padding: 0.3em;
35}
36
37#color-value.highlight {
38 font-family: inherit;
39}
40
41window {
42 /* inexplicably, otherwise background shows up on Linux */
43 border: 1px solid transparent;
44 background-color: transparent;
45}