1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/browser/themes/shared/devtools/eyedropper.css Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,45 @@ 1.4 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.5 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.6 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.7 + 1.8 +#canvas { 1.9 + image-rendering: -moz-crisp-edges; 1.10 + cursor: none; 1.11 + border: 3px solid #E0E0E0; 1.12 + border-radius: 50%; 1.13 +} 1.14 + 1.15 +#canvas-overflow { 1.16 + overflow: hidden; 1.17 + width: 96px; 1.18 + height: 96px; 1.19 +} 1.20 + 1.21 +#color-preview { 1.22 + width: 16px; 1.23 + height: 16px; 1.24 + box-shadow: 0px 0px 0px black; 1.25 + border: solid 1px #fff; 1.26 + margin: 3px; 1.27 +} 1.28 + 1.29 +#color-value-box { 1.30 + background-color: #E0E0E0; 1.31 + border-radius: 1px; 1.32 + width: 150px; 1.33 +} 1.34 + 1.35 +#color-value { 1.36 + padding: 0.3em; 1.37 + text-shadow: 1px 1px 1px #fff; 1.38 +} 1.39 + 1.40 +#color-value.highlight { 1.41 + font-family: inherit; 1.42 +} 1.43 + 1.44 +window { 1.45 + /* inexplicably, otherwise background shows up on Linux */ 1.46 + border: 1px solid transparent; 1.47 + background-color: transparent; 1.48 +}