1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/browser/themes/osx/preferences/aboutPermissions.css Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,132 @@ 1.4 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.5 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.6 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.7 + 1.8 +@import url("chrome://global/skin/inContentUI.css"); 1.9 + 1.10 + 1.11 +/* sites box */ 1.12 + 1.13 +#sites-box { 1.14 + padding: 10px; 1.15 + width: 25em; 1.16 +} 1.17 + 1.18 +#sites-filter { 1.19 + margin: 0; 1.20 +} 1.21 + 1.22 +#sites-list { 1.23 + -moz-appearance: none; 1.24 + border: 1px solid rgba(60,73,97,0.5); 1.25 + box-shadow: inset 0 1px 1px rgba(0,0,0,0.15), 0 1px rgba(255,255,255,0.25); 1.26 + background: linear-gradient(rgba(255,255,255,0.2), rgba(255,255,255,0.3)); 1.27 + margin: 5px 0 0 0; 1.28 +} 1.29 + 1.30 +.site { 1.31 + padding: 4px; 1.32 + border-bottom: 1px solid ThreeDLightShadow; 1.33 +} 1.34 + 1.35 +.site-favicon { 1.36 + height: 16px; 1.37 + width: 16px; 1.38 + -moz-margin-end: 4px; 1.39 + list-style-image: url("chrome://mozapps/skin/places/defaultFavicon.png"); 1.40 +} 1.41 + 1.42 +@media (min-resolution: 2dppx) { 1.43 + .site-favicon { 1.44 + list-style-image: url("chrome://mozapps/skin/places/defaultFavicon@2x.png"); 1.45 + } 1.46 +} 1.47 + 1.48 +#all-sites-item > .site-container > .site-favicon { 1.49 + list-style-image: none; 1.50 +} 1.51 + 1.52 +/* permissions box */ 1.53 + 1.54 +#permissions-box { 1.55 + padding: 10px; 1.56 + overflow-y: auto; 1.57 +} 1.58 + 1.59 +#site-description { 1.60 + font-size: 125%; 1.61 + -moz-margin-start: 6px; /* to match button margin */ 1.62 +} 1.63 + 1.64 +#site-label { 1.65 + font-weight: bold; 1.66 + margin-top: 0; 1.67 + margin-bottom: 0; 1.68 +} 1.69 + 1.70 +#defaults-description { 1.71 + font-size: 125%; 1.72 + font-weight: bold; 1.73 + -moz-margin-start: 6px; 1.74 +} 1.75 + 1.76 +.pref-item { 1.77 + margin-bottom: 10px; 1.78 +} 1.79 + 1.80 +.pref-icon { 1.81 + width: 36px; 1.82 + height: 36px; 1.83 + -moz-margin-end: 10px; 1.84 +} 1.85 + 1.86 +.pref-icon[type="password"] { 1.87 + list-style-image: url(chrome://mozapps/skin/passwordmgr/key-64.png); 1.88 +} 1.89 +.pref-icon[type="cookie"] { 1.90 + list-style-image: url(chrome://global/skin/icons/question-64.png); 1.91 +} 1.92 +.pref-icon[type="geo"] { 1.93 + list-style-image: url(chrome://browser/skin/Geolocation-64.png); 1.94 +} 1.95 +.pref-icon[type="indexedDB"] { 1.96 + list-style-image: url(chrome://global/skin/icons/question-64.png); 1.97 +} 1.98 +.pref-icon[type="install"] { 1.99 + list-style-image: url(chrome://mozapps/skin/extensions/extensionGeneric.png); 1.100 +} 1.101 +.pref-icon[type="popup"] { 1.102 + list-style-image: url(chrome://global/skin/icons/question-64.png); 1.103 +} 1.104 +.pref-icon[type="image"] { 1.105 + list-style-image: url(chrome://global/skin/icons/question-64.png); 1.106 +} 1.107 +.pref-icon[type="plugins"] { 1.108 + list-style-image: url(chrome://mozapps/skin/plugins/pluginGeneric.png); 1.109 +} 1.110 +.pref-icon[type="fullscreen"] { 1.111 + list-style-image: url(chrome://global/skin/icons/question-64.png); 1.112 +} 1.113 +.pref-icon[type="camera"] { 1.114 + list-style-image: url(chrome://global/skin/icons/question-64.png); 1.115 +} 1.116 +.pref-icon[type="microphone"] { 1.117 + list-style-image: url(chrome://global/skin/icons/question-64.png); 1.118 +} 1.119 + 1.120 +@media (min-resolution: 2dppx) { 1.121 + .pref-icon[type="geo"] { 1.122 + list-style-image: url(chrome://browser/skin/Geolocation-64@2x.png); 1.123 + } 1.124 +} 1.125 + 1.126 +.pref-title { 1.127 + font-size: 125%; 1.128 + margin-bottom: 0; 1.129 + font-weight: bold; 1.130 +} 1.131 + 1.132 +.pref-menulist { 1.133 + margin-left: 6px; 1.134 + margin-right: 6px; 1.135 +}