Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
michael@0 | 1 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 4 | |
michael@0 | 5 | @import url("chrome://global/skin/inContentUI.css"); |
michael@0 | 6 | |
michael@0 | 7 | |
michael@0 | 8 | /* sites box */ |
michael@0 | 9 | |
michael@0 | 10 | #sites-box { |
michael@0 | 11 | padding: 10px; |
michael@0 | 12 | width: 25em; |
michael@0 | 13 | } |
michael@0 | 14 | |
michael@0 | 15 | #sites-filter { |
michael@0 | 16 | margin: 0; |
michael@0 | 17 | } |
michael@0 | 18 | |
michael@0 | 19 | #sites-list { |
michael@0 | 20 | -moz-appearance: none; |
michael@0 | 21 | border: 1px solid rgba(60,73,97,0.5); |
michael@0 | 22 | box-shadow: inset 0 1px 1px rgba(0,0,0,0.15), 0 1px rgba(255,255,255,0.25); |
michael@0 | 23 | background: linear-gradient(rgba(255,255,255,0.2), rgba(255,255,255,0.3)); |
michael@0 | 24 | margin: 5px 0 0 0; |
michael@0 | 25 | } |
michael@0 | 26 | |
michael@0 | 27 | .site { |
michael@0 | 28 | padding: 4px; |
michael@0 | 29 | border-bottom: 1px solid ThreeDLightShadow; |
michael@0 | 30 | } |
michael@0 | 31 | |
michael@0 | 32 | .site-favicon { |
michael@0 | 33 | height: 16px; |
michael@0 | 34 | width: 16px; |
michael@0 | 35 | -moz-margin-end: 4px; |
michael@0 | 36 | list-style-image: url("chrome://mozapps/skin/places/defaultFavicon.png"); |
michael@0 | 37 | } |
michael@0 | 38 | |
michael@0 | 39 | @media (min-resolution: 2dppx) { |
michael@0 | 40 | .site-favicon { |
michael@0 | 41 | list-style-image: url("chrome://mozapps/skin/places/defaultFavicon@2x.png"); |
michael@0 | 42 | } |
michael@0 | 43 | } |
michael@0 | 44 | |
michael@0 | 45 | #all-sites-item > .site-container > .site-favicon { |
michael@0 | 46 | list-style-image: none; |
michael@0 | 47 | } |
michael@0 | 48 | |
michael@0 | 49 | /* permissions box */ |
michael@0 | 50 | |
michael@0 | 51 | #permissions-box { |
michael@0 | 52 | padding: 10px; |
michael@0 | 53 | overflow-y: auto; |
michael@0 | 54 | } |
michael@0 | 55 | |
michael@0 | 56 | #site-description { |
michael@0 | 57 | font-size: 125%; |
michael@0 | 58 | -moz-margin-start: 6px; /* to match button margin */ |
michael@0 | 59 | } |
michael@0 | 60 | |
michael@0 | 61 | #site-label { |
michael@0 | 62 | font-weight: bold; |
michael@0 | 63 | margin-top: 0; |
michael@0 | 64 | margin-bottom: 0; |
michael@0 | 65 | } |
michael@0 | 66 | |
michael@0 | 67 | #defaults-description { |
michael@0 | 68 | font-size: 125%; |
michael@0 | 69 | font-weight: bold; |
michael@0 | 70 | -moz-margin-start: 6px; |
michael@0 | 71 | } |
michael@0 | 72 | |
michael@0 | 73 | .pref-item { |
michael@0 | 74 | margin-bottom: 10px; |
michael@0 | 75 | } |
michael@0 | 76 | |
michael@0 | 77 | .pref-icon { |
michael@0 | 78 | width: 36px; |
michael@0 | 79 | height: 36px; |
michael@0 | 80 | -moz-margin-end: 10px; |
michael@0 | 81 | } |
michael@0 | 82 | |
michael@0 | 83 | .pref-icon[type="password"] { |
michael@0 | 84 | list-style-image: url(chrome://mozapps/skin/passwordmgr/key-64.png); |
michael@0 | 85 | } |
michael@0 | 86 | .pref-icon[type="cookie"] { |
michael@0 | 87 | list-style-image: url(chrome://global/skin/icons/question-64.png); |
michael@0 | 88 | } |
michael@0 | 89 | .pref-icon[type="geo"] { |
michael@0 | 90 | list-style-image: url(chrome://browser/skin/Geolocation-64.png); |
michael@0 | 91 | } |
michael@0 | 92 | .pref-icon[type="indexedDB"] { |
michael@0 | 93 | list-style-image: url(chrome://global/skin/icons/question-64.png); |
michael@0 | 94 | } |
michael@0 | 95 | .pref-icon[type="install"] { |
michael@0 | 96 | list-style-image: url(chrome://mozapps/skin/extensions/extensionGeneric.png); |
michael@0 | 97 | } |
michael@0 | 98 | .pref-icon[type="popup"] { |
michael@0 | 99 | list-style-image: url(chrome://global/skin/icons/question-64.png); |
michael@0 | 100 | } |
michael@0 | 101 | .pref-icon[type="image"] { |
michael@0 | 102 | list-style-image: url(chrome://global/skin/icons/question-64.png); |
michael@0 | 103 | } |
michael@0 | 104 | .pref-icon[type="plugins"] { |
michael@0 | 105 | list-style-image: url(chrome://mozapps/skin/plugins/pluginGeneric.png); |
michael@0 | 106 | } |
michael@0 | 107 | .pref-icon[type="fullscreen"] { |
michael@0 | 108 | list-style-image: url(chrome://global/skin/icons/question-64.png); |
michael@0 | 109 | } |
michael@0 | 110 | .pref-icon[type="camera"] { |
michael@0 | 111 | list-style-image: url(chrome://global/skin/icons/question-64.png); |
michael@0 | 112 | } |
michael@0 | 113 | .pref-icon[type="microphone"] { |
michael@0 | 114 | list-style-image: url(chrome://global/skin/icons/question-64.png); |
michael@0 | 115 | } |
michael@0 | 116 | |
michael@0 | 117 | @media (min-resolution: 2dppx) { |
michael@0 | 118 | .pref-icon[type="geo"] { |
michael@0 | 119 | list-style-image: url(chrome://browser/skin/Geolocation-64@2x.png); |
michael@0 | 120 | } |
michael@0 | 121 | } |
michael@0 | 122 | |
michael@0 | 123 | .pref-title { |
michael@0 | 124 | font-size: 125%; |
michael@0 | 125 | margin-bottom: 0; |
michael@0 | 126 | font-weight: bold; |
michael@0 | 127 | } |
michael@0 | 128 | |
michael@0 | 129 | .pref-menulist { |
michael@0 | 130 | margin-left: 6px; |
michael@0 | 131 | margin-right: 6px; |
michael@0 | 132 | } |