18a3bf7f477d60692ae98fe3cfe3105a0e8362aa
[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 /* Applications Pane */
75 #BrowserPreferences[animated="true"] #handlersView {
76   height: 25em;
77 }
78
79 #BrowserPreferences[animated="false"] #handlersView {
80   -moz-box-flex: 1;
81 }
82
83 /* Privacy Pane */
84
85 /* styles for the link elements copied from .text-link in global.css */
86 .inline-link {
87   color: blue;
88   text-decoration: underline;
89   cursor: pointer;
90 }
91
92 .inline-link:-moz-focusring {
93   /* Don't specify the outline-color, we should always use initial value. */
94   outline: 1px dotted;
95 }
96
97 /* Modeless Window Dialogs */
98 .windowDialog,
99 .windowDialog prefpane {
100   padding: 0;
101 }
102
103 .contentPane {
104   margin: 9px 8px 5px;
105 }
106
107 .actionButtons {
108   margin: 0 3px 6px !important;
109 }
110
111 /* Cookies Manager */
112 #cookiesChildren::-moz-tree-image(domainCol) {
113   width: 16px;
114   height: 16px;
115   margin: 0 2px;
116   list-style-image: url("chrome://mozapps/skin/places/defaultFavicon.png");
117 }
118
119 #cookiesChildren::-moz-tree-image(domainCol, container) {
120   list-style-image: url("chrome://global/skin/filepicker/dir-closed.gif");
121 }
122
123 #cookiesChildren::-moz-tree-image(domainCol, container, open) {
124   list-style-image: url("chrome://global/skin/filepicker/dir-open.gif");
125 }
126
127 #cookieInfoBox {
128   border: 1px solid #9C9CFF;
129   border-radius: 3px;
130 }
131
132 /* Advanced Pane */
133
134 /* Adding padding-bottom prevents the bottom of the tabpanel from being cutoff
135    when browser.preferences.animateFadeIn = true */
136 #advancedPrefs {
137   padding-bottom: 8px;
138 }
139
140 /* bottom-most box containing a groupbox in a prefpane. Prevents the bottom
141    of the groupbox from being cutoff */
142 .bottomBox {
143   padding-bottom: 4px;
144 }
145
146 /* Sync Pane */
147
148 #syncDesc {
149   padding: 0 8em;
150 }
151
152 .syncGroupBox {
153   padding: 10px;
154 }
155
156 #accountCaptionImage {
157   list-style-image: url("chrome://mozapps/skin/profile/profileicon.png");
158 }
159
160 #syncAddDeviceLabel {
161   margin-top: 1em;
162   margin-bottom: 1em;
163 }