2007-03-22 10:30:00 -07:00
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998-1999
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Joe Hewitt (hewitt@netscape.com)
|
|
|
|
* Jason Kersey (kerz@netscape.com)
|
|
|
|
* Pierre Chanial (chanial@noos.fr)
|
|
|
|
* Dean Tessman (dean_tessman@hotmail.com)
|
|
|
|
* Blake Ross (blake@cs.stanford.edu)
|
|
|
|
* Pamela Greene (pamg.bugs@gmail.com)
|
2008-07-15 09:11:00 -07:00
|
|
|
* Dão Gottwald (dao@mozilla.com)
|
2010-08-24 20:03:37 -07:00
|
|
|
* Jim Mathies (jmathies@mozilla.com)
|
2007-03-22 10:30:00 -07:00
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
@import url("chrome://global/skin/");
|
|
|
|
|
|
|
|
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
|
|
|
|
@namespace html url("http://www.w3.org/1999/xhtml");
|
|
|
|
|
2010-08-23 14:35:34 -07:00
|
|
|
%include ../../browserShared.inc
|
2010-06-11 05:15:37 -07:00
|
|
|
%filter substitution
|
|
|
|
%define toolbarHighlight rgba(255,255,255,.5)
|
2010-06-12 00:00:09 -07:00
|
|
|
%define navbarTextboxCustomBorder border-color: rgba(0,0,0,.25) rgba(0,0,0,.32) rgba(0,0,0,.37);
|
2010-06-11 05:15:37 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
#menubar-items {
|
|
|
|
-moz-box-orient: vertical; /* for flex hack */
|
|
|
|
}
|
|
|
|
|
2009-10-23 08:28:14 -07:00
|
|
|
#main-menubar {
|
2007-03-22 10:30:00 -07:00
|
|
|
-moz-box-flex: 1; /* make menu items expand to fill toolbar height */
|
|
|
|
}
|
|
|
|
|
2010-06-11 05:15:37 -07:00
|
|
|
#navigator-toolbox {
|
|
|
|
-moz-appearance: none;
|
|
|
|
background-color: transparent;
|
2010-08-11 06:12:26 -07:00
|
|
|
border-top: none;
|
2010-06-11 05:15:37 -07:00
|
|
|
border-bottom: 1px solid ThreeDShadow;
|
|
|
|
}
|
|
|
|
|
|
|
|
#navigator-toolbox > toolbar:not(:-moz-lwtheme) {
|
2010-03-16 23:36:13 -07:00
|
|
|
-moz-appearance: none;
|
|
|
|
border-style: none;
|
2010-06-11 05:15:37 -07:00
|
|
|
background-color: -moz-Dialog;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-06-11 05:15:37 -07:00
|
|
|
#navigator-toolbox > toolbar:not(#toolbar-menubar):not(#TabsToolbar)[iconsize="small"],
|
|
|
|
#navigator-toolbox > toolbar:not(#toolbar-menubar):not(#TabsToolbar)[defaulticonsize="small"]:not([iconsize]) {
|
|
|
|
padding-top: 1px;
|
|
|
|
padding-bottom: 1px;
|
2008-04-28 02:59:30 -07:00
|
|
|
}
|
|
|
|
|
2010-07-20 10:37:10 -07:00
|
|
|
#nav-bar:not(:-moz-lwtheme),
|
2010-08-11 06:13:09 -07:00
|
|
|
#nav-bar[collapsed="true"] + toolbar:not(:-moz-lwtheme),
|
|
|
|
#nav-bar[collapsed="true"] + #customToolbars + #PersonalToolbar:not(:-moz-lwtheme),
|
|
|
|
#navigator-toolbox[tabsontop="true"] > #nav-bar,
|
|
|
|
#navigator-toolbox[tabsontop="true"]:not([customizing]) > #nav-bar[collapsed="true"] + toolbar,
|
|
|
|
#navigator-toolbox[tabsontop="true"]:not([customizing]) > #nav-bar[collapsed="true"] + #customToolbars + #PersonalToolbar {
|
2010-06-11 05:15:37 -07:00
|
|
|
background-image: -moz-linear-gradient(@toolbarHighlight@, rgba(255,255,255,0));
|
|
|
|
}
|
|
|
|
|
2010-07-20 10:36:48 -07:00
|
|
|
#navigator-toolbox[tabsontop="false"] > #toolbar-menubar:not(:-moz-lwtheme) {
|
2010-06-11 05:15:37 -07:00
|
|
|
background-image: -moz-linear-gradient(@toolbarHighlight@, @toolbarHighlight@);
|
|
|
|
}
|
|
|
|
|
|
|
|
#personal-bookmarks {
|
|
|
|
min-height: 24px;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-01-15 00:20:08 -08:00
|
|
|
#print-preview-toolbar:not(:-moz-lwtheme) {
|
2008-05-05 13:46:30 -07:00
|
|
|
-moz-appearance: toolbox;
|
|
|
|
}
|
|
|
|
|
2010-03-02 03:43:23 -08:00
|
|
|
statusbarpanel#statusbar-display {
|
|
|
|
-moz-padding-start: 0;
|
|
|
|
}
|
|
|
|
|
2010-08-24 20:03:37 -07:00
|
|
|
/* ::::: app menu button ::::: */
|
2010-06-24 10:13:59 -07:00
|
|
|
|
2010-06-13 01:20:58 -07:00
|
|
|
#appmenu-button {
|
|
|
|
-moz-appearance: none;
|
|
|
|
background-color: rgb(228,120,14);
|
|
|
|
background-image: -moz-linear-gradient(rgba(255,255,255,.7),
|
|
|
|
rgba(255,255,255,.4) 10%,
|
|
|
|
rgba(255,255,255,0) 50%);
|
|
|
|
background-clip: padding-box;
|
|
|
|
border: 1px solid rgba(0,0,0,.5);
|
2010-06-25 13:41:04 -07:00
|
|
|
border-top-style: none;
|
|
|
|
-moz-border-radius-bottomleft: 4px;
|
|
|
|
-moz-border-radius-bottomright: 4px;
|
2010-06-13 01:20:58 -07:00
|
|
|
-moz-box-shadow: 0 0 5px rgba(255,255,255,.5) inset;
|
|
|
|
color: white;
|
|
|
|
text-shadow: 0 0 2px #333;
|
|
|
|
font-weight: bold;
|
2010-06-25 13:41:04 -07:00
|
|
|
padding: .1em 1.5em;
|
|
|
|
margin: 0;
|
2010-06-13 01:20:58 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#appmenu-button:hover:not(:active):not([open]) {
|
|
|
|
background-color: rgb(248,140,34);
|
|
|
|
}
|
|
|
|
|
|
|
|
#appmenu-button:hover:active,
|
|
|
|
#appmenu-button[open] {
|
|
|
|
background-image: -moz-linear-gradient(rgba(0,0,0,.3), rgba(0,0,0,.2) 10%, transparent 60%);
|
|
|
|
-moz-box-shadow: 0 0 4px rgba(0,0,0,.3) inset;
|
|
|
|
}
|
|
|
|
|
|
|
|
#appmenu-button > .button-box {
|
|
|
|
border-style: none;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#appmenu-button > .button-box > .button-menu-dropmarker {
|
|
|
|
list-style-image: url(appmenu-dropmarker.png);
|
|
|
|
width: auto;
|
|
|
|
height: auto;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
-moz-margin-start: .5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
#appmenu-button > menupopup > menuitem {
|
|
|
|
-moz-padding-end: 16px;
|
|
|
|
}
|
|
|
|
|
2010-06-27 07:00:14 -07:00
|
|
|
.split-menuitem-item[_moz-menuactive="true"],
|
|
|
|
.split-menuitem-menu[_moz-menuactive="true"] {
|
|
|
|
background-color: -moz-menuhover;
|
|
|
|
color: -moz-menuhovertext;
|
|
|
|
}
|
|
|
|
|
2010-08-19 11:59:20 -07:00
|
|
|
/* Style Firefox App Menu popup */
|
|
|
|
|
|
|
|
.appmenu-edit-button {
|
|
|
|
-moz-appearance: none;
|
|
|
|
border: 1px solid transparent;
|
|
|
|
padding: 2px;
|
|
|
|
background: transparent;
|
|
|
|
-moz-border-radius: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.appmenu-edit-button[disabled="true"] {
|
|
|
|
opacity: .3;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media all and (-moz-windows-default-theme) {
|
|
|
|
#appmenu-popup {
|
|
|
|
-moz-appearance: none;
|
|
|
|
background: white;
|
|
|
|
border: 1px solid rgba(0,0,0,.5);
|
|
|
|
}
|
|
|
|
#appmenuPrimaryPane {
|
|
|
|
margin-right: -1px;
|
|
|
|
background-color: rgba(255,255,255,0.5);
|
|
|
|
border-right: 1px solid #c4c4c5;
|
|
|
|
padding-left: 2px;
|
|
|
|
}
|
|
|
|
#appmenuSecondaryPane {
|
|
|
|
-moz-appearance: none;
|
|
|
|
background-color: #f1f5fb;
|
|
|
|
-moz-box-shadow: 1px 0 3px rgb(204,214,234) inset;
|
|
|
|
border: 0;
|
|
|
|
padding-top: 5px;
|
|
|
|
font-family: "Segoe UI Semibold", "Segoe UI", sans-serif;
|
|
|
|
}
|
|
|
|
.appmenu-edit-button:not([disabled]):hover {
|
|
|
|
border: 1px solid #b8d6fb;
|
|
|
|
-moz-box-shadow: inset 0 0 1px white;
|
|
|
|
background: -moz-linear-gradient(#fafbfd, #ebf3fd);
|
|
|
|
-moz-transition: .2s ease-in;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#appmenuSecondaryPane-spacer {
|
|
|
|
min-height: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
#appmenu_print,
|
|
|
|
#appmenu_print_popup,
|
|
|
|
.appmenu-edit-button,
|
|
|
|
#appmenu-quit {
|
|
|
|
list-style-image: url("appmenu-icons.png");
|
|
|
|
}
|
|
|
|
|
|
|
|
#appmenu-cut {
|
|
|
|
-moz-image-region: rect(0 16px 16px 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
#appmenu-copy {
|
|
|
|
-moz-image-region: rect(0 32px 16px 16px);
|
|
|
|
}
|
|
|
|
|
|
|
|
#appmenu-paste {
|
|
|
|
-moz-image-region: rect(0 48px 16px 32px);
|
|
|
|
}
|
|
|
|
|
|
|
|
#appmenu_print,
|
|
|
|
#appmenu_print_popup {
|
|
|
|
-moz-image-region: rect(0 64px 16px 48px);
|
|
|
|
}
|
|
|
|
|
|
|
|
#appmenu-quit {
|
|
|
|
-moz-image-region: rect(0 80px 16px 64px);
|
|
|
|
}
|
|
|
|
|
|
|
|
#appmenu-edit-menuitem {
|
|
|
|
-moz-appearance: none;
|
|
|
|
background: transparent;
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
2010-08-20 22:14:45 -07:00
|
|
|
#appmenu_bookmarks {
|
2010-08-19 11:59:20 -07:00
|
|
|
list-style-image: url("chrome://browser/skin/places/bookmark.png");
|
|
|
|
-moz-image-region: rect(0px 48px 16px 32px);
|
|
|
|
}
|
|
|
|
|
|
|
|
#appmenu_privateBrowsing {
|
|
|
|
list-style-image: url("chrome://browser/skin/Privacy-16.png");
|
|
|
|
}
|
|
|
|
|
2010-08-20 22:14:45 -07:00
|
|
|
#appmenu_unsortedBookmarks {
|
2010-08-19 11:59:20 -07:00
|
|
|
list-style-image: url("chrome://browser/skin/places/unsortedBookmarks.png");
|
|
|
|
}
|
|
|
|
|
|
|
|
#appmenu_addons {
|
|
|
|
list-style-image: url("chrome://mozapps/skin/extensions/extensionGeneric-16.png");
|
|
|
|
}
|
|
|
|
|
2010-08-20 22:14:45 -07:00
|
|
|
#appmenu_subscribeToPage:not([disabled]),
|
|
|
|
#appmenu_subscribeToPageMenu {
|
2010-08-19 11:59:20 -07:00
|
|
|
list-style-image: url("chrome://browser/skin/feeds/feed-icons-16.png");
|
|
|
|
-moz-image-region: rect(0px 16px 16px 0px);
|
|
|
|
}
|
|
|
|
|
2010-08-20 22:14:45 -07:00
|
|
|
#appmenu_bookmarkThisPage {
|
2010-08-19 11:59:20 -07:00
|
|
|
list-style-image: url("chrome://browser/skin/places/bookmark.png");
|
|
|
|
-moz-image-region: rect(0 16px 16px 0);
|
|
|
|
}
|
|
|
|
|
2010-08-24 20:03:37 -07:00
|
|
|
/* ::::: titlebar ::::: */
|
|
|
|
|
|
|
|
#titlebar {
|
|
|
|
-moz-appearance: -moz-window-titlebar;
|
|
|
|
/* we only need to the middle section, hide the edges of the
|
|
|
|
theme background beyond the window frame. */
|
|
|
|
margin-left: -15px;
|
|
|
|
margin-right: -15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#main-window[sizemode="maximized"] > #titlebar {
|
|
|
|
-moz-appearance: -moz-window-titlebar-maximized;
|
|
|
|
}
|
|
|
|
|
|
|
|
#titlebar-content {
|
|
|
|
margin-left: 15px;
|
|
|
|
margin-right: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* aesthetic - push the fx button off the top window border */
|
|
|
|
@media not all and (-moz-windows-classic) {
|
|
|
|
#main-window[sizemode="normal"] > #titlebar > #titlebar-content > #appmenu-button-container {
|
|
|
|
%ifndef WINSTRIPE_AERO
|
|
|
|
margin-top: 1px;
|
|
|
|
%else
|
|
|
|
margin-top: 2px;
|
2010-06-25 13:41:04 -07:00
|
|
|
%endif
|
|
|
|
}
|
2010-08-24 20:03:37 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#titlebar-buttonbox {
|
|
|
|
-moz-appearance: -moz-window-button-box;
|
|
|
|
-moz-box-align: start;
|
|
|
|
}
|
|
|
|
|
|
|
|
#main-window[sizemode="maximized"] > #titlebar > #titlebar-content > #titlebar-buttonbox {
|
|
|
|
-moz-appearance: -moz-window-button-box-maximized;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* titlebar command buttons */
|
|
|
|
|
|
|
|
#titlebar-min {
|
|
|
|
-moz-appearance: -moz-window-button-minimize;
|
|
|
|
}
|
|
|
|
|
|
|
|
#titlebar-max {
|
|
|
|
-moz-appearance: -moz-window-button-maximize;
|
|
|
|
}
|
|
|
|
|
|
|
|
#main-window[sizemode="maximized"] > #titlebar > #titlebar-content > #titlebar-buttonbox > #titlebar-max {
|
|
|
|
-moz-appearance: -moz-window-button-restore;
|
|
|
|
}
|
|
|
|
|
|
|
|
#titlebar-close {
|
|
|
|
-moz-appearance: -moz-window-button-close;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media not all and (-moz-windows-classic) {
|
|
|
|
#titlebar-min,
|
|
|
|
#titlebar-max {
|
|
|
|
-moz-margin-end: 2px;
|
2010-06-25 13:41:04 -07:00
|
|
|
}
|
2010-08-24 20:03:37 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
@media all and (-moz-windows-classic) {
|
|
|
|
#titlebar-close {
|
2010-08-25 11:12:03 -07:00
|
|
|
-moz-margin-start: 2px;
|
2010-06-25 13:41:04 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/* ::::: bookmark buttons ::::: */
|
|
|
|
|
|
|
|
toolbarbutton.bookmark-item {
|
|
|
|
margin: 0;
|
|
|
|
padding: 2px 3px;
|
|
|
|
}
|
|
|
|
|
2009-11-06 13:57:12 -08:00
|
|
|
toolbarbutton.bookmark-item:hover:active:not([disabled="true"]),
|
2007-03-22 10:30:00 -07:00
|
|
|
toolbarbutton.bookmark-item[open="true"] {
|
|
|
|
padding-top: 3px;
|
|
|
|
padding-bottom: 1px;
|
|
|
|
-moz-padding-start: 4px;
|
|
|
|
-moz-padding-end: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bookmark-item > .toolbarbutton-icon {
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Prevent [mode="icons"] from hiding the label */
|
|
|
|
.bookmark-item > .toolbarbutton-text {
|
|
|
|
display: -moz-box !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bookmark-item > .toolbarbutton-menu-dropmarker {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2009-05-05 01:14:37 -07:00
|
|
|
#wrapper-personal-bookmarks[place="palette"] > .toolbarpaletteitem-box {
|
2007-03-22 10:30:00 -07:00
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
2009-10-14 04:56:59 -07:00
|
|
|
background: url("chrome://browser/skin/places/bookmarksToolbar.png") no-repeat;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.bookmarks-toolbar-customize {
|
|
|
|
max-width: 15em !important;
|
2009-10-14 04:56:59 -07:00
|
|
|
list-style-image: url("chrome://browser/skin/places/bookmarksToolbar.png") !important;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ::::: bookmark menus ::::: */
|
|
|
|
|
|
|
|
menu.bookmark-item,
|
|
|
|
menuitem.bookmark-item {
|
|
|
|
min-width: 0;
|
|
|
|
max-width: 26em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bookmark-item > .menu-iconic-left {
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bookmark-item > .menu-iconic-left > .menu-iconic-icon {
|
|
|
|
-moz-padding-start: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ::::: bookmark items ::::: */
|
|
|
|
|
|
|
|
.bookmark-item {
|
2007-11-19 18:01:53 -08:00
|
|
|
list-style-image: url("chrome://global/skin/icons/folder-item.png");
|
2008-04-11 08:53:58 -07:00
|
|
|
-moz-image-region: rect(0px, 16px, 16px, 0px);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2007-11-19 18:01:53 -08:00
|
|
|
.bookmark-item[container] {
|
|
|
|
-moz-image-region: rect(0px, 32px, 16px, 16px);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2007-11-19 18:01:53 -08:00
|
|
|
.bookmark-item[container][open] {
|
|
|
|
-moz-image-region: rect(16px, 32px, 32px, 16px);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2007-11-19 18:01:53 -08:00
|
|
|
.bookmark-item[container][livemark] {
|
|
|
|
list-style-image: url("chrome://browser/skin/livemark-folder.png");
|
2008-02-29 19:53:59 -08:00
|
|
|
-moz-image-region: auto;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2008-03-01 20:37:58 -08:00
|
|
|
.bookmark-item[container][livemark] .bookmark-item {
|
|
|
|
list-style-image: url("chrome://browser/skin/livemark-item.png");
|
|
|
|
-moz-image-region: auto;
|
|
|
|
}
|
|
|
|
|
2008-04-15 10:09:00 -07:00
|
|
|
.bookmark-item[container][query] {
|
|
|
|
list-style-image: url("chrome://browser/skin/places/query.png");
|
2007-11-19 18:01:53 -08:00
|
|
|
-moz-image-region: auto;
|
|
|
|
}
|
2007-10-10 23:42:38 -07:00
|
|
|
|
2008-04-15 10:09:00 -07:00
|
|
|
.bookmark-item[query][tagContainer] {
|
|
|
|
list-style-image: url("chrome://mozapps/skin/places/tagContainerIcon.png");
|
2007-11-19 18:01:53 -08:00
|
|
|
-moz-image-region: auto;
|
2007-10-10 23:42:38 -07:00
|
|
|
}
|
|
|
|
|
2008-04-15 10:09:00 -07:00
|
|
|
.bookmark-item[query][dayContainer] {
|
2008-05-01 14:50:03 -07:00
|
|
|
list-style-image: url("chrome://browser/skin/places/calendar.png");
|
|
|
|
-moz-image-region: auto;
|
2008-04-15 10:09:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.bookmark-item[query][hostContainer] {
|
|
|
|
list-style-image: url("chrome://global/skin/icons/folder-item.png");
|
|
|
|
-moz-image-region: rect(0px, 32px, 16px, 16px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.bookmark-item[query][hostContainer][open] {
|
|
|
|
list-style-image: url("chrome://global/skin/icons/folder-item.png");
|
|
|
|
-moz-image-region: rect(16px, 32px, 32px, 16px);
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/* ::::: primary toolbar buttons ::::: */
|
|
|
|
|
2010-08-23 14:03:42 -07:00
|
|
|
.toolbarbutton-1 > .toolbarbutton-menubutton-button,
|
|
|
|
.toolbarbutton-1 > .toolbarbutton-menubutton-dropmarker,
|
2007-03-22 10:30:00 -07:00
|
|
|
.toolbarbutton-1 {
|
2010-02-12 01:09:56 -08:00
|
|
|
-moz-appearance: none;
|
2010-03-01 13:30:08 -08:00
|
|
|
padding: 1px 5px;
|
2010-03-27 00:14:58 -07:00
|
|
|
background: rgba(151,152,153,.05)
|
|
|
|
-moz-linear-gradient(rgba(251,252,253,.95), rgba(246,247,248,.47) 49%,
|
|
|
|
rgba(231,232,233,.45) 51%, rgba(225,226,229,.3));
|
2010-06-08 18:44:33 -07:00
|
|
|
background-clip: padding-box;
|
2010-03-27 00:14:58 -07:00
|
|
|
-moz-border-radius: 4.5px;
|
2010-02-12 01:09:56 -08:00
|
|
|
border: 1px solid;
|
2010-03-01 13:30:08 -08:00
|
|
|
border-color: rgba(0,0,0,.12) rgba(0,0,0,.19) rgba(0,0,0,.38);
|
2010-02-12 01:09:56 -08:00
|
|
|
-moz-box-shadow: 0 0 0 1px rgba(255,255,255,.3) inset,
|
2010-03-01 13:30:08 -08:00
|
|
|
0 0 0 2px rgba(255,255,255,.1) inset,
|
2010-03-27 00:14:58 -07:00
|
|
|
0 1px 0 rgba(0,0,0,.15);
|
2010-02-12 01:09:56 -08:00
|
|
|
color: black;
|
|
|
|
text-shadow: 0 0 3px white;
|
|
|
|
}
|
|
|
|
|
2010-08-23 14:03:42 -07:00
|
|
|
.toolbarbutton-1 > .toolbarbutton-menubutton-dropmarker,
|
|
|
|
toolbar[iconsize="small"][mode="icons"] .toolbarbutton-1 > .toolbarbutton-menubutton-button,
|
2010-02-22 23:10:45 -08:00
|
|
|
toolbar[iconsize="small"][mode="icons"] .toolbarbutton-1 {
|
|
|
|
padding-left: 3px;
|
|
|
|
padding-right: 3px;
|
|
|
|
}
|
|
|
|
|
2010-08-23 14:03:42 -07:00
|
|
|
.toolbarbutton-1:not([type="menu-button"]) {
|
2010-02-16 12:41:58 -08:00
|
|
|
-moz-box-orient: vertical;
|
|
|
|
list-style-image: url("chrome://browser/skin/Toolbar.png");
|
|
|
|
}
|
|
|
|
|
2010-08-23 14:03:42 -07:00
|
|
|
.toolbarbutton-1[type="menu-button"] {
|
2010-02-16 12:41:58 -08:00
|
|
|
-moz-appearance: none;
|
|
|
|
padding: 0;
|
|
|
|
background: none !important;
|
|
|
|
border: none !important;
|
|
|
|
-moz-box-shadow: none !important;
|
|
|
|
}
|
|
|
|
|
2010-08-23 14:03:42 -07:00
|
|
|
.toolbarbutton-1 {
|
2010-02-16 12:41:58 -08:00
|
|
|
margin: 1px 3px;
|
|
|
|
}
|
|
|
|
|
2010-08-23 14:03:42 -07:00
|
|
|
toolbar[iconsize="small"][mode="icons"] .toolbarbutton-1 {
|
2010-02-22 23:10:45 -08:00
|
|
|
margin-left: 2px;
|
|
|
|
margin-right: 2px;
|
|
|
|
}
|
|
|
|
|
2010-08-23 14:03:42 -07:00
|
|
|
.toolbarbutton-1 > .toolbarbutton-menubutton-dropmarker {
|
2010-02-16 12:41:58 -08:00
|
|
|
-moz-border-start-style: none;
|
|
|
|
}
|
|
|
|
|
2010-08-23 14:03:42 -07:00
|
|
|
.toolbarbutton-1 > .toolbarbutton-menubutton-button:-moz-locale-dir(ltr),
|
|
|
|
.toolbarbutton-1 > .toolbarbutton-menubutton-dropmarker:-moz-locale-dir(rtl) {
|
2010-02-16 12:41:58 -08:00
|
|
|
-moz-border-radius-topright: 0;
|
|
|
|
-moz-border-radius-bottomright: 0;
|
|
|
|
}
|
|
|
|
|
2010-08-23 14:03:42 -07:00
|
|
|
.toolbarbutton-1 > .toolbarbutton-menubutton-button:-moz-locale-dir(rtl),
|
|
|
|
.toolbarbutton-1 > .toolbarbutton-menubutton-dropmarker:-moz-locale-dir(ltr) {
|
2010-02-16 12:41:58 -08:00
|
|
|
-moz-border-radius-topleft: 0;
|
|
|
|
-moz-border-radius-bottomleft: 0;
|
|
|
|
}
|
|
|
|
|
2010-02-12 01:09:56 -08:00
|
|
|
.toolbarbutton-1[disabled="true"] {
|
2010-03-01 13:30:08 -08:00
|
|
|
opacity: .8;
|
|
|
|
}
|
|
|
|
|
2010-08-23 14:03:42 -07:00
|
|
|
.toolbarbutton-1[disabled="true"] > .toolbarbutton-menubutton-button > .toolbarbutton-icon,
|
2010-03-01 13:30:08 -08:00
|
|
|
.toolbarbutton-1[disabled="true"] > .toolbarbutton-icon {
|
2010-03-31 04:05:50 -07:00
|
|
|
opacity: .5;
|
2010-02-12 01:09:56 -08:00
|
|
|
}
|
|
|
|
|
2010-08-23 14:03:42 -07:00
|
|
|
.toolbarbutton-1 > .toolbarbutton-menubutton-button:not([disabled="true"]):not(:active):hover,
|
|
|
|
.toolbarbutton-1:not([open="true"]):not(:active):hover > .toolbarbutton-menubutton-dropmarker:not([disabled="true"]),
|
|
|
|
.toolbarbutton-1:not([type="menu-button"]):not([disabled="true"]):not([checked="true"]):not([open="true"]):not(:active):hover {
|
2010-03-01 13:30:08 -08:00
|
|
|
background-color: hsla(190,60%,70%,.5);
|
|
|
|
border-color: hsla(190,50%,65%,.8) hsla(190,50%,50%,.8) hsla(190,50%,40%,.8);
|
|
|
|
-moz-box-shadow: 0 0 0 1px rgba(255,255,255,.3) inset,
|
|
|
|
0 0 0 2px rgba(255,255,255,.1) inset,
|
2010-03-24 23:44:29 -07:00
|
|
|
0 1px 0 rgba(0,0,0,.1),
|
|
|
|
0 0 5px hsl(190,90%,80%);
|
|
|
|
-moz-transition: background-color .4s ease-in,
|
|
|
|
border-color .3s ease-in,
|
|
|
|
-moz-box-shadow .3s ease-in;
|
2010-02-12 01:09:56 -08:00
|
|
|
}
|
|
|
|
|
2010-08-23 14:03:42 -07:00
|
|
|
.toolbarbutton-1 > .toolbarbutton-menubutton-button:not([disabled="true"]):hover:active,
|
|
|
|
.toolbarbutton-1:hover:active > .toolbarbutton-menubutton-dropmarker:not([disabled="true"]),
|
|
|
|
.toolbarbutton-1[open="true"] > .toolbarbutton-menubutton-dropmarker,
|
|
|
|
.toolbarbutton-1:not([type="menu-button"]):not([disabled="true"]):hover:active,
|
|
|
|
.toolbarbutton-1:not([type="menu-button"])[checked="true"],
|
2010-02-12 01:09:56 -08:00
|
|
|
.toolbarbutton-1[open="true"] {
|
|
|
|
background-color: transparent;
|
2010-03-27 00:14:58 -07:00
|
|
|
border-color: rgba(0,0,0,.65) rgba(0,0,0,.55) rgba(0,0,0,.5);
|
2010-02-12 01:09:56 -08:00
|
|
|
-moz-box-shadow: 0 0 9px rgba(0,0,0,.4) inset,
|
|
|
|
0 0 3px rgba(0,0,0,.4) inset,
|
|
|
|
0 1px 0 rgba(255,255,255,.4);
|
|
|
|
text-shadow: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.toolbarbutton-1[checked="true"]:not(:active):hover {
|
|
|
|
background-color: rgba(90%,90%,90%,.4);
|
|
|
|
-moz-transition: background-color .4s;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-08-23 14:03:42 -07:00
|
|
|
.toolbarbutton-1 > .toolbarbutton-menubutton-button > .toolbarbutton-icon,
|
2008-03-08 02:24:17 -08:00
|
|
|
.toolbarbutton-1 > .toolbarbutton-icon {
|
2010-02-16 12:41:58 -08:00
|
|
|
-moz-margin-end: 0;
|
2010-02-16 12:42:21 -08:00
|
|
|
width: 18px;
|
|
|
|
height: 18px;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-08-23 14:03:42 -07:00
|
|
|
toolbar[iconsize="small"] .toolbarbutton-1 > .toolbarbutton-menubutton-button > .toolbarbutton-icon,
|
2010-08-05 13:17:15 -07:00
|
|
|
toolbar[iconsize="small"] .toolbarbutton-1 > .toolbarbutton-icon {
|
|
|
|
margin: 1px;
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Default icons have a built-in glow, so they are 18*18px even in small mode,
|
|
|
|
except for the large back icon, which is why the code below uses 'auto' rather
|
|
|
|
than 18px. This will pick the correct size based on the image region. */
|
2010-08-23 14:35:34 -07:00
|
|
|
:-moz-any(@primaryToolbarButtons@) > .toolbarbutton-icon {
|
2010-08-05 13:17:15 -07:00
|
|
|
margin: 0 !important;
|
|
|
|
width: auto !important;
|
|
|
|
height: auto !important;
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
toolbar[mode="full"] .toolbarbutton-1,
|
2010-08-23 14:03:42 -07:00
|
|
|
toolbar[mode="full"] .toolbarbutton-1 > .toolbarbutton-menubutton-button {
|
2007-03-22 10:30:00 -07:00
|
|
|
min-width: 57px;
|
|
|
|
}
|
|
|
|
|
2010-04-27 09:57:19 -07:00
|
|
|
#TabsToolbar > .toolbarbutton-1,
|
2010-08-23 14:03:42 -07:00
|
|
|
#TabsToolbar > .toolbarbutton-1 > .toolbarbutton-menubutton-button,
|
|
|
|
#TabsToolbar > .toolbarbutton-1 > .toolbarbutton-menubutton-dropmarker,
|
2010-07-09 12:44:01 -07:00
|
|
|
#TabsToolbar > toolbarpaletteitem > .toolbarbutton-1,
|
2010-08-23 14:03:42 -07:00
|
|
|
#TabsToolbar > toolbarpaletteitem > .toolbarbutton-1 > .toolbarbutton-menubutton-button,
|
|
|
|
#TabsToolbar > toolbarpaletteitem > .toolbarbutton-1 > .toolbarbutton-menubutton-dropmarker,
|
2010-07-09 12:44:01 -07:00
|
|
|
#TabsToolbar > #bookmarks-menu-button-container > #bookmarks-menu-button {
|
2010-04-27 09:57:19 -07:00
|
|
|
-moz-appearance: toolbarbutton;
|
|
|
|
margin: 0;
|
2010-04-29 11:59:34 -07:00
|
|
|
padding: 0 3px;
|
2010-04-27 09:57:19 -07:00
|
|
|
border: none !important;
|
|
|
|
color: inherit !important;
|
|
|
|
background: transparent !important;
|
|
|
|
text-shadow: inherit !important;
|
|
|
|
-moz-box-shadow: none !important;
|
|
|
|
}
|
|
|
|
|
2010-08-23 14:03:42 -07:00
|
|
|
#TabsToolbar > .toolbarbutton-1 > .toolbarbutton-menubutton-dropmarker,
|
|
|
|
#TabsToolbar > toolbarpaletteitem > .toolbarbutton-1 > .toolbarbutton-menubutton-dropmarker {
|
|
|
|
-moz-appearance: none;
|
|
|
|
}
|
|
|
|
|
2010-02-12 01:09:56 -08:00
|
|
|
/* unified back/forward button */
|
|
|
|
|
2010-02-16 12:42:21 -08:00
|
|
|
#back-button {
|
|
|
|
-moz-image-region: rect(0, 18px, 18px, 0);
|
|
|
|
-moz-margin-end: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#forward-button {
|
|
|
|
-moz-image-region: rect(0, 36px, 18px, 18px);
|
|
|
|
border-left: none;
|
|
|
|
-moz-margin-start: 0;
|
|
|
|
}
|
|
|
|
|
2009-08-11 01:27:20 -07:00
|
|
|
#back-button:-moz-locale-dir(rtl) > .toolbarbutton-icon,
|
2010-02-12 01:09:56 -08:00
|
|
|
#forward-button:-moz-locale-dir(rtl) {
|
2009-08-11 01:27:20 -07:00
|
|
|
-moz-transform: scaleX(-1);
|
|
|
|
}
|
|
|
|
|
2010-02-12 01:09:56 -08:00
|
|
|
#back-button:-moz-locale-dir(ltr) {
|
|
|
|
-moz-border-radius-topright: 0;
|
|
|
|
-moz-border-radius-bottomright: 0;
|
2008-01-28 03:33:20 -08:00
|
|
|
}
|
2008-03-20 21:31:27 -07:00
|
|
|
|
2010-02-12 01:09:56 -08:00
|
|
|
#back-button:-moz-locale-dir(rtl),
|
|
|
|
#forward-button {
|
|
|
|
-moz-border-radius-topleft: 0;
|
|
|
|
-moz-border-radius-bottomleft: 0;
|
2008-03-20 21:31:27 -07:00
|
|
|
}
|
|
|
|
|
2010-02-12 01:09:56 -08:00
|
|
|
toolbar:not([iconsize="small"])[mode="icons"] #back-button {
|
|
|
|
-moz-border-radius: 100%;
|
2010-02-16 12:42:21 -08:00
|
|
|
padding: 0;
|
2010-03-27 00:14:58 -07:00
|
|
|
width: 30px;
|
|
|
|
height: 30px;
|
2010-02-12 01:09:56 -08:00
|
|
|
position: relative;
|
|
|
|
z-index: 1;
|
2010-03-27 00:14:58 -07:00
|
|
|
margin-top: -2px;
|
|
|
|
margin-bottom: -2px;
|
|
|
|
border: none;
|
|
|
|
background-image: -moz-linear-gradient(rgba(251,252,253,.97), rgba(246,247,248,.5) 49%,
|
|
|
|
rgba(231,232,233,.45) 51%, rgba(225,226,229,.2));
|
|
|
|
-moz-box-shadow: 0 0 0 1px rgba(255,255,255,.3) inset,
|
|
|
|
0 0 0 2px rgba(255,255,255,.1) inset,
|
|
|
|
0 0 0 1px rgba(0,0,0,.15),
|
|
|
|
0 1px 0 rgba(0,0,0,.4),
|
|
|
|
0 1px 1px rgba(0,0,0,.3),
|
|
|
|
1px 2px 1px rgba(0,0,0,.2);
|
|
|
|
-moz-image-region: rect(18px, 20px, 38px, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
toolbar:not([iconsize="small"])[mode="icons"] #back-button:not([disabled="true"]):not([checked="true"]):not(:active):hover {
|
|
|
|
-moz-box-shadow: 0 0 0 1px rgba(255,255,255,.3) inset,
|
|
|
|
0 0 0 2px rgba(255,255,255,.1) inset,
|
|
|
|
0 0 0 1px hsla(190,50%,40%,.3),
|
|
|
|
0 1px 0 rgba(0,0,0,.4),
|
|
|
|
0 1px 1px rgba(0,0,0,.3),
|
|
|
|
1px 2px 1px rgba(0,0,0,.2),
|
|
|
|
0 0 5px 1px hsl(190,90%,80%);
|
|
|
|
}
|
|
|
|
|
|
|
|
toolbar:not([iconsize="small"])[mode="icons"] #back-button:not([disabled="true"]):hover:active {
|
|
|
|
-moz-box-shadow: 0 0 9px rgba(0,0,0,.4) inset,
|
|
|
|
0 0 3px rgba(0,0,0,.4) inset,
|
|
|
|
0 0 0 1px rgba(0,0,0,.65),
|
|
|
|
0 2px 0 rgba(255,255,255,.4);
|
2010-02-16 12:42:21 -08:00
|
|
|
}
|
|
|
|
|
2010-02-12 01:09:56 -08:00
|
|
|
toolbar:not([iconsize="small"])[mode="icons"][currentset*="unified-back-forward-button"],
|
|
|
|
#nav-bar:not([iconsize="small"])[mode="icons"]:not([currentset]) {
|
|
|
|
padding-top: 3px;
|
2010-06-11 05:15:37 -07:00
|
|
|
padding-bottom: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#navigator-toolbox[tabsontop="true"] > toolbar:not([iconsize="small"])[mode="icons"][currentset*="unified-back-forward-button"],
|
|
|
|
#navigator-toolbox[tabsontop="true"] > #nav-bar:not([iconsize="small"])[mode="icons"]:not([currentset]) {
|
|
|
|
padding-top: 5px;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-02-12 01:09:56 -08:00
|
|
|
toolbar:not([iconsize="small"])[mode="icons"] #forward-button {
|
|
|
|
/*mask: url(keyhole-forward-mask.svg#mask); XXX: this regresses twinopen */
|
|
|
|
mask: url(chrome://browser/content/browser.xul#winstripe-keyhole-forward-mask);
|
|
|
|
-moz-margin-start: -6px;
|
2010-03-01 13:30:08 -08:00
|
|
|
padding-left: 7px;
|
|
|
|
padding-right: 3px;
|
|
|
|
}
|
|
|
|
|
2010-03-24 23:44:29 -07:00
|
|
|
toolbar:not([iconsize="small"])[mode="icons"] #forward-button:not([disabled="true"]):not(:active):hover {
|
2010-03-01 13:30:08 -08:00
|
|
|
/*mask: url(keyhole-forward-mask.svg#mask-hover);*/
|
|
|
|
mask: url(chrome://browser/content/browser.xul#winstripe-keyhole-forward-mask-hover);
|
2010-03-24 23:44:29 -07:00
|
|
|
/* Don't animate the box shadow, as the blur and spread radii affect the mask. */
|
|
|
|
-moz-transition: background-color .4s ease-in;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-02-12 01:09:56 -08:00
|
|
|
#back-forward-dropmarker {
|
|
|
|
-moz-appearance: none;
|
|
|
|
padding: 0;
|
|
|
|
-moz-padding-end: 2px;
|
|
|
|
-moz-margin-start: -3px;
|
|
|
|
border: none;
|
|
|
|
list-style-image: url(mainwindow-dropdown-arrow.png);
|
|
|
|
-moz-image-region: rect(0, 13px, 11px, 0);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-02-12 01:09:56 -08:00
|
|
|
#back-forward-dropmarker:not([disabled="true"]):hover:active,
|
|
|
|
#back-forward-dropmarker[open="true"] {
|
|
|
|
-moz-image-region: rect(0, 26px, 11px, 13px);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-02-12 01:09:56 -08:00
|
|
|
#back-forward-dropmarker[disabled="true"] {
|
|
|
|
opacity: .6;
|
2009-07-31 10:58:17 -07:00
|
|
|
}
|
|
|
|
|
2010-02-12 01:09:56 -08:00
|
|
|
#back-forward-dropmarker > .toolbarbutton-icon {
|
|
|
|
display: -moz-box;
|
|
|
|
margin: 0;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-02-12 01:09:56 -08:00
|
|
|
#back-forward-dropmarker > .toolbarbutton-menu-dropmarker {
|
|
|
|
display: none;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2009-08-07 01:42:16 -07:00
|
|
|
.unified-nav-back[_moz-menuactive]:-moz-locale-dir(ltr),
|
|
|
|
.unified-nav-forward[_moz-menuactive]:-moz-locale-dir(rtl) {
|
2008-03-01 20:37:58 -08:00
|
|
|
list-style-image: url("chrome://browser/skin/menu-back.png") !important;
|
2008-02-29 19:53:59 -08:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-08-07 01:42:16 -07:00
|
|
|
.unified-nav-forward[_moz-menuactive]:-moz-locale-dir(ltr),
|
|
|
|
.unified-nav-back[_moz-menuactive]:-moz-locale-dir(rtl) {
|
2008-03-01 20:37:58 -08:00
|
|
|
list-style-image: url("chrome://browser/skin/menu-forward.png") !important;
|
2008-02-29 19:53:59 -08:00
|
|
|
}
|
2007-06-16 18:41:59 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/* stop button */
|
|
|
|
|
2010-02-12 01:09:56 -08:00
|
|
|
#stop-button {
|
2010-02-16 12:42:21 -08:00
|
|
|
-moz-image-region: rect(0, 54px, 18px, 36px);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* reload button */
|
|
|
|
|
2010-02-12 01:09:56 -08:00
|
|
|
#reload-button {
|
2010-02-16 12:42:21 -08:00
|
|
|
-moz-image-region: rect(0, 72px, 18px, 54px);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2008-01-30 15:16:52 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/* home button */
|
|
|
|
|
2008-01-30 15:16:52 -08:00
|
|
|
#home-button.bookmark-item {
|
2010-02-12 01:09:56 -08:00
|
|
|
list-style-image: url("chrome://browser/skin/Toolbar.png");
|
2008-01-30 02:43:29 -08:00
|
|
|
}
|
2010-02-12 01:09:56 -08:00
|
|
|
#home-button {
|
2010-02-16 12:42:21 -08:00
|
|
|
-moz-image-region: rect(0, 90px, 18px, 72px);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-07-29 12:37:25 -07:00
|
|
|
/* tabview button */
|
2010-07-11 11:26:36 -07:00
|
|
|
|
2010-07-29 12:37:25 -07:00
|
|
|
#tabview-button {
|
|
|
|
list-style-image: url(chrome://browser/skin/tabview/tabview.png);
|
2010-07-11 11:26:36 -07:00
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/* download manager button */
|
|
|
|
|
2010-02-12 01:09:56 -08:00
|
|
|
#downloads-button {
|
2010-02-16 12:42:21 -08:00
|
|
|
-moz-image-region: rect(0, 108px, 18px, 90px);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* history sidebar button */
|
|
|
|
|
2010-02-12 01:09:56 -08:00
|
|
|
#history-button {
|
2010-02-16 12:42:21 -08:00
|
|
|
-moz-image-region: rect(0, 126px, 18px, 108px);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-06-24 10:08:43 -07:00
|
|
|
/* bookmark sidebar & menu buttons */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-06-24 10:08:43 -07:00
|
|
|
#bookmarks-button,
|
|
|
|
#bookmarks-menu-button {
|
2010-02-16 12:42:21 -08:00
|
|
|
-moz-image-region: rect(0, 144px, 18px, 126px);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-06-24 10:08:43 -07:00
|
|
|
#bookmarks-menu-button.bookmark-item {
|
|
|
|
list-style-image: url("chrome://browser/skin/Toolbar.png");
|
|
|
|
}
|
|
|
|
|
2010-06-26 09:22:20 -07:00
|
|
|
#bookmarks-menu-button.toolbarbutton-1 {
|
2010-06-24 10:08:43 -07:00
|
|
|
-moz-box-orient: horizontal;
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/* print button */
|
|
|
|
|
2010-02-12 01:09:56 -08:00
|
|
|
#print-button {
|
2010-02-16 12:42:21 -08:00
|
|
|
-moz-image-region: rect(0, 162px, 18px, 144px);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2009-01-23 00:13:13 -08:00
|
|
|
/* toolbar new tab button */
|
|
|
|
|
2010-02-12 01:09:56 -08:00
|
|
|
#new-tab-button {
|
2010-02-16 12:42:21 -08:00
|
|
|
-moz-image-region: rect(0, 180px, 18px, 162px);
|
2009-01-23 00:13:13 -08:00
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/* new window button */
|
|
|
|
|
2010-02-12 01:09:56 -08:00
|
|
|
#new-window-button {
|
2010-02-16 12:42:21 -08:00
|
|
|
-moz-image-region: rect(0, 198px, 18px, 180px);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* cut button */
|
|
|
|
|
2010-02-12 01:09:56 -08:00
|
|
|
#cut-button {
|
2010-02-16 12:42:21 -08:00
|
|
|
-moz-image-region: rect(0, 216px, 18px, 198px);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* copy button */
|
|
|
|
|
2010-02-12 01:09:56 -08:00
|
|
|
#copy-button {
|
2010-02-16 12:42:21 -08:00
|
|
|
-moz-image-region: rect(0, 234px, 18px, 216px);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* paste button */
|
|
|
|
|
2010-02-12 01:09:56 -08:00
|
|
|
#paste-button {
|
2010-02-16 12:42:21 -08:00
|
|
|
-moz-image-region: rect(0, 252px, 18px, 234px);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2009-07-31 10:58:17 -07:00
|
|
|
/* fullscreen button */
|
|
|
|
|
2010-02-12 01:09:56 -08:00
|
|
|
#fullscreen-button {
|
2010-02-16 12:42:21 -08:00
|
|
|
-moz-image-region: rect(0, 270px, 18px, 252px);
|
2009-07-31 10:58:17 -07:00
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/* ::::: fullscreen window controls ::::: */
|
|
|
|
|
2009-06-03 09:01:26 -07:00
|
|
|
#minimize-button,
|
|
|
|
#restore-button,
|
|
|
|
#close-button {
|
|
|
|
list-style-image: url("chrome://global/skin/icons/windowControls.png");
|
2007-03-22 10:30:00 -07:00
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#minimize-button {
|
2009-06-03 09:01:26 -07:00
|
|
|
-moz-image-region: rect(0, 16px, 16px, 0);
|
|
|
|
}
|
|
|
|
#minimize-button:hover {
|
|
|
|
-moz-image-region: rect(16px, 16px, 32px, 0);
|
|
|
|
}
|
|
|
|
#minimize-button:hover:active {
|
|
|
|
-moz-image-region: rect(32px, 16px, 48px, 0);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
#restore-button {
|
2009-06-03 09:01:26 -07:00
|
|
|
-moz-image-region: rect(0, 32px, 16px, 16px);
|
|
|
|
}
|
|
|
|
#restore-button:hover {
|
|
|
|
-moz-image-region: rect(16px, 32px, 32px, 16px);
|
|
|
|
}
|
|
|
|
#restore-button:hover:active {
|
|
|
|
-moz-image-region: rect(32px, 32px, 48px, 16px);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
#close-button {
|
2009-06-03 09:01:26 -07:00
|
|
|
-moz-image-region: rect(0, 48px, 16px, 32px);
|
|
|
|
-moz-appearance: none;
|
|
|
|
border-style: none;
|
|
|
|
margin: 2px;
|
|
|
|
}
|
|
|
|
#close-button:hover {
|
|
|
|
-moz-image-region: rect(16px, 48px, 32px, 32px);
|
|
|
|
}
|
|
|
|
#close-button:hover:active {
|
|
|
|
-moz-image-region: rect(32px, 48px, 48px, 32px);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-03-02 03:43:23 -08:00
|
|
|
/* ::::: Location Bar ::::: */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#urlbar {
|
|
|
|
width: 7em;
|
|
|
|
min-width: 7em;
|
2008-04-28 03:04:57 -07:00
|
|
|
}
|
|
|
|
|
2010-03-02 15:22:25 -08:00
|
|
|
#urlbar,
|
|
|
|
.searchbar-textbox {
|
|
|
|
-moz-appearance: none;
|
|
|
|
margin: 1px 3px;
|
2010-03-24 23:43:34 -07:00
|
|
|
padding: 2px;
|
2010-06-08 18:44:33 -07:00
|
|
|
background-clip: padding-box;
|
2010-06-12 00:00:09 -07:00
|
|
|
border: 1px solid ThreeDDarkShadow;
|
2010-03-02 15:22:25 -08:00
|
|
|
-moz-border-radius: 4px;
|
|
|
|
-moz-box-shadow: 0 1px 0 rgba(0,0,0,.1) inset,
|
|
|
|
0 1px 0 rgba(255,255,255,.4);
|
2009-11-11 10:49:56 -08:00
|
|
|
}
|
|
|
|
|
2010-06-12 00:00:09 -07:00
|
|
|
@media all and (-moz-windows-default-theme) {
|
|
|
|
#urlbar,
|
|
|
|
.searchbar-textbox {
|
|
|
|
@navbarTextboxCustomBorder@
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-03-02 15:22:25 -08:00
|
|
|
#urlbar:-moz-lwtheme,
|
|
|
|
.searchbar-textbox:-moz-lwtheme {
|
|
|
|
background-color: rgba(255,255,255,.8);
|
2010-06-12 00:00:09 -07:00
|
|
|
@navbarTextboxCustomBorder@
|
2010-03-02 15:22:25 -08:00
|
|
|
color: black;
|
|
|
|
}
|
|
|
|
|
2010-03-07 13:05:01 -08:00
|
|
|
/*
|
2010-03-03 23:13:27 -08:00
|
|
|
#urlbar:-moz-lwtheme > .autocomplete-textbox-container > .textbox-input-box > html|*.textbox-input:-moz-placeholder,
|
|
|
|
.searchbar-textbox:-moz-lwtheme > .autocomplete-textbox-container > .textbox-input-box > html|*.textbox-input:-moz-placeholder {
|
2010-03-02 15:22:25 -08:00
|
|
|
color: #777;
|
|
|
|
}
|
2010-03-07 13:05:01 -08:00
|
|
|
*/
|
2010-03-02 15:22:25 -08:00
|
|
|
|
|
|
|
#urlbar:-moz-lwtheme[focused="true"],
|
|
|
|
.searchbar-textbox:-moz-lwtheme[focused="true"] {
|
|
|
|
background-color: white;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#urlbar-container {
|
|
|
|
-moz-box-orient: horizontal;
|
|
|
|
-moz-box-align: stretch;
|
|
|
|
}
|
|
|
|
|
|
|
|
#urlbar-icons {
|
|
|
|
height: 18px;
|
2007-11-23 22:00:27 -08:00
|
|
|
-moz-box-align: center;
|
|
|
|
}
|
|
|
|
|
2009-08-10 19:59:10 -07:00
|
|
|
.urlbar-icon {
|
|
|
|
padding: 0 2px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.urlbar-icon:-moz-system-metric(touch-enabled) {
|
|
|
|
-moz-margin-end: 1px !important;
|
|
|
|
padding: 0 3px !important;
|
|
|
|
}
|
|
|
|
|
2008-01-10 01:16:24 -08:00
|
|
|
#urlbar-search-splitter {
|
2010-03-02 15:22:25 -08:00
|
|
|
min-width: 6px;
|
|
|
|
-moz-margin-start: -3px;
|
2008-01-10 01:16:24 -08:00
|
|
|
border: none;
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
#urlbar-search-splitter + #urlbar-container > #urlbar ,
|
|
|
|
#urlbar-search-splitter + #search-container > #searchbar > .searchbar-textbox {
|
|
|
|
-moz-margin-start: 0;
|
|
|
|
}
|
|
|
|
|
2010-03-02 15:22:25 -08:00
|
|
|
#wrapper-urlbar-container > #urlbar-container > #urlbar > .autocomplete-history-dropmarker {
|
2007-12-04 17:03:21 -08:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2009-08-07 01:42:16 -07:00
|
|
|
#urlbar > .autocomplete-textbox-container {
|
2007-03-22 10:30:00 -07:00
|
|
|
direction: ltr;
|
2010-03-02 03:43:23 -08:00
|
|
|
-moz-box-align: stretch;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-03-26 14:59:02 -07:00
|
|
|
#urlbar-display {
|
|
|
|
margin-top: -2px;
|
|
|
|
margin-bottom: -2px;
|
|
|
|
padding-top: 3px;
|
|
|
|
padding-bottom: 2px;
|
|
|
|
-moz-padding-end: 3px;
|
|
|
|
color: GrayText;
|
|
|
|
-moz-border-end: 1px solid #AAA;
|
|
|
|
-moz-margin-end: 3px;
|
|
|
|
}
|
|
|
|
|
2010-03-02 03:43:23 -08:00
|
|
|
/* identity box */
|
|
|
|
|
|
|
|
#identity-box {
|
2010-03-02 15:22:25 -08:00
|
|
|
background-color: -moz-dialog;
|
|
|
|
background-image: -moz-linear-gradient(rgba(255,255,255,.25), rgba(0,0,0,.15));
|
2010-03-02 03:43:23 -08:00
|
|
|
color: -moz-dialogText;
|
2010-03-02 15:22:25 -08:00
|
|
|
-moz-border-radius: 2px;
|
2010-03-02 03:43:23 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
#identity-box:hover {
|
2010-03-02 15:22:25 -08:00
|
|
|
background-image: -moz-linear-gradient(rgba(255,255,255,.5), rgba(50%,50%,50%,.2), rgba(0,0,0,.15));
|
2010-03-02 03:43:23 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
#identity-box[open="true"],
|
|
|
|
#identity-box:hover:active {
|
2010-03-02 15:22:25 -08:00
|
|
|
background-image: -moz-linear-gradient(rgba(0,0,0,.4), rgba(0,0,0,.1));
|
2010-03-02 03:43:23 -08:00
|
|
|
}
|
|
|
|
|
2010-03-02 15:22:25 -08:00
|
|
|
#identity-box.verifiedDomain,
|
2010-03-02 03:43:23 -08:00
|
|
|
#identity-box.verifiedIdentity {
|
2010-03-02 15:22:25 -08:00
|
|
|
color: white;
|
|
|
|
text-shadow: 0 1px 0 rgba(0,0,0,.25);
|
|
|
|
-moz-box-shadow: 0 0 0 1px rgba(0,0,0,.2) inset;
|
2010-03-02 03:43:23 -08:00
|
|
|
}
|
|
|
|
|
2010-03-02 15:22:25 -08:00
|
|
|
#identity-box.verifiedDomain {
|
|
|
|
background-color: hsl(219,45%,60%);
|
2010-03-02 03:43:23 -08:00
|
|
|
}
|
|
|
|
|
2010-03-02 15:22:25 -08:00
|
|
|
#identity-box.verifiedIdentity {
|
|
|
|
background-color: hsl(92,45%,52%);
|
2010-03-02 03:43:23 -08:00
|
|
|
}
|
|
|
|
|
2010-08-12 00:39:50 -07:00
|
|
|
#identity-box:-moz-focusring {
|
2010-03-02 03:43:23 -08:00
|
|
|
outline: 1px dotted -moz-DialogText;
|
|
|
|
outline-offset: -3px;
|
|
|
|
}
|
|
|
|
|
2010-08-12 00:39:50 -07:00
|
|
|
#identity-box.verifiedDomain:-moz-focusring,
|
|
|
|
#identity-box.verifiedIdentity:-moz-focusring {
|
2010-03-02 15:22:25 -08:00
|
|
|
outline-color: white;
|
2010-03-02 03:43:23 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
#identity-icon-labels {
|
2010-03-02 15:22:25 -08:00
|
|
|
-moz-margin-start: 1px;
|
|
|
|
-moz-margin-end: 3px;
|
2010-03-24 23:43:34 -07:00
|
|
|
-moz-transform: translate(0, -1px);
|
2010-03-02 03:43:23 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Location bar dropmarker */
|
|
|
|
|
|
|
|
#urlbar > .autocomplete-history-dropmarker {
|
|
|
|
-moz-appearance: none;
|
|
|
|
padding: 0 1px;
|
|
|
|
background-color: transparent;
|
|
|
|
border: none;
|
|
|
|
width: auto;
|
|
|
|
list-style-image: url(mainwindow-dropdown-arrow.png);
|
|
|
|
-moz-image-region: rect(0, 13px, 11px, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
#urlbar > .autocomplete-history-dropmarker:-moz-system-metric(touch-enabled) {
|
2010-08-19 13:22:16 -07:00
|
|
|
min-width: 6.4mozmm;
|
2010-03-02 03:43:23 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
#urlbar > .autocomplete-history-dropmarker:hover:active,
|
|
|
|
#urlbar > .autocomplete-history-dropmarker[open="true"] {
|
|
|
|
-moz-image-region: rect(0, 26px, 11px, 13px);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* page proxy icon */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#page-proxy-favicon,
|
2008-02-25 14:30:48 -08:00
|
|
|
#urlbar-throbber {
|
2007-03-22 10:30:00 -07:00
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
}
|
|
|
|
|
2008-02-25 14:30:48 -08:00
|
|
|
#page-proxy-stack {
|
2008-05-01 14:22:24 -07:00
|
|
|
width: 24px;
|
2010-03-02 15:22:25 -08:00
|
|
|
height: 18px;
|
|
|
|
padding: 1px 4px;
|
2008-05-01 14:22:24 -07:00
|
|
|
background: url(urlbar-favicon-glow.png) center center no-repeat;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2008-02-25 14:30:48 -08:00
|
|
|
#page-proxy-favicon:not([src]) {
|
|
|
|
list-style-image: url("chrome://global/skin/icons/folder-item.png");
|
|
|
|
-moz-image-region: rect(0px, 16px, 16px, 0px)
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2008-02-25 14:30:48 -08:00
|
|
|
#page-proxy-favicon[pageproxystate="invalid"] {
|
|
|
|
-moz-image-region: rect(32px, 16px, 48px, 0px);
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-02-25 14:30:48 -08:00
|
|
|
#urlbar-throbber {
|
2008-04-07 13:47:57 -07:00
|
|
|
list-style-image: url("chrome://browser/skin/places/searching_16.png");
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-03-02 03:43:23 -08:00
|
|
|
/* autocomplete */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-03-02 03:43:23 -08:00
|
|
|
#PopupAutoComplete,
|
|
|
|
#PopupAutoCompleteRichResult {
|
|
|
|
direction: ltr !important;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-03-02 03:43:23 -08:00
|
|
|
#PopupAutoComplete:-moz-locale-dir(rtl) > tree > treerows {
|
|
|
|
direction: rtl;
|
|
|
|
}
|
|
|
|
|
|
|
|
#PopupAutoComplete .autocomplete-treebody {
|
|
|
|
direction: ltr;
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2007-11-06 00:43:53 -08:00
|
|
|
#treecolAutoCompleteImage {
|
2007-11-29 20:57:57 -08:00
|
|
|
max-width: 36px;
|
2007-08-31 13:19:19 -07:00
|
|
|
}
|
|
|
|
|
2007-11-29 20:57:57 -08:00
|
|
|
.ac-result-type-bookmark,
|
2007-11-06 00:43:53 -08:00
|
|
|
.autocomplete-treebody::-moz-tree-image(bookmark, treecolAutoCompleteImage) {
|
2008-04-29 12:09:28 -07:00
|
|
|
list-style-image: url("chrome://browser/skin/places/editBookmark.png");
|
|
|
|
-moz-image-region: rect(0px 16px 16px 0px);
|
2007-11-29 20:57:57 -08:00
|
|
|
width: 16px;
|
2007-11-06 00:43:53 -08:00
|
|
|
height: 16px;
|
|
|
|
}
|
|
|
|
|
2008-07-17 04:48:40 -07:00
|
|
|
.ac-result-type-keyword,
|
|
|
|
.autocomplete-treebody::-moz-tree-image(keyword, treecolAutoCompleteImage) {
|
2009-04-03 03:30:02 -07:00
|
|
|
list-style-image: url(chrome://global/skin/icons/Search-glass.png);
|
2008-07-17 04:48:40 -07:00
|
|
|
-moz-image-region: rect(0px 32px 16px 16px);
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
}
|
|
|
|
|
2007-11-29 20:57:57 -08:00
|
|
|
.ac-result-type-tag,
|
2007-11-06 00:43:53 -08:00
|
|
|
.autocomplete-treebody::-moz-tree-image(tag, treecolAutoCompleteImage) {
|
|
|
|
list-style-image: url("chrome://browser/skin/places/tag.png");
|
2007-11-29 20:57:57 -08:00
|
|
|
width: 16px;
|
2007-09-06 22:35:10 -07:00
|
|
|
height: 16px;
|
|
|
|
}
|
|
|
|
|
2007-11-29 20:57:57 -08:00
|
|
|
.ac-comment {
|
2008-03-20 10:54:20 -07:00
|
|
|
font-size: 1.15em;
|
2007-11-29 20:57:57 -08:00
|
|
|
}
|
|
|
|
|
2008-04-11 20:14:42 -07:00
|
|
|
.ac-extra > .ac-comment {
|
|
|
|
font-size: inherit;
|
|
|
|
}
|
|
|
|
|
2007-11-29 20:57:57 -08:00
|
|
|
.ac-url-text {
|
2008-08-02 12:37:17 -07:00
|
|
|
color: -moz-nativehyperlinktext;
|
2008-04-13 17:49:46 -07:00
|
|
|
}
|
|
|
|
|
2010-03-29 03:04:05 -07:00
|
|
|
%ifndef WINSTRIPE_AERO
|
2008-04-13 17:49:46 -07:00
|
|
|
.ac-url-text:-moz-system-metric(windows-default-theme) {
|
2008-04-22 18:07:38 -07:00
|
|
|
color: #006600;
|
2007-11-29 20:57:57 -08:00
|
|
|
}
|
2010-03-29 03:04:05 -07:00
|
|
|
%endif
|
2007-11-29 20:57:57 -08:00
|
|
|
|
2010-08-25 21:01:22 -07:00
|
|
|
richlistitem[type~="action"][actiontype="switchtab"] > .ac-url-box > .ac-action-icon {
|
2010-03-26 14:59:02 -07:00
|
|
|
list-style-image: url("chrome://browser/skin/actionicon-tab.png");
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
.autocomplete-treebody::-moz-tree-cell-text(treecolAutoCompleteComment) {
|
2007-11-29 20:57:57 -08:00
|
|
|
color: GrayText;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ac-comment[selected="true"], .ac-url-text[selected="true"] {
|
|
|
|
color: inherit !important;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.autocomplete-treebody::-moz-tree-cell-text(suggesthint, treecolAutoCompleteComment),
|
|
|
|
.autocomplete-treebody::-moz-tree-cell-text(suggestfirst, treecolAutoCompleteComment)
|
|
|
|
{
|
|
|
|
color: GrayText;
|
|
|
|
font-size: smaller;
|
|
|
|
}
|
|
|
|
|
|
|
|
.autocomplete-treebody::-moz-tree-cell(suggesthint) {
|
|
|
|
border-top: 1px solid GrayText;
|
|
|
|
}
|
|
|
|
|
2010-03-02 03:43:23 -08:00
|
|
|
/* go button */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2007-09-15 01:21:20 -07:00
|
|
|
#go-button {
|
2007-03-22 10:30:00 -07:00
|
|
|
list-style-image: url("chrome://browser/skin/Go-arrow.png");
|
2010-08-20 02:50:09 -07:00
|
|
|
-moz-image-region: rect(0px 16px 16px 0px);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2007-09-15 01:21:20 -07:00
|
|
|
#go-button:hover {
|
2010-08-20 02:50:09 -07:00
|
|
|
-moz-image-region: rect(16px 16px 32px 0px);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2007-09-15 01:21:20 -07:00
|
|
|
/* star button */
|
2010-03-02 03:43:23 -08:00
|
|
|
|
2007-11-23 22:00:27 -08:00
|
|
|
#star-button {
|
2008-04-29 12:09:28 -07:00
|
|
|
list-style-image: url("chrome://browser/skin/places/bookmark.png");
|
|
|
|
-moz-image-region: rect(0px 16px 16px 0px);
|
|
|
|
}
|
|
|
|
|
|
|
|
#star-button:hover {
|
|
|
|
-moz-image-region: rect(0px 32px 16px 16px);
|
|
|
|
}
|
|
|
|
|
|
|
|
#star-button:hover:active {
|
|
|
|
-moz-image-region: rect(0px 48px 16px 32px);
|
2007-09-15 01:21:20 -07:00
|
|
|
}
|
|
|
|
|
2007-11-23 22:00:27 -08:00
|
|
|
#star-button[starred="true"] {
|
2008-04-29 12:09:28 -07:00
|
|
|
list-style-image: url("chrome://browser/skin/places/editBookmark.png");
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2008-01-29 20:37:20 -08:00
|
|
|
/* bookmarking panel */
|
2010-03-02 03:43:23 -08:00
|
|
|
|
2008-01-29 20:37:20 -08:00
|
|
|
#editBookmarkPanel {
|
2008-04-23 09:03:43 -07:00
|
|
|
-moz-appearance: menupopup;
|
|
|
|
color: MenuText;
|
2008-01-29 20:37:20 -08:00
|
|
|
padding: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#editBookmarkPanelStarIcon {
|
|
|
|
list-style-image: url("chrome://browser/skin/places/starred48.png");
|
|
|
|
width: 48px;
|
|
|
|
height: 48px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#editBookmarkPanelStarIcon[unstarred] {
|
|
|
|
list-style-image: url("chrome://browser/skin/places/unstarred48.png");
|
|
|
|
}
|
|
|
|
|
|
|
|
#editBookmarkPanelTitle {
|
|
|
|
font-size: 130%;
|
|
|
|
}
|
|
|
|
|
2009-03-25 15:18:23 -07:00
|
|
|
#editBookmarkPanelHeader,
|
|
|
|
#editBookmarkPanelContent {
|
|
|
|
margin-bottom: .5em;
|
|
|
|
}
|
|
|
|
|
2009-01-13 02:48:26 -08:00
|
|
|
/* Implements editBookmarkPanel resizing on folderTree un-collapse. */
|
|
|
|
#editBMPanel_folderTree {
|
2009-01-17 06:45:37 -08:00
|
|
|
min-width: 27em;
|
2009-01-13 02:48:26 -08:00
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/* ::::: content area ::::: */
|
|
|
|
|
2007-09-15 01:21:20 -07:00
|
|
|
#sidebar {
|
|
|
|
background-color: Window;
|
|
|
|
}
|
|
|
|
|
2008-04-30 10:00:35 -07:00
|
|
|
#sidebar-title {
|
|
|
|
-moz-padding-start: 0px;
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
#status-bar {
|
|
|
|
border-top: none;
|
|
|
|
}
|
|
|
|
|
2008-02-29 19:53:59 -08:00
|
|
|
#security-button[level="high"],
|
2007-03-22 10:30:00 -07:00
|
|
|
#security-button[level="low"] {
|
|
|
|
list-style-image: url("chrome://browser/skin/Secure.png");
|
|
|
|
}
|
|
|
|
|
|
|
|
#security-button[level="broken"] {
|
|
|
|
list-style-image: url("chrome://browser/skin/Security-broken.png");
|
|
|
|
}
|
|
|
|
|
|
|
|
#page-report-button {
|
|
|
|
width: 20px;
|
|
|
|
list-style-image: url("chrome://browser/skin/Info.png");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ::::: throbber ::::: */
|
|
|
|
|
|
|
|
#navigator-throbber {
|
2008-10-25 06:15:53 -07:00
|
|
|
width: 16px;
|
|
|
|
min-height: 16px;
|
|
|
|
margin: 0 3px;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#navigator-throbber[busy="true"] {
|
2008-04-08 22:32:16 -07:00
|
|
|
list-style-image: url("chrome://global/skin/icons/loading_16.png");
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2009-11-01 15:24:12 -08:00
|
|
|
#navigator-throbber,
|
|
|
|
#wrapper-navigator-throbber > #navigator-throbber {
|
|
|
|
list-style-image: url("chrome://global/skin/icons/notloading_16.png");
|
|
|
|
}
|
|
|
|
|
2007-11-21 04:04:21 -08:00
|
|
|
/* Tabstrip */
|
2010-03-16 23:36:13 -07:00
|
|
|
#TabsToolbar {
|
|
|
|
min-height: 0;
|
|
|
|
padding: 0;
|
2010-06-11 05:15:37 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#TabsToolbar:not(:-moz-lwtheme),
|
2010-07-20 10:36:48 -07:00
|
|
|
#TabsToolbar[tabsontop="false"] {
|
2010-08-10 00:01:41 -07:00
|
|
|
background-image: -moz-linear-gradient(transparent, transparent 50%,
|
|
|
|
rgba(0,0,0,.05) 90%, rgba(0,0,0,.1));
|
|
|
|
}
|
|
|
|
|
|
|
|
#TabsToolbar[tabsontop="true"]:not(:-moz-lwtheme) {
|
2010-07-20 10:37:10 -07:00
|
|
|
-moz-box-shadow: 0 -1px ThreeDShadow inset;
|
2010-08-10 00:01:41 -07:00
|
|
|
}
|
|
|
|
|
2009-08-10 19:59:10 -07:00
|
|
|
.tabbrowser-tabs:-moz-system-metric(touch-enabled) {
|
2010-08-19 13:22:16 -07:00
|
|
|
min-height: 7.3mozmm;
|
2009-08-10 19:59:10 -07:00
|
|
|
}
|
|
|
|
|
2010-03-16 23:36:13 -07:00
|
|
|
.tabbrowser-tabs:not([overflow="true"]) {
|
2010-03-26 01:30:52 -07:00
|
|
|
-moz-margin-start: 3px;
|
2007-08-22 14:02:02 -07:00
|
|
|
}
|
|
|
|
|
2007-11-21 04:04:21 -08:00
|
|
|
/* Tabs */
|
2009-11-11 10:49:56 -08:00
|
|
|
.tabbrowser-tab,
|
2010-04-27 09:57:19 -07:00
|
|
|
.tabs-newtab-button {
|
2007-11-21 04:04:21 -08:00
|
|
|
-moz-appearance: none;
|
2010-08-09 00:43:45 -07:00
|
|
|
background: -moz-linear-gradient(hsla(0,0%,50%,.1), hsla(0,0%,37%,.1) 50%);
|
|
|
|
background-position: -5px -2px;
|
2010-06-13 01:19:52 -07:00
|
|
|
background-repeat: no-repeat;
|
2010-06-08 18:44:33 -07:00
|
|
|
background-size: 200%;
|
2010-04-20 00:33:08 -07:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2010-06-13 01:19:52 -07:00
|
|
|
-moz-border-image: url(tabbrowser/tab.png) 4 5 3 6 / 4px 5px 3px 6px;
|
|
|
|
-moz-border-radius: 10px 8px 0 0;
|
2009-11-11 10:49:56 -08:00
|
|
|
}
|
|
|
|
|
2010-04-20 00:33:08 -07:00
|
|
|
.tabbrowser-tab:hover,
|
2010-04-27 09:57:19 -07:00
|
|
|
.tabs-newtab-button:hover {
|
2010-08-09 00:43:45 -07:00
|
|
|
background-image: -moz-linear-gradient(hsla(0,0%,100%,.4), hsla(0,0%,75%,.4) 50%);
|
2009-11-11 10:49:56 -08:00
|
|
|
}
|
|
|
|
|
2010-08-09 00:43:45 -07:00
|
|
|
.tabbrowser-tab[selected="true"] {
|
|
|
|
background-image: -moz-linear-gradient(rgba(255,255,255,.7), @toolbarHighlight@ 30%),
|
|
|
|
-moz-linear-gradient(-moz-dialog, -moz-dialog);
|
2007-11-21 04:04:21 -08:00
|
|
|
}
|
|
|
|
|
2010-08-09 00:43:45 -07:00
|
|
|
.tabbrowser-tab:-moz-lwtheme {
|
|
|
|
color: inherit;
|
2007-08-22 14:02:02 -07:00
|
|
|
}
|
|
|
|
|
2010-08-09 00:43:45 -07:00
|
|
|
.tabbrowser-tab[selected="true"]:-moz-lwtheme {
|
|
|
|
background-image: -moz-linear-gradient(rgba(255,255,255,.7), @toolbarHighlight@ 30%);
|
2007-08-22 14:02:02 -07:00
|
|
|
}
|
|
|
|
|
2010-08-09 00:43:45 -07:00
|
|
|
.tabbrowser-tab:-moz-lwtheme-brighttext:not([selected="true"]),
|
|
|
|
.tabs-newtab-button:-moz-lwtheme-brighttext {
|
|
|
|
background-image: -moz-linear-gradient(hsla(0,0%,40%,.6), hsla(0,0%,30%,.6) 50%);
|
2010-07-20 10:37:10 -07:00
|
|
|
}
|
|
|
|
|
2010-08-09 00:43:45 -07:00
|
|
|
.tabbrowser-tab:-moz-lwtheme-brighttext:not([selected="true"]):hover,
|
|
|
|
.tabs-newtab-button:-moz-lwtheme-brighttext:hover {
|
|
|
|
background-image: -moz-linear-gradient(hsla(0,0%,60%,.6), hsla(0,0%,45%,.6) 50%);
|
2010-04-27 22:54:51 -07:00
|
|
|
}
|
|
|
|
|
2010-08-09 00:43:45 -07:00
|
|
|
.tabbrowser-tab:-moz-lwtheme-darktext:not([selected="true"]),
|
|
|
|
.tabs-newtab-button:-moz-lwtheme-darktext {
|
|
|
|
background-image: -moz-linear-gradient(hsla(0,0%,60%,.5), hsla(0,0%,45%,.5) 50%);
|
2007-08-22 14:02:02 -07:00
|
|
|
}
|
|
|
|
|
2010-08-09 00:43:45 -07:00
|
|
|
.tabbrowser-tab:-moz-lwtheme-darktext:not([selected="true"]):hover,
|
|
|
|
.tabs-newtab-button:-moz-lwtheme-darktext:hover {
|
|
|
|
background-image: -moz-linear-gradient(hsla(0,0%,80%,.5), hsla(0,0%,60%,.5) 50%);
|
2009-11-11 10:49:56 -08:00
|
|
|
}
|
|
|
|
|
2007-11-21 04:04:21 -08:00
|
|
|
.tabbrowser-tab[busy] > .tab-icon-image {
|
2009-10-01 05:31:24 -07:00
|
|
|
list-style-image: url("chrome://browser/skin/tabbrowser/progress.png") !important;
|
|
|
|
-moz-image-region: rect(0, 16px, 16px, 0);
|
|
|
|
}
|
|
|
|
.tabbrowser-tab[busy][stalled] > .tab-icon-image {
|
|
|
|
list-style-image: url("chrome://browser/skin/tabbrowser/progress-pulsing.png") !important;
|
|
|
|
}
|
|
|
|
.tabbrowser-tab[busy][progress="1"] > .tab-icon-image {
|
|
|
|
-moz-image-region: rect(0, 32px, 16px, 16px);
|
|
|
|
}
|
|
|
|
.tabbrowser-tab[busy][progress="2"] > .tab-icon-image {
|
|
|
|
-moz-image-region: rect(0, 48px, 16px, 32px);
|
|
|
|
}
|
|
|
|
.tabbrowser-tab[busy][progress="3"] > .tab-icon-image {
|
|
|
|
-moz-image-region: rect(0, 64px, 16px, 48px);
|
|
|
|
}
|
|
|
|
.tabbrowser-tab[busy][progress="4"] > .tab-icon-image {
|
|
|
|
-moz-image-region: rect(0, 80px, 16px, 64px);
|
|
|
|
}
|
|
|
|
.tabbrowser-tab[busy][progress="5"] > .tab-icon-image {
|
|
|
|
-moz-image-region: rect(0, 96px, 16px, 80px);
|
|
|
|
}
|
|
|
|
.tabbrowser-tab[busy][progress="6"] > .tab-icon-image {
|
|
|
|
-moz-image-region: rect(0, 112px, 16px, 96px);
|
|
|
|
}
|
|
|
|
.tabbrowser-tab[busy][progress="7"] > .tab-icon-image {
|
|
|
|
-moz-image-region: rect(0, 128px, 16px, 112px);
|
|
|
|
}
|
|
|
|
.tabbrowser-tab[busy][progress="8"] > .tab-icon-image {
|
|
|
|
-moz-image-region: rect(0, 144px, 16px, 128px);
|
2007-08-22 14:02:02 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.tab-icon-image {
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
list-style-image: url("chrome://global/skin/icons/folder-item.png");
|
|
|
|
-moz-image-region: rect(0px, 16px, 16px, 0px);
|
|
|
|
}
|
|
|
|
|
2010-06-24 07:29:02 -07:00
|
|
|
.tabbrowser-tab:not([pinned]) > .tab-icon-image {
|
|
|
|
-moz-margin-end: 3px;
|
|
|
|
}
|
|
|
|
|
2007-08-22 14:02:02 -07:00
|
|
|
/* tabbrowser-tab focus ring */
|
2009-07-21 05:37:13 -07:00
|
|
|
.tabbrowser-tab > .tab-text {
|
2007-08-22 14:02:02 -07:00
|
|
|
border: 1px dotted transparent;
|
|
|
|
}
|
|
|
|
|
2009-06-25 12:45:29 -07:00
|
|
|
.tabbrowser-tab:focus > .tab-text {
|
2007-08-22 14:02:02 -07:00
|
|
|
border: 1px dotted -moz-DialogText;
|
|
|
|
}
|
|
|
|
|
2007-11-21 04:04:21 -08:00
|
|
|
/* Tab DnD indicator */
|
2007-08-22 14:02:02 -07:00
|
|
|
.tab-drop-indicator {
|
2010-03-10 00:07:45 -08:00
|
|
|
list-style-image: url(chrome://browser/skin/tabbrowser/tabDragIndicator.png);
|
2007-08-22 14:02:02 -07:00
|
|
|
}
|
|
|
|
|
2007-11-21 04:04:21 -08:00
|
|
|
/* Tab close button */
|
2007-08-22 14:02:02 -07:00
|
|
|
.tab-close-button {
|
|
|
|
-moz-appearance: none;
|
2010-07-18 07:29:32 -07:00
|
|
|
-moz-image-region: rect(0, 64px, 16px, 48px);
|
2007-11-21 04:04:21 -08:00
|
|
|
border: none;
|
2007-08-22 14:02:02 -07:00
|
|
|
padding: 0px;
|
|
|
|
list-style-image: url("chrome://global/skin/icons/close.png");
|
|
|
|
}
|
|
|
|
|
2009-08-10 19:59:10 -07:00
|
|
|
.tab-close-button:-moz-system-metric(touch-enabled) {
|
2010-06-17 12:46:26 -07:00
|
|
|
-moz-transform: scale(1.2);
|
2009-08-10 19:59:10 -07:00
|
|
|
}
|
|
|
|
|
2007-08-22 14:02:02 -07:00
|
|
|
.tab-close-button:hover,
|
|
|
|
.tabbrowser-tab[selected="true"] > .tab-close-button:hover {
|
2010-07-18 07:29:32 -07:00
|
|
|
-moz-image-region: rect(0, 32px, 16px, 16px);
|
2007-08-22 14:02:02 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.tab-close-button:hover:active,
|
|
|
|
.tabbrowser-tab[selected="true"] > .tab-close-button:hover:active {
|
2010-07-18 07:29:32 -07:00
|
|
|
-moz-image-region: rect(0, 48px, 16px, 32px);
|
2007-08-22 14:02:02 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.tabbrowser-tab[selected="true"] > .tab-close-button {
|
2010-07-18 07:29:32 -07:00
|
|
|
-moz-image-region: rect(0, 16px, 16px, 0);
|
2007-08-22 14:02:02 -07:00
|
|
|
/* Make this button focusable so clicking on it will not focus the tab while
|
|
|
|
it's getting closed */
|
|
|
|
-moz-user-focus: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tab-close-button:focus {
|
|
|
|
outline: none !important;
|
|
|
|
}
|
|
|
|
|
2009-01-23 00:13:13 -08:00
|
|
|
/* Tab scrollbox arrow, tabstrip new tab and all-tabs buttons */
|
2009-08-10 19:59:10 -07:00
|
|
|
|
2010-04-27 09:57:19 -07:00
|
|
|
@media all and (-moz-touch-enabled) {
|
|
|
|
.tabbrowser-arrowscrollbox > .scrollbutton-up,
|
|
|
|
.tabbrowser-arrowscrollbox > .scrollbutton-down,
|
|
|
|
#TabsToolbar > toolbarbutton,
|
2010-07-09 12:44:01 -07:00
|
|
|
#TabsToolbar > toolbarpaletteitem > toolbarbutton,
|
|
|
|
#TabsToolbar > #bookmarks-menu-button-container > #bookmarks-menu-button {
|
2010-08-19 13:22:16 -07:00
|
|
|
min-width: 8.1mozmm;
|
2010-04-27 09:57:19 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.tabs-newtab-button {
|
2010-08-19 13:22:16 -07:00
|
|
|
min-width: 10mozmm;
|
2010-04-27 09:57:19 -07:00
|
|
|
}
|
2009-08-10 19:59:10 -07:00
|
|
|
}
|
|
|
|
|
2009-05-30 05:51:55 -07:00
|
|
|
.tabbrowser-arrowscrollbox > .scrollbutton-up,
|
|
|
|
.tabbrowser-arrowscrollbox > .scrollbutton-down {
|
2010-07-19 13:18:42 -07:00
|
|
|
list-style-image: url("chrome://browser/skin/tabbrowser/tab-arrow-left.png");
|
2009-05-30 05:51:55 -07:00
|
|
|
-moz-image-region: rect(0, 15px, 17px, 0);
|
2010-04-20 00:33:08 -07:00
|
|
|
margin: 0;
|
|
|
|
padding-top: 0;
|
|
|
|
padding-bottom: 0;
|
2009-05-30 05:51:55 -07:00
|
|
|
}
|
|
|
|
|
2008-01-09 21:52:23 -08:00
|
|
|
.tabbrowser-arrowscrollbox > .scrollbutton-up[disabled="true"],
|
|
|
|
.tabbrowser-arrowscrollbox > .scrollbutton-down[disabled="true"] {
|
2009-05-30 08:26:41 -07:00
|
|
|
opacity: .4;
|
2007-08-22 14:02:02 -07:00
|
|
|
}
|
|
|
|
|
2008-01-09 21:52:23 -08:00
|
|
|
.tabbrowser-arrowscrollbox > .scrollbutton-up:not([disabled="true"]):hover:active,
|
|
|
|
.tabbrowser-arrowscrollbox > .scrollbutton-down:not([disabled="true"]):hover:active {
|
2010-07-19 13:18:42 -07:00
|
|
|
-moz-image-region: rect(0, 30px, 17px, 15px);
|
2008-01-09 21:52:23 -08:00
|
|
|
}
|
2007-08-22 14:02:02 -07:00
|
|
|
|
2010-07-19 13:18:42 -07:00
|
|
|
.tabbrowser-arrowscrollbox > .scrollbutton-up:-moz-locale-dir(rtl) > .toolbarbutton-icon,
|
|
|
|
.tabbrowser-arrowscrollbox > .scrollbutton-down:-moz-locale-dir(ltr) > .toolbarbutton-icon {
|
|
|
|
-moz-transform: scaleX(-1);
|
2007-08-22 14:02:02 -07:00
|
|
|
}
|
|
|
|
|
2008-01-09 21:52:23 -08:00
|
|
|
.tabbrowser-arrowscrollbox > .scrollbutton-down {
|
2009-11-05 00:02:12 -08:00
|
|
|
-moz-transition: 1s background-color ease-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tabbrowser-arrowscrollbox > .scrollbutton-down[notifybgtab] {
|
|
|
|
background-color: Highlight;
|
|
|
|
-moz-transition: none;
|
2007-08-22 14:02:02 -07:00
|
|
|
}
|
|
|
|
|
2010-04-27 09:57:19 -07:00
|
|
|
.tabs-newtab-button > .toolbarbutton-icon,
|
|
|
|
#TabsToolbar > #new-tab-button > .toolbarbutton-icon,
|
|
|
|
#TabsToolbar > toolbarpaletteitem > #new-tab-button > .toolbarbutton-icon,
|
|
|
|
#alltabs-button > .toolbarbutton-icon {
|
|
|
|
width: auto;
|
|
|
|
height: auto;
|
2009-05-29 12:22:04 -07:00
|
|
|
}
|
|
|
|
|
2010-05-04 23:36:57 -07:00
|
|
|
.tabs-newtab-button > .toolbarbutton-icon {
|
|
|
|
margin-top: -1px;
|
|
|
|
margin-bottom: -1px;
|
|
|
|
}
|
|
|
|
|
2010-04-27 09:57:19 -07:00
|
|
|
.tabs-newtab-button,
|
|
|
|
#TabsToolbar > #new-tab-button,
|
|
|
|
#TabsToolbar > toolbarpaletteitem > #new-tab-button {
|
|
|
|
list-style-image: url(chrome://browser/skin/tabbrowser/newtab.png);
|
|
|
|
-moz-image-region: rect(0, 16px, 18px, 0);
|
2009-01-23 00:13:11 -08:00
|
|
|
}
|
|
|
|
|
2010-04-27 09:57:19 -07:00
|
|
|
.tabs-newtab-button {
|
2009-05-29 12:22:04 -07:00
|
|
|
width: 31px;
|
2009-01-23 00:13:11 -08:00
|
|
|
}
|
|
|
|
|
2010-04-29 12:28:32 -07:00
|
|
|
.tabs-newtab-button:hover:active,
|
|
|
|
#TabsToolbar > #new-tab-button:hover:active {
|
2010-04-27 09:57:19 -07:00
|
|
|
-moz-image-region: rect(0, 32px, 18px, 16px);
|
2007-08-22 14:02:02 -07:00
|
|
|
}
|
|
|
|
|
2010-04-27 09:57:19 -07:00
|
|
|
#alltabs-button {
|
2008-11-04 23:38:13 -08:00
|
|
|
list-style-image: url("chrome://browser/skin/tabbrowser/alltabs.png");
|
2010-07-18 07:29:32 -07:00
|
|
|
-moz-image-region: rect(0, 14px, 16px, 0);
|
2009-07-09 23:57:08 -07:00
|
|
|
}
|
|
|
|
|
2010-04-27 09:57:19 -07:00
|
|
|
#alltabs-button:hover:active {
|
2010-07-18 07:29:32 -07:00
|
|
|
-moz-image-region: rect(0, 28px, 16px, 14px);
|
2007-08-22 14:02:02 -07:00
|
|
|
}
|
|
|
|
|
2010-04-27 09:57:19 -07:00
|
|
|
#alltabs-button[type="menu"] {
|
2009-07-10 04:20:03 -07:00
|
|
|
list-style-image: url("chrome://browser/skin/mainwindow-dropdown-arrow.png");
|
|
|
|
-moz-image-region: rect(0, 13px, 11px, 0);
|
|
|
|
}
|
|
|
|
|
2010-04-27 09:57:19 -07:00
|
|
|
#alltabs-button[type="menu"] > .toolbarbutton-icon {
|
|
|
|
margin: 3px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#alltabs-button[type="menu"] > .toolbarbutton-menu-dropmarker {
|
2009-07-10 04:20:03 -07:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2010-04-27 09:57:19 -07:00
|
|
|
#alltabs-button[type="menu"]:hover:active,
|
|
|
|
#alltabs-button[type="menu"][open="true"] {
|
2009-07-10 04:20:03 -07:00
|
|
|
-moz-image-region: rect(0, 26px, 11px, 13px);
|
|
|
|
}
|
|
|
|
|
2009-07-10 11:34:46 -07:00
|
|
|
/* All tabs menupopup */
|
|
|
|
.alltabs-item > .menu-iconic-left > .menu-iconic-icon {
|
|
|
|
list-style-image: url("chrome://global/skin/icons/folder-item.png");
|
|
|
|
-moz-image-region: rect(0px, 16px, 16px, 0px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.alltabs-item[selected="true"] {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.alltabs-item[busy] > .menu-iconic-left > .menu-iconic-icon {
|
|
|
|
list-style-image: url("chrome://global/skin/icons/loading_16.png");
|
|
|
|
}
|
|
|
|
|
2007-11-21 04:04:21 -08:00
|
|
|
/* Tabstrip close button */
|
2007-03-22 10:30:00 -07:00
|
|
|
.tabs-closebutton {
|
|
|
|
-moz-appearance: none;
|
2007-11-21 04:04:21 -08:00
|
|
|
list-style-image: url("chrome://global/skin/icons/close.png");
|
2010-07-18 07:29:32 -07:00
|
|
|
-moz-image-region: rect(0, 16px, 16px, 0);
|
2007-03-22 10:30:00 -07:00
|
|
|
padding: 4px 2px;
|
2007-11-21 04:04:21 -08:00
|
|
|
margin: 0px;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tabs-closebutton > .toolbarbutton-icon {
|
|
|
|
-moz-margin-end: 0px !important;
|
|
|
|
-moz-padding-end: 2px !important;
|
|
|
|
-moz-padding-start: 2px !important;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.tabs-closebutton:hover {
|
2010-07-18 07:29:32 -07:00
|
|
|
-moz-image-region: rect(0, 32px, 16px, 16px);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.tabs-closebutton:hover:active {
|
2010-07-18 07:29:32 -07:00
|
|
|
-moz-image-region: rect(0, 48px, 16px, 32px);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
toolbarbutton.chevron {
|
|
|
|
list-style-image: url("chrome://global/skin/toolbar/chevron.gif") !important;
|
|
|
|
}
|
|
|
|
|
2009-08-11 01:27:20 -07:00
|
|
|
toolbarbutton.chevron:-moz-locale-dir(rtl) > .toolbarbutton-icon {
|
|
|
|
-moz-transform: scaleX(-1);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2009-02-22 00:43:59 -08:00
|
|
|
toolbarbutton.chevron > .toolbarbutton-text,
|
2007-03-22 10:30:00 -07:00
|
|
|
toolbarbutton.chevron > .toolbarbutton-menu-dropmarker {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2009-02-22 00:43:59 -08:00
|
|
|
toolbarbutton.chevron > .toolbarbutton-icon {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
toolbar[mode="text"] toolbarbutton.chevron > .toolbarbutton-icon {
|
|
|
|
display: -moz-box; /* display chevron icon in text mode */
|
|
|
|
}
|
|
|
|
|
|
|
|
#sidebar-throbber[loading="true"] {
|
2008-04-08 22:32:16 -07:00
|
|
|
list-style-image: url("chrome://global/skin/icons/loading_16.png");
|
2007-03-22 10:30:00 -07:00
|
|
|
-moz-margin-end: 4px;
|
|
|
|
}
|
|
|
|
|
2008-01-19 18:33:43 -08:00
|
|
|
/* Feed icon */
|
2008-12-16 23:30:37 -08:00
|
|
|
#feed-button,
|
|
|
|
#feed-button > .button-box,
|
2007-03-22 10:30:00 -07:00
|
|
|
#feed-button:hover:active > .button-box {
|
|
|
|
padding: 0px;
|
|
|
|
margin: 0px;
|
|
|
|
border: 0px;
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
#feed-button {
|
|
|
|
-moz-appearance: none;
|
|
|
|
min-width: 0px;
|
2008-04-29 12:09:28 -07:00
|
|
|
list-style-image: url("chrome://browser/skin/feeds/feed-icons-16.png");
|
|
|
|
-moz-image-region: rect(0px 16px 16px 0px);
|
|
|
|
}
|
|
|
|
|
2008-12-16 23:30:37 -08:00
|
|
|
#feed-button:hover {
|
2008-04-29 12:09:28 -07:00
|
|
|
-moz-image-region: rect(0px 32px 16px 16px);
|
|
|
|
}
|
|
|
|
|
2008-12-16 23:30:37 -08:00
|
|
|
#feed-button[open="true"],
|
|
|
|
#feed-button:hover:active {
|
2008-04-29 12:09:28 -07:00
|
|
|
-moz-image-region: rect(0px 48px 16px 32px);
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/* ::::: About Popup Blocking dialog ::::: */
|
|
|
|
#pageReportFirstTime statusbarpanel.statusbar-resizerpanel {
|
|
|
|
visibility: collapse;
|
|
|
|
}
|
|
|
|
|
|
|
|
#checkForUpdates[loading="true"] {
|
2008-04-08 22:32:16 -07:00
|
|
|
list-style-image: url("chrome://global/skin/icons/loading_16.png");
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2009-08-14 01:03:34 -07:00
|
|
|
/* Bookmarks toolbar */
|
2010-05-05 06:28:04 -07:00
|
|
|
#PlacesToolbarDropIndicator {
|
2009-08-14 01:03:34 -07:00
|
|
|
list-style-image: url(chrome://browser/skin/places/toolbarDropMarker.png);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
toolbarbutton.bookmark-item[dragover="true"][open="true"] {
|
|
|
|
-moz-appearance: none;
|
|
|
|
background: Highlight !important;
|
|
|
|
color: HighlightText !important;
|
|
|
|
}
|
|
|
|
|
2008-02-20 18:17:52 -08:00
|
|
|
/* rules for menupopup drop indicators */
|
|
|
|
.menupopup-drop-indicator-bar {
|
|
|
|
position: relative;
|
|
|
|
/* these two margins must together compensate the indicator's height */
|
|
|
|
margin-top: -1px;
|
|
|
|
margin-bottom: -1px;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2008-02-20 18:17:52 -08:00
|
|
|
.menupopup-drop-indicator {
|
|
|
|
list-style-image: none;
|
|
|
|
height: 2px;
|
|
|
|
-moz-margin-end: -4em;
|
|
|
|
background-color: Highlight;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2007-10-21 20:30:23 -07:00
|
|
|
|
|
|
|
/* ::::: Identity Indicator Styling ::::: */
|
2008-01-29 14:38:54 -08:00
|
|
|
|
2007-10-21 20:30:23 -07:00
|
|
|
/* Popup Icons */
|
|
|
|
#identity-popup-icon {
|
2008-03-04 03:32:11 -08:00
|
|
|
height: 64px;
|
|
|
|
width: 64px;
|
|
|
|
padding: 0;
|
|
|
|
list-style-image: url("chrome://browser/skin/identity.png");
|
|
|
|
-moz-image-region: rect(0px, 64px, 64px, 0px);
|
2007-10-21 20:30:23 -07:00
|
|
|
}
|
|
|
|
|
2008-03-04 03:32:11 -08:00
|
|
|
#identity-popup.verifiedDomain > #identity-popup-container > #identity-popup-icon {
|
|
|
|
-moz-image-region: rect(64px, 64px, 128px, 0px);
|
2007-10-21 20:30:23 -07:00
|
|
|
}
|
|
|
|
|
2008-03-04 03:32:11 -08:00
|
|
|
#identity-popup.verifiedIdentity > #identity-popup-container > #identity-popup-icon {
|
|
|
|
-moz-image-region: rect(128px, 64px, 192px, 0px);
|
2007-10-21 20:30:23 -07:00
|
|
|
}
|
|
|
|
|
2008-01-29 20:21:53 -08:00
|
|
|
/* Popup Body Text */
|
2009-10-23 08:28:14 -07:00
|
|
|
.identity-popup-description {
|
2008-03-04 03:32:11 -08:00
|
|
|
white-space: pre-wrap;
|
2008-04-16 12:42:42 -07:00
|
|
|
-moz-padding-start: 15px;
|
2008-03-04 03:32:11 -08:00
|
|
|
margin: 2px 0 4px;
|
2007-12-13 07:08:23 -08:00
|
|
|
}
|
|
|
|
|
2009-10-23 08:28:14 -07:00
|
|
|
.identity-popup-label {
|
2008-03-04 03:32:11 -08:00
|
|
|
white-space: pre-wrap;
|
2008-04-16 12:42:42 -07:00
|
|
|
-moz-padding-start: 15px;
|
2008-03-04 03:32:11 -08:00
|
|
|
margin: 0;
|
2007-10-21 20:30:23 -07:00
|
|
|
}
|
|
|
|
|
2008-03-04 03:32:11 -08:00
|
|
|
#identity-popup-content-host ,
|
2008-04-16 12:42:42 -07:00
|
|
|
#identity-popup-content-box.verifiedIdentity > #identity-popup-content-owner {
|
|
|
|
font-size: 1.2em;
|
2007-10-21 20:30:23 -07:00
|
|
|
}
|
|
|
|
|
2008-04-16 12:42:42 -07:00
|
|
|
#identity-popup-content-host {
|
|
|
|
margin-top: 3px;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
font-weight: bold;
|
|
|
|
max-width: 300px;
|
2008-01-29 20:21:53 -08:00
|
|
|
}
|
|
|
|
|
2008-03-04 03:32:11 -08:00
|
|
|
#identity-popup-content-owner {
|
2008-04-16 12:42:42 -07:00
|
|
|
margin-top: 4px;
|
2008-03-04 03:32:11 -08:00
|
|
|
margin-bottom: 0 !important;
|
2008-04-16 12:42:42 -07:00
|
|
|
font-weight: bold;
|
|
|
|
max-width: 300px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.verifiedDomain > #identity-popup-content-owner {
|
|
|
|
font-weight: normal;
|
2007-10-21 20:30:23 -07:00
|
|
|
}
|
|
|
|
|
2008-01-29 20:21:53 -08:00
|
|
|
#identity-popup-content-verifier {
|
|
|
|
margin: 4px 0 2px;
|
2007-12-13 07:08:23 -08:00
|
|
|
}
|
|
|
|
|
2008-03-04 03:32:11 -08:00
|
|
|
#identity-popup-content-box.verifiedIdentity > #identity-popup-encryption ,
|
|
|
|
#identity-popup-content-box.verifiedDomain > #identity-popup-encryption {
|
2008-01-29 20:21:53 -08:00
|
|
|
margin-top: 10px;
|
2009-08-03 02:31:13 -07:00
|
|
|
-moz-margin-start: -24px;
|
2007-10-21 20:30:23 -07:00
|
|
|
}
|
|
|
|
|
2008-03-04 03:32:11 -08:00
|
|
|
#identity-popup-content-box.verifiedIdentity > #identity-popup-encryption > vbox > #identity-popup-encryption-icon ,
|
|
|
|
#identity-popup-content-box.verifiedDomain > #identity-popup-encryption > vbox > #identity-popup-encryption-icon {
|
2008-02-29 19:53:59 -08:00
|
|
|
list-style-image: url("chrome://browser/skin/Secure24.png");
|
2007-10-21 20:30:23 -07:00
|
|
|
}
|
|
|
|
|
2008-04-16 12:42:42 -07:00
|
|
|
#identity-popup-more-info-button {
|
|
|
|
margin-top: 6px;
|
2009-05-03 10:13:46 -07:00
|
|
|
margin-bottom: 0;
|
|
|
|
-moz-margin-end: 0;
|
2008-04-16 12:42:42 -07:00
|
|
|
}
|
|
|
|
|
2007-10-21 20:30:23 -07:00
|
|
|
/* Popup Bounding Box */
|
2010-04-09 10:45:25 -07:00
|
|
|
#identity-popup,
|
|
|
|
#notification-popup {
|
2008-04-23 09:03:43 -07:00
|
|
|
-moz-appearance: menupopup;
|
2008-04-16 12:42:42 -07:00
|
|
|
color: MenuText;
|
|
|
|
}
|
|
|
|
|
2010-04-09 10:45:25 -07:00
|
|
|
/* Notification popup */
|
|
|
|
#notification-popup {
|
|
|
|
padding: 10px;
|
|
|
|
margin-top: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.popup-notification-icon {
|
|
|
|
width: 64px;
|
|
|
|
height: 64px;
|
|
|
|
-moz-margin-end: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.popup-notification-icon[popupid="geolocation"] {
|
2010-07-01 02:03:56 -07:00
|
|
|
list-style-image: url(chrome://browser/skin/Geolocation-64.png);
|
2010-04-09 10:45:25 -07:00
|
|
|
}
|
|
|
|
|
2010-07-01 09:23:11 -07:00
|
|
|
.popup-notification-icon[popupid="xpinstall-disabled"],
|
|
|
|
.popup-notification-icon[popupid="addon-install-blocked"],
|
|
|
|
.popup-notification-icon[popupid="addon-install-failed"],
|
|
|
|
.popup-notification-icon[popupid="addon-install-complete"] {
|
|
|
|
list-style-image: url(chrome://mozapps/skin/extensions/extensionGeneric.png);
|
|
|
|
width: 32px;
|
|
|
|
height: 32px;
|
|
|
|
}
|
|
|
|
|
2010-04-09 10:45:25 -07:00
|
|
|
/* Notification icon box */
|
|
|
|
#notification-popup-box {
|
|
|
|
margin: 0 3px;
|
|
|
|
}
|
|
|
|
|
2010-07-01 09:23:11 -07:00
|
|
|
.notification-anchor-icon {
|
2010-06-30 16:51:05 -07:00
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
2010-06-30 14:13:17 -07:00
|
|
|
}
|
|
|
|
|
2010-06-23 09:53:09 -07:00
|
|
|
.notification-anchor-icon:-moz-focusring {
|
|
|
|
outline: 1px dotted -moz-DialogText;
|
|
|
|
outline-offset: -3px;
|
|
|
|
}
|
|
|
|
|
2010-07-01 09:23:11 -07:00
|
|
|
#geo-notification-icon {
|
|
|
|
list-style-image: url(chrome://browser/skin/Geolocation-16.png);
|
|
|
|
}
|
|
|
|
|
|
|
|
#addons-notification-icon {
|
|
|
|
list-style-image: url(chrome://mozapps/skin/extensions/extensionGeneric-16.png);
|
|
|
|
}
|
|
|
|
|
2007-10-21 20:30:23 -07:00
|
|
|
#identity-popup-container {
|
2008-03-04 03:32:11 -08:00
|
|
|
min-width: 280px;
|
2009-05-03 10:13:46 -07:00
|
|
|
padding: 9px;
|
2007-10-21 20:30:23 -07:00
|
|
|
}
|
2008-01-26 21:08:46 -08:00
|
|
|
|
|
|
|
#download-monitor {
|
2010-02-12 01:09:56 -08:00
|
|
|
list-style-image: url("chrome://browser/skin/Toolbar.png");
|
2010-02-16 12:42:21 -08:00
|
|
|
-moz-image-region: rect(0, 108px, 18px, 90px);
|
2008-01-26 21:08:46 -08:00
|
|
|
}
|
2008-04-08 17:39:18 -07:00
|
|
|
|
2010-06-24 10:08:43 -07:00
|
|
|
/* Bookmarks roots menu-items */
|
|
|
|
#bookmarksToolbarFolderMenu,
|
|
|
|
#BMB_bookmarksToolbarFolderMenu {
|
2008-04-11 08:53:58 -07:00
|
|
|
list-style-image: url("chrome://browser/skin/places/bookmarksToolbar.png");
|
|
|
|
-moz-image-region: auto;
|
2008-04-08 17:39:18 -07:00
|
|
|
}
|
2008-04-28 02:59:30 -07:00
|
|
|
|
2010-06-24 10:08:43 -07:00
|
|
|
#BMB_unsortedBookmarksFolderMenu {
|
|
|
|
list-style-image: url("chrome://browser/skin/places/unsortedBookmarks.png");
|
|
|
|
-moz-image-region: auto;
|
|
|
|
}
|
|
|
|
|
2008-07-15 09:11:00 -07:00
|
|
|
/* ::::: Keyboard UI Panel ::::: */
|
2009-07-20 21:25:59 -07:00
|
|
|
|
2008-07-15 09:11:00 -07:00
|
|
|
.KUI-panel {
|
|
|
|
-moz-appearance: none;
|
2009-07-20 21:25:59 -07:00
|
|
|
background: rgba(27%,27%,27%,.9) url(KUI-background.png) repeat-x;
|
2008-07-15 09:11:00 -07:00
|
|
|
color: white;
|
2009-07-26 00:53:04 -07:00
|
|
|
border-style: none;
|
2009-07-20 21:25:59 -07:00
|
|
|
-moz-border-radius: 20px;
|
2008-07-15 09:11:00 -07:00
|
|
|
}
|
|
|
|
|
2009-07-20 21:25:59 -07:00
|
|
|
.KUI-panel[level="top"] {
|
|
|
|
background-color: rgba(27%,27%,27%,.65);
|
2008-07-15 09:11:00 -07:00
|
|
|
}
|
|
|
|
|
2009-07-20 21:25:59 -07:00
|
|
|
.KUI-panel-closebutton {
|
|
|
|
list-style-image: url(KUI-close.png);
|
|
|
|
-moz-appearance: none;
|
|
|
|
border: none;
|
|
|
|
padding: 0;
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.KUI-panel-closebutton:not(:hover) {
|
|
|
|
opacity: .6;
|
2008-11-04 23:38:13 -08:00
|
|
|
}
|
|
|
|
|
2009-07-20 21:25:59 -07:00
|
|
|
.KUI-panel-closebutton > .toolbarbutton-icon {
|
|
|
|
margin: 0;
|
2008-11-04 00:19:55 -08:00
|
|
|
}
|
|
|
|
|
2009-07-20 21:25:59 -07:00
|
|
|
/* ::::: Ctrl-Tab and All Tabs Panels ::::: */
|
|
|
|
|
|
|
|
/* Ctrl-Tab */
|
|
|
|
|
|
|
|
#ctrlTab-panel {
|
2009-07-26 00:53:04 -07:00
|
|
|
padding: 20px 10px 10px;
|
2008-11-04 23:38:13 -08:00
|
|
|
font-weight: bold;
|
2009-07-20 21:25:59 -07:00
|
|
|
text-shadow: 0 0 1px rgb(27%,27%,27%), 0 0 3px rgb(27%,27%,27%);
|
|
|
|
}
|
|
|
|
|
2010-03-22 07:11:42 -07:00
|
|
|
.ctrlTab-favicon[src] {
|
|
|
|
background-color: white;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
padding: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ctrlTab-preview-inner > .tabPreview-canvas {
|
|
|
|
-moz-box-shadow: 1px 1px 3px rgb(12%,12%,12%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.ctrlTab-preview:not(#ctrlTab-showAll) > * > .ctrlTab-preview-inner > .tabPreview-canvas {
|
2009-07-20 21:25:59 -07:00
|
|
|
margin-bottom: 2px;
|
|
|
|
}
|
|
|
|
|
2010-03-22 07:11:42 -07:00
|
|
|
.ctrlTab-preview-inner {
|
2009-07-26 00:53:04 -07:00
|
|
|
padding-bottom: 10px;
|
2009-07-20 21:25:59 -07:00
|
|
|
}
|
|
|
|
|
2010-03-22 07:11:42 -07:00
|
|
|
#ctrlTab-showAll:not(:focus) > * > .ctrlTab-preview-inner {
|
2009-07-26 00:53:04 -07:00
|
|
|
padding: 10px;
|
|
|
|
background-color: rgba(255,255,255,.2);
|
|
|
|
-moz-border-radius: .5em;
|
2009-07-20 21:25:59 -07:00
|
|
|
}
|
|
|
|
|
2010-03-22 07:11:42 -07:00
|
|
|
.ctrlTab-preview:focus > * > .ctrlTab-preview-inner {
|
2009-07-26 00:53:04 -07:00
|
|
|
color: white;
|
|
|
|
background-color: rgba(0,0,0,.6);
|
2009-07-20 21:25:59 -07:00
|
|
|
text-shadow: none;
|
2009-07-26 00:53:04 -07:00
|
|
|
padding: 8px;
|
|
|
|
border: 2px solid white;
|
|
|
|
-moz-border-radius: .5em;
|
|
|
|
}
|
|
|
|
|
2010-03-22 07:11:42 -07:00
|
|
|
.ctrlTab-preview:not(#ctrlTab-showAll):focus > * > .ctrlTab-preview-inner {
|
2009-07-26 00:53:04 -07:00
|
|
|
margin: -10px -10px 0;
|
2009-07-20 21:25:59 -07:00
|
|
|
}
|
|
|
|
|
2009-07-26 00:53:04 -07:00
|
|
|
#ctrlTab-showAll {
|
|
|
|
margin-top: .5em;
|
2009-07-20 21:25:59 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* All Tabs */
|
|
|
|
|
|
|
|
#allTabs-panel {
|
2010-03-22 07:11:42 -07:00
|
|
|
padding-bottom: 10px;
|
2009-07-20 21:25:59 -07:00
|
|
|
-moz-appearance: none;
|
|
|
|
border: none;
|
2010-03-22 07:11:42 -07:00
|
|
|
background: -moz-dialog;
|
|
|
|
color: -moz-dialogText;
|
2009-07-20 21:25:59 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#allTabs-meta {
|
2010-03-22 07:11:42 -07:00
|
|
|
margin: 10px;
|
2009-07-20 21:25:59 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#allTabs-filter {
|
|
|
|
-moz-margin-start: 24px;
|
|
|
|
-moz-margin-end: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#allTabs-tab-close-button > .toolbarbutton-icon {
|
|
|
|
margin: 0;
|
2008-07-15 09:11:00 -07:00
|
|
|
}
|
|
|
|
|
2010-06-11 05:17:12 -07:00
|
|
|
.allTabs-favicon[src] {
|
|
|
|
background-color: -moz-dialog;
|
|
|
|
width: 22px;
|
|
|
|
height: 22px;
|
|
|
|
padding-top: 1px;
|
|
|
|
padding-bottom: 5px;
|
|
|
|
-moz-padding-start: 1px;
|
|
|
|
-moz-padding-end: 5px;
|
|
|
|
margin-top: -2px;
|
|
|
|
-moz-margin-start: -2px;
|
|
|
|
-moz-border-radius-bottomright: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.allTabs-favicon[src]:-moz-locale-dir(rtl) {
|
|
|
|
-moz-border-radius-bottomright: 0;
|
|
|
|
-moz-border-radius-bottomleft: 4px;
|
2008-07-15 09:11:00 -07:00
|
|
|
}
|
|
|
|
|
2010-03-22 07:11:42 -07:00
|
|
|
.allTabs-preview-inner > .tabPreview-canvas {
|
|
|
|
background-color: rgb(60%,60%,60%);
|
|
|
|
-moz-box-shadow: 0 0 2px ThreeDShadow;
|
|
|
|
}
|
|
|
|
|
|
|
|
.allTabs-preview:not(:hover):not([closebuttonhover]) > html|canvas {
|
|
|
|
opacity: .8;
|
2008-07-15 09:11:00 -07:00
|
|
|
}
|
|
|
|
|
2010-03-22 07:11:42 -07:00
|
|
|
.allTabs-preview:focus > * > .allTabs-preview-inner {
|
|
|
|
outline: 1px dotted -moz-dialogText;
|
2008-07-15 09:11:00 -07:00
|
|
|
}
|
2010-07-16 07:12:39 -07:00
|
|
|
|
|
|
|
/* Inspector / Highlighter */
|
|
|
|
|
|
|
|
#highlighter-panel {
|
|
|
|
-moz-appearance: none;
|
|
|
|
-moz-window-shadow: none;
|
2010-08-18 16:54:06 -07:00
|
|
|
background: -moz-linear-gradient(top -1deg, #ffdd88, #ffeeaa);
|
|
|
|
border: none;
|
|
|
|
opacity: 0.35;
|
2010-07-16 07:12:39 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
listitem.style-selector {
|
|
|
|
background-color: DarkGray;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
listitem.style-section {
|
|
|
|
background-color: LightGray;
|
|
|
|
color: black;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
panel[dimmed="true"] {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|