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