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/. */
|
|
|
|
|
2011-08-11 00:42:38 +00:00
|
|
|
@import url("chrome://global/skin/inContentUI.css");
|
2011-05-10 22:57:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* sites box */
|
|
|
|
|
|
|
|
#sites-box {
|
|
|
|
padding: 10px;
|
2011-05-31 21:14:08 +00:00
|
|
|
width: 25em;
|
2011-05-10 22:57:05 +00:00
|
|
|
}
|
|
|
|
|
2011-08-11 00:42:38 +00:00
|
|
|
#sites-filter {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#sites-list {
|
|
|
|
-moz-appearance: none;
|
|
|
|
border: 1px solid rgba(60,73,97,0.5);
|
|
|
|
box-shadow: inset 0 1px 1px rgba(0,0,0,0.15), 0 1px rgba(255,255,255,0.25);
|
2013-01-23 23:08:16 +00:00
|
|
|
background: linear-gradient(rgba(255,255,255,0.2), rgba(255,255,255,0.3));
|
2011-08-11 00:42:38 +00:00
|
|
|
margin: 5px 0 0 0;
|
|
|
|
}
|
|
|
|
|
2011-05-10 22:57:05 +00:00
|
|
|
.site {
|
|
|
|
padding: 4px;
|
|
|
|
border-bottom: 1px solid ThreeDLightShadow;
|
|
|
|
}
|
|
|
|
|
|
|
|
.site-favicon {
|
|
|
|
height: 16px;
|
|
|
|
width: 16px;
|
|
|
|
-moz-margin-end: 4px;
|
2011-05-24 14:34:30 +00:00
|
|
|
list-style-image: url("chrome://mozapps/skin/places/defaultFavicon.png");
|
|
|
|
}
|
|
|
|
|
2012-09-30 04:56:40 +00:00
|
|
|
@media (min-resolution: 2dppx) {
|
|
|
|
.site-favicon {
|
|
|
|
list-style-image: url("chrome://mozapps/skin/places/defaultFavicon@2x.png");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-05-24 14:34:30 +00:00
|
|
|
#all-sites-item > .site-container > .site-favicon {
|
|
|
|
list-style-image: none;
|
2011-05-10 22:57:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* permissions box */
|
|
|
|
|
|
|
|
#permissions-box {
|
|
|
|
padding: 10px;
|
|
|
|
overflow-y: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
#site-description {
|
|
|
|
font-size: 125%;
|
|
|
|
-moz-margin-start: 6px; /* to match button margin */
|
|
|
|
}
|
|
|
|
|
|
|
|
#site-label {
|
|
|
|
font-weight: bold;
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#defaults-description {
|
|
|
|
font-size: 125%;
|
|
|
|
font-weight: bold;
|
|
|
|
-moz-margin-start: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pref-item {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pref-icon {
|
|
|
|
width: 36px;
|
|
|
|
height: 36px;
|
|
|
|
-moz-margin-end: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pref-icon[type="password"] {
|
|
|
|
list-style-image: url(chrome://mozapps/skin/passwordmgr/key-64.png);
|
|
|
|
}
|
|
|
|
.pref-icon[type="cookie"] {
|
|
|
|
list-style-image: url(chrome://global/skin/icons/question-64.png);
|
|
|
|
}
|
|
|
|
.pref-icon[type="geo"] {
|
|
|
|
list-style-image: url(chrome://browser/skin/Geolocation-64.png);
|
|
|
|
}
|
|
|
|
.pref-icon[type="indexedDB"] {
|
|
|
|
list-style-image: url(chrome://global/skin/icons/question-64.png);
|
|
|
|
}
|
|
|
|
.pref-icon[type="install"] {
|
|
|
|
list-style-image: url(chrome://mozapps/skin/extensions/extensionGeneric.png);
|
|
|
|
}
|
|
|
|
.pref-icon[type="popup"] {
|
|
|
|
list-style-image: url(chrome://global/skin/icons/question-64.png);
|
|
|
|
}
|
|
|
|
.pref-icon[type="image"] {
|
|
|
|
list-style-image: url(chrome://global/skin/icons/question-64.png);
|
|
|
|
}
|
2012-04-18 18:40:30 +00:00
|
|
|
.pref-icon[type="plugins"] {
|
|
|
|
list-style-image: url(chrome://mozapps/skin/plugins/pluginGeneric.png);
|
|
|
|
}
|
2012-05-08 21:47:19 +00:00
|
|
|
.pref-icon[type="fullscreen"] {
|
|
|
|
list-style-image: url(chrome://global/skin/icons/question-64.png);
|
|
|
|
}
|
2011-05-10 22:57:05 +00:00
|
|
|
|
2012-09-30 04:56:40 +00:00
|
|
|
@media (min-resolution: 2dppx) {
|
|
|
|
.pref-icon[type="geo"] {
|
|
|
|
list-style-image: url(chrome://browser/skin/Geolocation-64@2x.png);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-05-10 22:57:05 +00:00
|
|
|
.pref-title {
|
|
|
|
font-size: 125%;
|
|
|
|
margin-bottom: 0;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pref-menulist {
|
|
|
|
margin-left: 6px;
|
|
|
|
margin-right: 6px;
|
|
|
|
}
|