Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
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 #canvas {
6 image-rendering: -moz-crisp-edges;
7 cursor: none;
8 border: 3px solid #E0E0E0;
9 border-radius: 50%;
10 }
12 #canvas-overflow {
13 overflow: hidden;
14 width: 96px;
15 height: 96px;
16 }
18 #color-preview {
19 width: 16px;
20 height: 16px;
21 box-shadow: 0px 0px 0px black;
22 border: solid 1px #fff;
23 margin: 3px;
24 }
26 #color-value-box {
27 background-color: #E0E0E0;
28 border-radius: 1px;
29 width: 150px;
30 }
32 #color-value {
33 padding: 0.3em;
34 text-shadow: 1px 1px 1px #fff;
35 }
37 #color-value.highlight {
38 font-family: inherit;
39 }
41 window {
42 /* inexplicably, otherwise background shows up on Linux */
43 border: 1px solid transparent;
44 background-color: transparent;
45 }