1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/browser/themes/windows/preferences/preferences.css Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,166 @@ 1.4 +/* 1.5 +# -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- 1.6 +# This Source Code Form is subject to the terms of the Mozilla Public 1.7 +# License, v. 2.0. If a copy of the MPL was not distributed with this 1.8 +# file, You can obtain one at http://mozilla.org/MPL/2.0/. 1.9 +*/ 1.10 + 1.11 +/* Global Styles */ 1.12 +#BrowserPreferences radio[pane] { 1.13 + list-style-image: url("chrome://browser/skin/preferences/Options.png"); 1.14 + padding: 5px 3px 1px; 1.15 +} 1.16 + 1.17 +radio[pane=paneMain] { 1.18 + -moz-image-region: rect(0, 32px, 32px, 0); 1.19 +} 1.20 + 1.21 +radio[pane=paneTabs] { 1.22 + -moz-image-region: rect(0, 64px, 32px, 32px); 1.23 +} 1.24 + 1.25 +radio[pane=paneContent] { 1.26 + -moz-image-region: rect(0, 96px, 32px, 64px); 1.27 +} 1.28 + 1.29 +radio[pane=paneApplications] { 1.30 + -moz-image-region: rect(0, 128px, 32px, 96px); 1.31 +} 1.32 + 1.33 +radio[pane=panePrivacy] { 1.34 + -moz-image-region: rect(0, 160px, 32px, 128px); 1.35 +} 1.36 + 1.37 +radio[pane=paneSecurity] { 1.38 + -moz-image-region: rect(0, 192px, 32px, 160px); 1.39 +} 1.40 + 1.41 +radio[pane=paneAdvanced] { 1.42 + -moz-image-region: rect(0, 224px, 32px, 192px); 1.43 +} 1.44 + 1.45 +%ifdef MOZ_SERVICES_SYNC 1.46 +radio[pane=paneSync] { 1.47 + list-style-image: url("chrome://browser/skin/preferences/Options-sync.png") !important; 1.48 +} 1.49 +%endif 1.50 + 1.51 +label.small { 1.52 + font-size: smaller; 1.53 +} 1.54 + 1.55 +#tabPrefsBox { 1.56 + margin: 6px; 1.57 +} 1.58 + 1.59 +/* Applications Pane */ 1.60 +#BrowserPreferences[animated="true"] #handlersView { 1.61 + height: 25em; 1.62 +} 1.63 + 1.64 +#BrowserPreferences[animated="false"] #handlersView { 1.65 + -moz-box-flex: 1; 1.66 +} 1.67 + 1.68 +/* Privacy Pane */ 1.69 + 1.70 +/* styles for the link elements copied from .text-link in global.css */ 1.71 +.inline-link { 1.72 + color: -moz-nativehyperlinktext; 1.73 + text-decoration: none; 1.74 +} 1.75 + 1.76 +.inline-link:hover { 1.77 + text-decoration: underline; 1.78 +} 1.79 + 1.80 +/* Modeless Window Dialogs */ 1.81 +.windowDialog, 1.82 +.windowDialog prefpane { 1.83 + padding: 0; 1.84 +} 1.85 + 1.86 +.contentPane { 1.87 + margin: 9px 8px 5px; 1.88 +} 1.89 + 1.90 +.actionButtons { 1.91 + margin: 0 3px 6px !important; 1.92 +} 1.93 + 1.94 +/* Cookies Manager */ 1.95 +#cookiesChildren::-moz-tree-image(domainCol) { 1.96 + width: 16px; 1.97 + height: 16px; 1.98 + margin: 0 2px; 1.99 + list-style-image: url("chrome://mozapps/skin/places/defaultFavicon.png") !important; 1.100 +} 1.101 + 1.102 +#cookiesChildren::-moz-tree-image(domainCol, container) { 1.103 + list-style-image: url("chrome://global/skin/icons/folder-item.png") !important; 1.104 + -moz-image-region: rect(0, 32px, 16px, 16px); 1.105 +} 1.106 + 1.107 +#cookiesChildren::-moz-tree-image(domainCol, container, open) { 1.108 + -moz-image-region: rect(16px, 32px, 32px, 16px); 1.109 +} 1.110 + 1.111 +#cookieInfoBox { 1.112 + border: 1px solid ThreeDShadow; 1.113 + border-radius: 0; 1.114 + margin: 4px; 1.115 + padding: 0; 1.116 +} 1.117 + 1.118 +/* Advanced Pane */ 1.119 + 1.120 +/* Adding padding-bottom prevents the bottom of the tabpanel from being cutoff 1.121 + when browser.preferences.animateFadeIn = true */ 1.122 +#advancedPrefs { 1.123 + padding-bottom: 8px; 1.124 +} 1.125 + 1.126 +/* bottom-most box containing a groupbox in a prefpane. Prevents the bottom 1.127 + of the groupbox from being cutoff */ 1.128 +.bottomBox { 1.129 + padding-bottom: 4px; 1.130 +} 1.131 + 1.132 +%ifdef MOZ_SERVICES_SYNC 1.133 +/* Sync Pane */ 1.134 + 1.135 +#syncDesc { 1.136 + padding: 0 8em; 1.137 +} 1.138 + 1.139 +.syncGroupBox { 1.140 + padding: 10px; 1.141 +} 1.142 + 1.143 +#accountCaptionImage { 1.144 + list-style-image: url("chrome://mozapps/skin/profile/profileicon.png"); 1.145 +} 1.146 + 1.147 +#syncAddDeviceLabel { 1.148 + margin-top: 1em; 1.149 + margin-bottom: 1em; 1.150 +} 1.151 + 1.152 +#noFxaAccount { 1.153 + margin: 6px; 1.154 + line-height: 1.2em; 1.155 +} 1.156 + 1.157 +#noFxaAccount > label:first-child { 1.158 + margin-bottom: 0.6em; 1.159 +} 1.160 + 1.161 +#fxa-pweng-help-link > label { 1.162 + margin: 0; 1.163 +} 1.164 + 1.165 +#fxa-pweng-help-link > image { 1.166 + list-style-image: url("chrome://global/skin/icons/question-16.png"); 1.167 +} 1.168 + 1.169 +%endif