browser/themes/shared/devtools/eyedropper.css

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     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 }

mercurial