browser/themes/linux/browser-lightweightTheme.css

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     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/. */
     5 %include linuxShared.inc
     6 %filter substitution
     8 /*
     9  * LightweightThemeListener will append the current lightweight theme's header
    10  * image to the background-image for each of the following rulesets.
    11  */
    13 /* Lightweight theme on tabs */
    14 #tabbrowser-tabs:not([movingtab]) > .tabbrowser-tab > .tab-stack > .tab-background > .tab-background-start[selected=true]:-moz-lwtheme::before,
    15 #tabbrowser-tabs:not([movingtab]) > .tabbrowser-tab > .tab-stack > .tab-background > .tab-background-end[selected=true]:-moz-lwtheme::before {
    16   background-attachment: scroll, fixed;
    17   background-color: transparent;
    18   background-image: @fgTabTextureLWT@;/*, lwtHeader;*/
    19   background-position: 0 0, right top;
    20   background-repeat: repeat-x, no-repeat;
    21 }
    23 #tabbrowser-tabs:not([movingtab]) > .tabbrowser-tab > .tab-stack > .tab-background > .tab-background-middle[selected=true]:-moz-lwtheme {
    24   background-attachment: scroll, scroll, fixed;
    25   background-color: transparent;
    26   background-image: url(chrome://browser/skin/tabbrowser/tab-active-middle.png),
    27                     @fgTabTextureLWT@;/*,
    28                     lwtHeader;*/
    29   background-position: 0 0, 0 0, right top;
    30   background-repeat: repeat-x, repeat-x, no-repeat;
    31 }

mercurial