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