/*******************************************************************************
File: menu-v3.css
Date: Nov 24 2008
Author: Thayer Fox
Description: Replaces toolbar page load throbber with custom rotor image.  Also
             replaces throbber on tabs.  Loaded for >FF2.5 and <FF3.7
Revision History: rev1.11.24.08 - added FF3 support.
********************************************************************************/

@import url("chrome://global/skin/");

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");

/* Toolbar throbber */
toolbar #navigator-throbber { list-style-image: url("static16.png") !important; }
toolbar #navigator-throbber[busy="true"] { list-style-image: url("throbber16.png") !important; opacity: 1 !important}
toolbar #navigator-throbber { min-width: 16px !important; min-height: 16px !important; }

toolbar[iconsize="small"] #navigator-throbber { list-style-image: url("static20.png") !important; }
toolbar[iconsize="small"] #navigator-throbber[busy="true"] { list-style-image: url("throbber20.png") !important; opacity: 1 !important }
toolbar[iconsize="small"] #navigator-throbber { min-width: 20px !important; min-height: 20px !important; }

toolbar[iconsize="large"] #navigator-throbber { list-style-image: url("static24.png") !important; }
toolbar[iconsize="large"] #navigator-throbber[busy="true"] { list-style-image: url("throbber24.png") !important; opacity: 1 !important}
toolbar[iconsize="large"] #navigator-throbber { min-width: 24px !important; min-height: 24px !important; }

/* Tab throbber FF2 */
#content tab[busy] .tab-icon { 
  list-style-image: url("throbber16.png") !important; opacity: 0.6 !important
}
/* Tab throbber FF3 */
#content tab[busy] .tab-icon-image { list-style-image: url("throbber16.png") !important; opacity: 0.6 !important}

