fifth part of syncing LCARStrek with Firefox 29 windows theme changes
[themes.git] / LCARStrek / browser / preferences / preferences.css
CommitLineData
50c0175b
RK
1/*
2# -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
9099c61d
RK
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/.
50c0175b
RK
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
46e71434
RK
74label.small {
75 font-size: smaller;
76}
77
78#tabPrefsBox {
79 margin: 6px;
80}
81
50c0175b
RK
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 {
dbd844cb 95 color: #3333FF;
56ab361a 96 text-decoration: none;
50c0175b
RK
97 cursor: pointer;
98}
99
56ab361a
RK
100.inline-link:hover {
101 text-decoration: underline;
102}
103
50c0175b
RK
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;
dce90fef 128 list-style-image: url("chrome://mozapps/skin/places/defaultFavicon.png");
50c0175b
RK
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 {
8ad8bf83 161 padding: 0 8em;
50c0175b
RK
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;
50c0175b 175}
46e71434
RK
176
177#noFxaAccount {
178 margin: 6px;
179 line-height: 1.2em;
180}
181
182#noFxaAccount > label:first-child {
183 margin-bottom: 0.6em;
184}