mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 08:35:26 +00:00
67 lines
2.4 KiB
CSS
67 lines
2.4 KiB
CSS
/*
|
|
* The contents of this file are subject to the Netscape 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/NPL/
|
|
*
|
|
* 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 Communicator client code, released
|
|
* March 31, 1998.
|
|
*
|
|
* The Initial Developer of the Original Code is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1998-1999 Netscape Communications Corporation. All
|
|
* Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
*
|
|
*/
|
|
|
|
/* ==== brand.css ===========================================================
|
|
== Styles related to branding in the Communicator suite.
|
|
========================================================================== */
|
|
|
|
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
|
|
|
|
#navigator-throbber {
|
|
-moz-binding: url("chrome://global/content/bindings/button.xml#button-image");
|
|
-moz-user-focus: ignore;
|
|
-moz-box-align: center;
|
|
-moz-box-pack: center;
|
|
margin: 1px 2px 1px 10px;
|
|
border: 2px solid;
|
|
-moz-border-top-colors: ThreeDDarkShadow ThreeDHighlight;
|
|
-moz-border-right-colors: ThreeDDarkShadow ThreeDShadow;
|
|
-moz-border-bottom-colors: ThreeDDarkShadow ThreeDShadow;
|
|
-moz-border-left-colors: ThreeDDarkShadow ThreeDHighlight;
|
|
-moz-border-radius: 0;
|
|
padding: 1px;
|
|
min-width: 0;
|
|
list-style-image: url("chrome://communicator/skin/brand/throbber-single.gif");
|
|
-moz-appearance:none !important;
|
|
}
|
|
|
|
#navigator-throbber:hover:active {
|
|
-moz-border-top-colors: ThreeDDarkShadow ThreeDShadow;
|
|
-moz-border-right-colors: ThreeDDarkShadow ThreeDHighlight;
|
|
-moz-border-bottom-colors: ThreeDDarkShadow ThreeDHighlight;
|
|
-moz-border-left-colors: ThreeDDarkShadow ThreeDShadow;
|
|
}
|
|
|
|
#navigator-throbber[busy="true"] {
|
|
list-style-image: url("chrome://communicator/skin/brand/throbber-anim.gif");
|
|
}
|
|
|
|
#navigator-throbber[toolbarmode="small"] {
|
|
margin: 0 5px 0 0;
|
|
list-style-image: url("chrome://communicator/skin/brand/throbber16-single.gif");
|
|
}
|
|
|
|
#navigator-throbber[toolbarmode="small"][busy="true"] {
|
|
list-style-image: url("chrome://communicator/skin/brand/throbber16-anim.gif");
|
|
}
|