fifth part of syncing LCARStrek with Firefox 29 windows theme changes
[themes.git] / LCARStrek / browser / preferences / preferences.css
1 /*
2 # -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
3 # This Source Code Form is subject to the terms of the Mozilla Public
4 # License, v. 2.0. If a copy of the MPL was not distributed with this
5 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
6 */
7
8 /* Global Styles */
9 #BrowserPreferences radio[pane] {
10   list-style-image: url("chrome://browser/skin/preferences/Options.png"); 
11   padding: 5px 3px 1px;
12 }
13
14 radio[pane=paneMain] {
15   -moz-image-region: rect(0, 32px,  32px, 0);
16 }
17
18 radio[pane=paneMain]:not([selected="true"]):hover {
19   -moz-image-region: rect(32px, 32px,  64px, 0);
20 }
21
22 radio[pane=paneTabs] {
23   -moz-image-region: rect(0, 64px, 32px, 32px);
24 }
25
26 radio[pane=paneTabs]:not([selected="true"]):hover {
27   -moz-image-region: rect(32px, 64px, 64px, 32px);
28 }
29
30 radio[pane=paneContent] {
31   -moz-image-region: rect(0, 96px,  32px, 64px);
32 }
33
34 radio[pane=paneContent]:not([selected="true"]):hover {
35   -moz-image-region: rect(32px, 96px,  64px, 64px);
36 }
37
38 radio[pane=paneApplications] {
39   -moz-image-region: rect(0, 128px,  32px, 96px);
40 }
41
42 radio[pane=paneApplications]:not([selected="true"]):hover {
43   -moz-image-region: rect(32px, 128px,  64px, 96px);
44 }
45
46 radio[pane=panePrivacy] {
47   -moz-image-region: rect(0, 160px,  32px, 128px);
48 }
49
50 radio[pane=panePrivacy]:not([selected="true"]):hover {
51   -moz-image-region: rect(32px, 160px,  64px, 128px);
52 }
53
54 radio[pane=paneSecurity] {
55   -moz-image-region: rect(0, 192px,  32px, 160px);
56 }
57
58 radio[pane=paneSecurity]:not([selected="true"]):hover {
59   -moz-image-region: rect(32px, 192px,  64px, 160px);
60 }
61
62 radio[pane=paneAdvanced] {
63   -moz-image-region: rect(0, 224px, 32px, 192px);
64 }
65
66 radio[pane=paneAdvanced]:not([selected="true"]):hover {
67   -moz-image-region: rect(32px, 224px, 64px, 192px);
68 }
69
70 radio[pane=paneSync] {
71   list-style-image: url("chrome://browser/skin/preferences/Options-sync.png") !important;
72 }
73
74 label.small {
75   font-size: smaller;
76 }
77
78 #tabPrefsBox {
79   margin: 6px;
80 }
81
82 /* Applications Pane */
83 #BrowserPreferences[animated="true"] #handlersView {
84   height: 25em;
85 }
86
87 #BrowserPreferences[animated="false"] #handlersView {
88   -moz-box-flex: 1;
89 }
90
91 /* Privacy Pane */
92
93 /* styles for the link elements copied from .text-link in global.css */
94 .inline-link {
95   color: #3333FF;
96   text-decoration: none;
97   cursor: pointer;
98 }
99
100 .inline-link:hover {
101   text-decoration: underline;
102 }
103
104 .inline-link:-moz-focusring {
105   /* Don't specify the outline-color, we should always use initial value. */
106   outline: 1px dotted;
107 }
108
109 /* Modeless Window Dialogs */
110 .windowDialog,
111 .windowDialog prefpane {
112   padding: 0;
113 }
114
115 .contentPane {
116   margin: 9px 8px 5px;
117 }
118
119 .actionButtons {
120   margin: 0 3px 6px !important;
121 }
122
123 /* Cookies Manager */
124 #cookiesChildren::-moz-tree-image(domainCol) {
125   width: 16px;
126   height: 16px;
127   margin: 0 2px;
128   list-style-image: url("chrome://mozapps/skin/places/defaultFavicon.png");
129 }
130
131 #cookiesChildren::-moz-tree-image(domainCol, container) {
132   list-style-image: url("chrome://global/skin/filepicker/dir-closed.gif");
133 }
134
135 #cookiesChildren::-moz-tree-image(domainCol, container, open) {
136   list-style-image: url("chrome://global/skin/filepicker/dir-open.gif");
137 }
138
139 #cookieInfoBox {
140   border: 1px solid #9C9CFF;
141   border-radius: 3px;
142 }
143
144 /* Advanced Pane */
145
146 /* Adding padding-bottom prevents the bottom of the tabpanel from being cutoff
147    when browser.preferences.animateFadeIn = true */
148 #advancedPrefs {
149   padding-bottom: 8px;
150 }
151
152 /* bottom-most box containing a groupbox in a prefpane. Prevents the bottom
153    of the groupbox from being cutoff */
154 .bottomBox {
155   padding-bottom: 4px;
156 }
157
158 /* Sync Pane */
159
160 #syncDesc {
161   padding: 0 8em;
162 }
163
164 .syncGroupBox {
165   padding: 10px;
166 }
167
168 #accountCaptionImage {
169   list-style-image: url("chrome://mozapps/skin/profile/profileicon.png");
170 }
171
172 #syncAddDeviceLabel {
173   margin-top: 1em;
174   margin-bottom: 1em;
175 }
176
177 #noFxaAccount {
178   margin: 6px;
179   line-height: 1.2em;
180 }
181
182 #noFxaAccount > label:first-child {
183   margin-bottom: 0.6em;
184 }