browser/themes/linux/places/organizer.css

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     1 /* This Source Code Form is subject to the terms of the Mozilla Public
     2  * License, v. 2.0. If a copy of the MPL was not distributed with this
     3  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
     6 /* Toolbar */
     7 #placesToolbar {
     8   border: none;
     9 }
    11 /* back button */
    13 #back-button {
    14   list-style-image: url("moz-icon://stock/gtk-go-back-ltr?size=toolbar");
    15 }
    16 #back-button[disabled="true"] {
    17   list-style-image: url("moz-icon://stock/gtk-go-back-ltr?size=toolbar&state=disabled");
    18 }
    20 #back-button:-moz-locale-dir(rtl) {
    21   list-style-image: url("moz-icon://stock/gtk-go-back-rtl?size=toolbar");
    22 }
    23 #back-button[disabled="true"]:-moz-locale-dir(rtl) {
    24   list-style-image: url("moz-icon://stock/gtk-go-back-rtl?size=toolbar&state=disabled");
    25 }
    27 /* forward button */
    29 #forward-button {
    30   list-style-image: url("moz-icon://stock/gtk-go-forward-ltr?size=toolbar");
    31 }
    32 #forward-button[disabled="true"] {
    33   list-style-image: url("moz-icon://stock/gtk-go-forward-ltr?size=toolbar&state=disabled");
    34 }
    36 #forward-button:-moz-locale-dir(rtl) {
    37   list-style-image: url("moz-icon://stock/gtk-go-forward-rtl?size=toolbar");
    38 }
    39 #forward-button[disabled="true"]:-moz-locale-dir(rtl) {
    40   list-style-image: url("moz-icon://stock/gtk-go-forward-rtl?size=toolbar&state=disabled");
    41 }
    43 /* Menu */
    44 #placesMenu {
    45   -moz-appearance: none;
    46   border: none;
    47 }
    49 #placesMenu > menu {
    50   -moz-padding-start: 4px;
    51   -moz-binding: url("chrome://browser/skin/places/organizer.xml#toolbarbutton-dropdown");
    52   -moz-appearance: toolbarbutton;
    53   color: -moz-DialogText;
    54 }
    56 #placesMenu > menu:hover:not(:active):not([open="true"]) {
    57   color: -moz-buttonhovertext;
    58 }
    60 #placesMenu > menu > .menubar-right {
    61   -moz-appearance: toolbarbutton-dropdown;
    62   width: 12px;
    63   height: 12px;
    64 }
    66 /* Root View */
    67 #placesView {
    68   background-color: Window;
    69 }
    71 /* Info box */
    72 #detailsDeck {
    73   padding: 5px;
    74 }
    76 #infoBoxExpanderLabel {
    77   -moz-padding-start: 2px;
    78 }
    80 /**** menuitem stock icons ****/
    81 #orgClose {
    82   list-style-image: url("moz-icon://stock/gtk-close?size=menu");
    83 }
    85 #fileImport {
    86   list-style-image: url("moz-icon://stock/gtk-revert-to-saved?size=menu");
    87 }
    89 #fileExport {
    90   list-style-image: url("moz-icon://stock/gtk-save-as?size=menu");
    91 }
    93 /**
    94  * Downloads pane
    95  */
    97 #clearDownloadsButton > .toolbarbutton-icon {
    98   display: none;
    99 }

mercurial