browser/themes/linux/preferences/preferences.css

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

mercurial