mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
117 lines
2.4 KiB
CSS
117 lines
2.4 KiB
CSS
/* 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/. */
|
|
|
|
@import url("chrome://global/skin/inContentUI.css");
|
|
|
|
|
|
/* sites box */
|
|
|
|
#sites-box {
|
|
padding: 10px;
|
|
width: 25em;
|
|
}
|
|
|
|
#sites-filter {
|
|
margin: 0;
|
|
}
|
|
|
|
#sites-list {
|
|
margin: 5px 0 0 0;
|
|
}
|
|
|
|
.site {
|
|
padding: 4px;
|
|
border-bottom: 1px solid ThreeDLightShadow;
|
|
}
|
|
|
|
.site-favicon {
|
|
height: 16px;
|
|
width: 16px;
|
|
-moz-margin-end: 4px;
|
|
list-style-image: url("chrome://mozapps/skin/places/defaultFavicon.png");
|
|
}
|
|
|
|
#all-sites-item > .site-container > .site-favicon {
|
|
list-style-image: none;
|
|
}
|
|
|
|
/* permissions box */
|
|
|
|
#permissions-box {
|
|
padding-top: 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);
|
|
}
|
|
.pref-icon[type="plugins"] {
|
|
list-style-image: url(chrome://mozapps/skin/plugins/pluginGeneric.png);
|
|
}
|
|
.pref-icon[type="fullscreen"] {
|
|
list-style-image: url(chrome://global/skin/icons/question-64.png);
|
|
}
|
|
.pref-icon[type="camera"] {
|
|
list-style-image: url(chrome://global/skin/icons/question-64.png);
|
|
}
|
|
.pref-icon[type="microphone"] {
|
|
list-style-image: url(chrome://global/skin/icons/question-64.png);
|
|
}
|
|
|
|
.pref-title {
|
|
font-size: 125%;
|
|
margin-bottom: 0;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.pref-menulist {
|
|
margin-left: 6px;
|
|
margin-right: 6px;
|
|
}
|