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