2012-05-21 11:12:37 +00: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/. */
|
2010-03-24 15:31:09 +00:00
|
|
|
|
2013-11-06 06:10:30 +00:00
|
|
|
html,
|
|
|
|
body {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
background-color: #ced7de;
|
|
|
|
-moz-user-select: none;
|
|
|
|
font-family: "Open Sans", sans-serif;
|
|
|
|
-moz-text-size-adjust: none;
|
2010-04-13 03:34:54 +00:00
|
|
|
}
|
|
|
|
|
2013-11-06 06:10:30 +00:00
|
|
|
.toolbar {
|
|
|
|
width: 100%;
|
|
|
|
height: 3em;
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
z-index: 10;
|
|
|
|
box-shadow: 0 0 3px #444;
|
|
|
|
background-color: #ced7de;
|
|
|
|
color: #000000;
|
|
|
|
font-weight: bold;
|
|
|
|
border-bottom: 2px solid;
|
|
|
|
-moz-border-bottom-colors: #ff9100 #f27900;
|
|
|
|
}
|
|
|
|
|
|
|
|
.toolbar-container {
|
|
|
|
max-width: 40em;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
2010-03-24 15:31:09 +00:00
|
|
|
}
|
|
|
|
|
2011-11-30 18:34:18 +00:00
|
|
|
#filter-container {
|
2013-11-06 06:10:30 +00:00
|
|
|
margin-top: 0.5em;
|
|
|
|
margin-bottom: 0.5em;
|
|
|
|
margin-right: 0.5em;
|
|
|
|
height: 2em;
|
|
|
|
border: 1px solid transparent;
|
|
|
|
border-image-source: url("chrome://browser/skin/images/textfield.png");
|
|
|
|
border-image-slice: 1 1 3 1;
|
|
|
|
border-image-width: 1px 1px 3px 1px;
|
|
|
|
overflow: hidden;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
|
|
|
|
#filter-input {
|
|
|
|
-moz-appearance: none;
|
|
|
|
border: none;
|
|
|
|
background-image: none;
|
|
|
|
background-color: transparent;
|
|
|
|
display: inline-block;
|
|
|
|
width: 12em;
|
|
|
|
min-width: 0;
|
|
|
|
color: #000000;
|
|
|
|
opacity: 1;
|
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
#filter-input:-moz-placeholder {
|
|
|
|
color: rgba(255,255,255,0.5);
|
|
|
|
}
|
|
|
|
|
|
|
|
.toolbar input {
|
|
|
|
display: inline-block;
|
|
|
|
height: 100%;
|
|
|
|
min-width: 3em;
|
2014-02-05 04:36:53 +00:00
|
|
|
box-sizing: border-box;
|
2013-11-06 06:10:30 +00:00
|
|
|
opacity: 0.75;
|
|
|
|
}
|
|
|
|
|
|
|
|
#new-pref-toggle-button {
|
|
|
|
background-position: center center;
|
|
|
|
background-image: url("chrome://browser/skin/images/reader-plus-icon-xhdpi.png");
|
|
|
|
background-size: 48px 48px;
|
|
|
|
height: 48px;
|
|
|
|
width: 48px;
|
|
|
|
display: inline-block;
|
|
|
|
outline-style: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#filter-search-button {
|
|
|
|
background-image: url("chrome://browser/skin/images/search.png");
|
|
|
|
background-size: 32px 32px;
|
|
|
|
height: 32px;
|
|
|
|
width: 32px;
|
|
|
|
display: inline-block;
|
|
|
|
outline-style: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#filter-input-clear-button {
|
|
|
|
background-image: url("chrome://browser/skin/images/search-clear-30.png");
|
|
|
|
background-size: 32px 32px;
|
|
|
|
height: 32px;
|
|
|
|
width: 32px;
|
|
|
|
display: inline-block;
|
|
|
|
outline-style: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#filter-input[value=""] + #filter-input-clear-button {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.toolbar-item {
|
|
|
|
display: inline-block;
|
|
|
|
height: 3em;
|
|
|
|
min-width: 3em;
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
#content {
|
|
|
|
position: relative;
|
|
|
|
margin: 0;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
padding-top: 3em;
|
|
|
|
padding-left: 0;
|
|
|
|
padding-right: 0;
|
|
|
|
min-height: 100%;
|
|
|
|
max-width: 40em;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul {
|
|
|
|
list-style-position: inside;
|
|
|
|
border: 1px solid #808080;
|
|
|
|
background-color: #ffffff;
|
|
|
|
min-height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
padding-top: 0;
|
|
|
|
margin: 0;
|
|
|
|
padding-left: 0;
|
2014-02-05 04:36:53 +00:00
|
|
|
box-sizing: border-box;
|
2013-11-06 06:10:30 +00:00
|
|
|
box-shadow: 0 0 5px #000000;
|
|
|
|
overflow-x: hidden;
|
2011-11-30 18:34:18 +00:00
|
|
|
}
|
|
|
|
|
2011-11-18 23:41:42 +00:00
|
|
|
#new-pref-container {
|
2013-11-06 06:10:30 +00:00
|
|
|
width: 100%;
|
|
|
|
margin: 0;
|
|
|
|
background-color: #ffffff;
|
2014-02-05 04:36:53 +00:00
|
|
|
box-sizing: border-box;
|
2013-11-06 06:10:30 +00:00
|
|
|
box-shadow: 0 0 5px #000000;
|
|
|
|
overflow-x: hidden;
|
|
|
|
max-width: 40em;
|
|
|
|
max-height: 100%;
|
|
|
|
position: fixed;
|
|
|
|
top: 3em;
|
|
|
|
left: auto;
|
|
|
|
display: none;
|
|
|
|
z-index: 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
#new-pref-container input,
|
|
|
|
#new-pref-container select {
|
|
|
|
border: none;
|
|
|
|
background-image: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#new-pref-container.show {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
li {
|
|
|
|
list-style-type: none;
|
|
|
|
border-bottom: 1px solid #d3d3d3;
|
|
|
|
opacity: 1;
|
|
|
|
background-color: #ffffff;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
#new-pref-line-boolean,
|
|
|
|
#new-pref-value-string,
|
|
|
|
#new-pref-value-int {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
#new-pref-item[typestyle="boolean"] #new-pref-line-boolean,
|
|
|
|
#new-pref-item[typestyle="string"] #new-pref-value-string,
|
|
|
|
#new-pref-item[typestyle="int"] #new-pref-value-int {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pref-name,
|
|
|
|
.pref-value {
|
|
|
|
padding: 15px 10px;
|
|
|
|
text-align: left;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
background-image: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pref-value {
|
|
|
|
color: rgba(0,0,0,0.5);
|
|
|
|
flex: 1 1 auto;
|
|
|
|
border: none;
|
|
|
|
-moz-appearance: none;
|
|
|
|
background-image: none;
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pref-name[locked] {
|
|
|
|
padding-right: 20px;
|
|
|
|
background-image: url("chrome://browser/skin/images/lock.png");
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: right 50%;
|
|
|
|
background-size: auto 60%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#new-pref-name {
|
|
|
|
width: 30em;
|
|
|
|
}
|
|
|
|
|
|
|
|
#new-pref-type {
|
|
|
|
display: inline-block !important;
|
|
|
|
border-left: 1px solid #d3d3d3;
|
|
|
|
width: 10em;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pref-item-line {
|
|
|
|
border-top: 1px solid rgba(0,0,0,0.05);
|
|
|
|
color: rgba(0,0,0,0.5);
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
|
|
|
|
#new-pref-value-boolean {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
#new-pref-container .pref-button.toggle {
|
|
|
|
display: inline-block;
|
|
|
|
opacity: 1;
|
|
|
|
flex: 0 1 auto;
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
#new-pref-container .pref-button.cancel,
|
|
|
|
#new-pref-container .pref-button.create {
|
|
|
|
display: inline-block;
|
|
|
|
opacity: 1;
|
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pref-item-line {
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#new-pref-container .pref-item-line,
|
|
|
|
.pref-item.selected .pref-item-line,
|
|
|
|
.pref-item:not(.selected) .pref-button.reset {
|
|
|
|
pointer-events: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
#new-pref-container .pref-button.create[disabled] {
|
|
|
|
color: #d3d3d3;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pref-item.selected {
|
|
|
|
background-color: rgba(0,0,255,0.05);
|
|
|
|
}
|
|
|
|
|
|
|
|
.pref-button {
|
|
|
|
display: inline-block;
|
2014-02-05 04:36:53 +00:00
|
|
|
box-sizing: border-box;
|
2013-11-06 06:10:30 +00:00
|
|
|
text-align: center;
|
|
|
|
padding: 10px 1em;
|
|
|
|
border-left: 1px solid rgba(0,0,0,0.1);
|
|
|
|
opacity: 0;
|
|
|
|
transition-property: opacity;
|
|
|
|
transition-duration: 500ms;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pref-item.selected .pref-item-line .pref-button {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pref-item:not(.selected) .pref-item-line .pref-button:not(.reset) {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pref-item:not(.selected) .pref-button.reset {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pref-button:active {
|
|
|
|
background-color: rgba(0,0,255,0.2);
|
|
|
|
}
|
|
|
|
|
|
|
|
.pref-button[disabled] {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pref-button.up {
|
|
|
|
background-image: url("chrome://browser/skin/images/arrowup-16.png");
|
|
|
|
background-position: center center;
|
|
|
|
background-repeat: no-repeat;
|
2010-03-24 15:31:09 +00:00
|
|
|
}
|
|
|
|
|
2013-11-06 06:10:30 +00:00
|
|
|
.pref-button.down {
|
|
|
|
background-image: url("chrome://browser/skin/images/arrowdown-16.png");
|
|
|
|
background-position: center center;
|
|
|
|
background-repeat: no-repeat;
|
2010-05-03 17:49:28 +00:00
|
|
|
}
|
|
|
|
|
2013-11-06 06:10:30 +00:00
|
|
|
#prefs-shield {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background-color: rgba(0,0,0,0.5);
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
opacity: 0;
|
|
|
|
transition-property: opacity;
|
|
|
|
transition-duration: 500ms;
|
|
|
|
display: none;
|
2010-03-24 15:31:09 +00:00
|
|
|
}
|
|
|
|
|
2013-11-06 06:10:30 +00:00
|
|
|
#prefs-shield[shown] {
|
|
|
|
display: block;
|
|
|
|
opacity: 1;
|
2010-03-24 15:31:09 +00:00
|
|
|
}
|
|
|
|
|
2013-11-06 06:10:30 +00:00
|
|
|
#loading-container > li {
|
|
|
|
background-image: url(chrome://browser/skin/images/throbber.png);
|
|
|
|
background-position: center center;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
padding-left: 40px;
|
|
|
|
height: 3em;
|
|
|
|
width: 100%;
|
2011-04-15 10:47:51 +00:00
|
|
|
}
|