2013-11-15 18:46:59 -08:00
|
|
|
/* 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/. */
|
|
|
|
|
2014-03-31 15:26:53 -07:00
|
|
|
#eyedropper-button {
|
2014-04-24 12:39:00 -07:00
|
|
|
background-image: url("chrome://browser/skin/devtools/command-eyedropper.png");
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
background-size: 64px 16px;
|
|
|
|
background-position: 0 center;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
-moz-margin-start: 5px;
|
2014-03-31 15:26:53 -07:00
|
|
|
border-radius: 2px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2014-04-24 12:39:00 -07:00
|
|
|
.theme-light #eyedropper-button {
|
|
|
|
filter: url(chrome://browser/skin/devtools/filters.svg#invert);
|
|
|
|
border: 1px solid #AAA;
|
|
|
|
}
|
|
|
|
|
2014-03-31 15:26:53 -07:00
|
|
|
.theme-dark #eyedropper-button {
|
2014-04-24 12:39:00 -07:00
|
|
|
border: 1px solid #444;
|
|
|
|
}
|
|
|
|
|
|
|
|
#eyedropper-button:hover {
|
|
|
|
background-position: -16px center;
|
|
|
|
}
|
|
|
|
#eyedropper-button:hover:active {
|
|
|
|
background-position: -32px center;
|
|
|
|
}
|
|
|
|
#eyedropper-button[checked=true] {
|
|
|
|
background-position: -48px center;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-resolution: 2dppx) {
|
|
|
|
#eyedropper-button {
|
|
|
|
background-image: url("chrome://browser/skin/devtools/command-eyedropper@2x.png");
|
|
|
|
}
|
2014-03-31 15:26:53 -07:00
|
|
|
}
|
|
|
|
|
2013-11-15 18:46:59 -08:00
|
|
|
/* Mix-in classes */
|
|
|
|
|
|
|
|
.spectrum-checker {
|
|
|
|
background-color: #eee;
|
|
|
|
background-image: linear-gradient(45deg, #ccc 25%, transparent 25%, transparent 75%, #ccc 75%, #ccc),
|
|
|
|
linear-gradient(45deg, #ccc 25%, transparent 25%, transparent 75%, #ccc 75%, #ccc);
|
|
|
|
background-size: 12px 12px;
|
|
|
|
background-position: 0 0, 6px 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.spectrum-slider-control {
|
|
|
|
cursor: pointer;
|
|
|
|
border: 1px solid black;
|
|
|
|
background: white;
|
|
|
|
opacity: .7;
|
|
|
|
}
|
|
|
|
|
|
|
|
.spectrum-box {
|
|
|
|
border: solid 1px #333;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Elements */
|
|
|
|
|
|
|
|
.spectrum-container {
|
|
|
|
position: relative;
|
|
|
|
display: none;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
border-radius: 0;
|
|
|
|
width: 200px;
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.spectrum-show {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Keep aspect ratio:
|
|
|
|
http://www.briangrinstead.com/blog/keep-aspect-ratio-with-html-and-css */
|
|
|
|
.spectrum-top {
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.spectrum-top-inner {
|
|
|
|
position: absolute;
|
|
|
|
top:0;
|
|
|
|
left:0;
|
|
|
|
bottom:0;
|
|
|
|
right:0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.spectrum-color {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
|
|
|
right: 20%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.spectrum-hue {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 83%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.spectrum-fill {
|
|
|
|
/* Same as spectrum-color width */
|
|
|
|
margin-top: 85%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.spectrum-sat, .spectrum-val {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.spectrum-dragger, .spectrum-slider {
|
2014-03-18 09:18:02 -07:00
|
|
|
-moz-user-select: none;
|
2013-11-15 18:46:59 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
.spectrum-alpha {
|
|
|
|
position: relative;
|
|
|
|
height: 8px;
|
|
|
|
margin-top: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.spectrum-alpha-inner {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.spectrum-alpha-handle {
|
|
|
|
position: absolute;
|
|
|
|
top: -3px;
|
|
|
|
bottom: -3px;
|
|
|
|
width: 5px;
|
|
|
|
left: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.spectrum-sat {
|
2014-04-30 08:08:00 -07:00
|
|
|
background-image: linear-gradient(to right, #FFF, rgba(204, 154, 129, 0));
|
2013-11-15 18:46:59 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
.spectrum-val {
|
2014-04-30 08:08:00 -07:00
|
|
|
background-image: linear-gradient(to top, #000000, rgba(204, 154, 129, 0));
|
2013-11-15 18:46:59 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
.spectrum-hue {
|
2014-04-30 08:08:00 -07:00
|
|
|
background: linear-gradient(to bottom, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
|
2013-11-15 18:46:59 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
.spectrum-dragger {
|
|
|
|
position: absolute;
|
|
|
|
top: 0px;
|
|
|
|
left: 0px;
|
|
|
|
cursor: pointer;
|
|
|
|
border-radius: 50%;
|
|
|
|
height: 8px;
|
|
|
|
width: 8px;
|
|
|
|
border: 1px solid white;
|
|
|
|
background: black;
|
|
|
|
}
|
|
|
|
|
|
|
|
.spectrum-slider {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
height: 5px;
|
|
|
|
left: -3px;
|
|
|
|
right: -3px;
|
|
|
|
}
|