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