mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 20:47:44 +00:00
354 lines
9.4 KiB
CSS
354 lines
9.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-2001 Netscape Communications Corporation. All
|
|
* Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
* Joe Hewitt (hewitt@netscape.com)
|
|
*/
|
|
|
|
/* ===== tabbox.css =================================================
|
|
== Styles used by XUL tab-related elements.
|
|
======================================================================= */
|
|
|
|
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
|
|
|
|
/* ::::: tabs ::::: */
|
|
|
|
tabs {
|
|
padding: 0px;
|
|
}
|
|
|
|
.tabs-left,
|
|
.tabs-right {
|
|
background: url("chrome://global/skin/tabcontrol/tabs-mid.gif") repeat-x bottom;
|
|
}
|
|
|
|
.tabs-left-cap {
|
|
background: url("chrome://global/skin/tabcontrol/tabs-lft.gif") no-repeat bottom;
|
|
width: 2px;
|
|
}
|
|
|
|
.tabs-right-cap {
|
|
background: url("chrome://global/skin/tabcontrol/tabs-rit.gif") no-repeat bottom;
|
|
width: 2px;
|
|
}
|
|
|
|
/* ::::: tabpanels ::::: */
|
|
|
|
tabpanels {
|
|
border-left: 1px solid #313948;
|
|
border-right: 1px solid #313948;
|
|
border-bottom: 1px solid #313948;
|
|
border-top: none;
|
|
padding: 5px;
|
|
background-color: #C7D0D9;
|
|
}
|
|
|
|
/* ::::: tab ::::: */
|
|
|
|
tab {
|
|
margin: 0px;
|
|
padding: 0px;
|
|
color: #000000;
|
|
font: menu;
|
|
}
|
|
|
|
.tab-left {
|
|
width: 5px;
|
|
}
|
|
|
|
.tab-left-top {
|
|
background: url("chrome://global/skin/tabcontrol/tab-usel-lft-top.gif") no-repeat;
|
|
height: 15px;
|
|
}
|
|
|
|
.tab-left-mid {
|
|
background: url("chrome://global/skin/tabcontrol/tab-usel-lft-mid.gif") repeat-y;
|
|
}
|
|
|
|
.tab-left-btm {
|
|
background: url("chrome://global/skin/tabcontrol/tab-usel-lft-btm.gif") no-repeat;
|
|
height: 2px;
|
|
}
|
|
|
|
.tab-mid {
|
|
background: url("chrome://global/skin/tabcontrol/tab-usel-mid-top.gif") repeat-x top;
|
|
background-color: #8B9AAD;
|
|
}
|
|
|
|
.tab-mid-mid {
|
|
padding: 1px 0px 1px 0px;
|
|
}
|
|
|
|
.tab-mid-btm {
|
|
background: url("chrome://global/skin/tabcontrol/tab-usel-mid-btm.gif") repeat-x;
|
|
height: 2px;
|
|
}
|
|
|
|
.tab-right {
|
|
width: 5px;
|
|
}
|
|
|
|
.tab-right-top {
|
|
background: url("chrome://global/skin/tabcontrol/tab-usel-rit-top.gif") no-repeat;
|
|
height: 14px;
|
|
}
|
|
|
|
.tab-right-mid {
|
|
background: url("chrome://global/skin/tabcontrol/tab-usel-rit-mid.gif") repeat-y;
|
|
}
|
|
|
|
.tab-right-btm {
|
|
background: url("chrome://global/skin/tabcontrol/tab-usel-rit-btm.gif") no-repeat;
|
|
height: 2px;
|
|
}
|
|
|
|
.tab-text {
|
|
margin: 0px !important;
|
|
padding: 3px 0px 3px 0px;
|
|
}
|
|
|
|
/* ..... active state ..... */
|
|
|
|
tab:hover:active {
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
tab:hover:active > .tab-left > .tab-left-top {
|
|
background-image: url("chrome://global/skin/tabcontrol/tab-act-lft-top.gif");
|
|
}
|
|
|
|
tab:hover:active > .tab-left > .tab-left-mid {
|
|
background-image: url("chrome://global/skin/tabcontrol/tab-act-lft-mid.gif");
|
|
}
|
|
|
|
tab:hover:active > .tab-mid {
|
|
margin-top: 1px;
|
|
background-image: url("chrome://global/skin/tabcontrol/tab-act-mid-top.gif");
|
|
background-color: #8B9AAD;
|
|
}
|
|
|
|
tab:hover:active > .tab-mid > .tab-mid-mid {
|
|
padding: 1px 0px 0px 0px;
|
|
}
|
|
|
|
tab:hover:active > .tab-right > .tab-right-top {
|
|
background-image: url("chrome://global/skin/tabcontrol/tab-act-rit-top.gif");
|
|
}
|
|
|
|
tab:hover:active > .tab-right > .tab-right-mid {
|
|
background-image: url("chrome://global/skin/tabcontrol/tab-act-rit-mid.gif");
|
|
}
|
|
|
|
/* ..... selected state ..... */
|
|
|
|
tab[selected="true"], tab:hover:active[selected="true"],
|
|
tab[selected="1"], tab:hover:active[selected="1"] {
|
|
color: #000000;
|
|
}
|
|
|
|
.tab-left-top[selected="true"],
|
|
tab:hover:active[selected="true"] > .tab-left > .tab-left-top {
|
|
background-image: url("chrome://global/skin/tabcontrol/tab-sel-lft-top.gif");
|
|
}
|
|
|
|
.tab-left-mid[selected="true"],
|
|
tab:hover:active[selected="true"] > .tab-left > .tab-left-mid {
|
|
background-image: url("chrome://global/skin/tabcontrol/tab-sel-lft-mid.gif");
|
|
}
|
|
|
|
.tab-left-btm[selected="true"],
|
|
tab:hover:active[selected="true"] > .tab-left > .tab-left-btm {
|
|
background-image: url("chrome://global/skin/tabcontrol/tab-sel-lft-btm.gif");
|
|
}
|
|
|
|
.tab-mid[selected="true"],
|
|
tab:hover:active[selected="true"] > .tab-mid {
|
|
margin-top: 0px;
|
|
background-image: url("chrome://global/skin/tabcontrol/tab-sel-mid-top.gif");
|
|
background-color: #C7D0D9;
|
|
}
|
|
|
|
.tab-mid-mid[selected="true"],
|
|
tab:hover:active[selected="true"] > .tab-mid > .tab-mid-mid {
|
|
padding: 1px 0px 1px 0px;
|
|
}
|
|
|
|
|
|
.tab-mid-btm[selected="true"],
|
|
tab:hover:active[selected="true"] > .tab-mid > .tab-mid-btm {
|
|
background-image: none;
|
|
background-color: #C7D0D9;
|
|
}
|
|
|
|
.tab-right-top[selected="true"],
|
|
tab:hover:active[selected="true"] > .tab-right > .tab-right-top {
|
|
background-image: url("chrome://global/skin/tabcontrol/tab-sel-rit-top.gif");
|
|
}
|
|
|
|
.tab-right-mid[selected="true"],
|
|
tab:hover:active[selected="true"] > .tab-right > .tab-right-mid {
|
|
background-image: url("chrome://global/skin/tabcontrol/tab-sel-rit-mid.gif");
|
|
}
|
|
|
|
.tab-right-btm[selected="true"],
|
|
tab:hover:active[selected="true"] > .tab-right > .tab-right-btm {
|
|
background-image: url("chrome://global/skin/tabcontrol/tab-sel-rit-btm.gif");
|
|
}
|
|
|
|
/* ::::: tab-bottom ::::::::::
|
|
:: Tabs that are attached to the bottom of a panel, but not necessarily
|
|
:: a tabpanels.
|
|
::::: */
|
|
|
|
.tab-bottom {
|
|
min-height: 21px;
|
|
}
|
|
|
|
.tab-bottom > .tab-left > .tab-left {
|
|
width: 5px;
|
|
}
|
|
|
|
.tab-bottom > .tab-left > .tab-left-top {
|
|
background-image: url("chrome://global/skin/tabcontrol/tab-bot-usel-lft-btm.gif");
|
|
height: 2px;
|
|
}
|
|
|
|
.tab-bottom > .tab-left > .tab-left-btm {
|
|
background-image: url("chrome://global/skin/tabcontrol/tab-bot-usel-lft-top.gif");
|
|
height: 15px;
|
|
}
|
|
|
|
.tab-bottom > .tab-mid {
|
|
background: url("chrome://global/skin/tabcontrol/tab-bot-usel-mid-top.gif") repeat-x bottom;
|
|
background-color: #8B9AAD;
|
|
}
|
|
|
|
.tab-bottom > .tab-mid > .tab-mid-top {
|
|
background: url("chrome://global/skin/tabcontrol/tab-bot-usel-mid-btm.gif") repeat-x;
|
|
height: 2px;
|
|
}
|
|
|
|
.tab-bottom > .tab-mid > .tab-mid-mid {
|
|
padding: 1px 0px 1px 0px;
|
|
}
|
|
|
|
.tab-bottom > .tab-mid > .tab-mid-btm {
|
|
background: none;
|
|
height: none;
|
|
}
|
|
|
|
.tab-bottom > .tab-right {
|
|
width: 5px;
|
|
}
|
|
|
|
.tab-bottom > .tab-right > .tab-right-top {
|
|
background: url("chrome://global/skin/tabcontrol/tab-bot-usel-rit-btm.gif") no-repeat;
|
|
height: 2px;
|
|
}
|
|
|
|
.tab-bottom > .tab-right > .tab-right-btm {
|
|
background: url("chrome://global/skin/tabcontrol/tab-bot-usel-rit-top.gif") no-repeat;
|
|
height: 14px;
|
|
}
|
|
|
|
/* ..... active state ..... */
|
|
|
|
.tab-bottom:hover:active > .tab-left > .tab-left-top {
|
|
background-image: url("chrome://global/skin/tabcontrol/tab-bot-usel-lft-btm.gif");
|
|
}
|
|
|
|
.tab-bottom:hover:active > .tab-left > .tab-left-btm {
|
|
background-image: url("chrome://global/skin/tabcontrol/tab-bot-act-lft-top.gif");
|
|
}
|
|
|
|
.tab-bottom:hover:active > .tab-mid {
|
|
margin: 0px 0px 1px 0px;
|
|
background-image: url("chrome://global/skin/tabcontrol/tab-bot-act-mid-top.gif");
|
|
}
|
|
|
|
.tab-bottom:hover:active > .tab-mid > .tab-mid-mid {
|
|
padding: 0px 0px 1px 0px;
|
|
}
|
|
|
|
.tab-bottom:hover:active > .tab-right > .tab-right-top {
|
|
background-image: url("chrome://global/skin/tabcontrol/tab-bot-usel-rit-btm.gif");
|
|
}
|
|
|
|
.tab-bottom:hover:active > .tab-right > .tab-right-btm {
|
|
background-image: url("chrome://global/skin/tabcontrol/tab-bot-act-rit-top.gif");
|
|
}
|
|
|
|
/* ..... selected state ..... */
|
|
|
|
.tab-bottom[selected="true"] > .tab-left > .tab-left-top,
|
|
.tab-bottom:hover:active[selected="true"] > .tab-left > .tab-left-top {
|
|
background-image: url("chrome://global/skin/tabcontrol/tab-bot-sel-lft-btm.gif");
|
|
}
|
|
|
|
.tab-bottom[selected="true"] > .tab-left > .tab-left-btm,
|
|
.tab-bottom:hover:active[selected="true"] > .tab-left > .tab-left-btm {
|
|
background-image: url("chrome://global/skin/tabcontrol/tab-bot-sel-lft-top.gif");
|
|
}
|
|
|
|
.tab-bottom[selected="true"] > .tab-mid,
|
|
.tab-bottom:hover:active[selected="true"] > .tab-mid {
|
|
margin: 0px;
|
|
background-image: url("chrome://global/skin/tabcontrol/tab-bot-sel-mid-top.gif");
|
|
background-color: #C7D0D9;
|
|
}
|
|
|
|
.tab-bottom[selected="true"] > .tab-mid > .tab-mid-top,
|
|
.tab-bottom:hover:active[selected="true"] > .tab-mid > .tab-mid-top {
|
|
background-image: none;
|
|
background-color: #C7D0D9;
|
|
}
|
|
|
|
.tab-bottom[selected="true"] > .tab-mid > .tab-mid-mid,
|
|
.tab-bottom:hover:active[selected="true"] > .tab-mid > .tab-mid-mid {
|
|
padding: 1px 0px 1px 0px;
|
|
}
|
|
|
|
.tab-bottom[selected="true"] > .tab-mid > .tab-mid-btm,
|
|
.tab-bottom:hover:active[selected="true"] > .tab-mid > .tab-mid-btm {
|
|
background: none;
|
|
}
|
|
|
|
.tab-bottom[selected="true"] > .tab-right > .tab-right-top,
|
|
.tab-bottom:hover:active[selected="true"] > .tab-right > .tab-right-top {
|
|
background-image: url("chrome://global/skin/tabcontrol/tab-bot-sel-rit-btm.gif");
|
|
}
|
|
|
|
.tab-bottom[selected="true"] > .tab-right > .tab-right-btm,
|
|
.tab-bottom:hover:active[selected="true"] > .tab-right > .tab-right-btm {
|
|
background-image: url("chrome://global/skin/tabcontrol/tab-bot-sel-rit-top.gif");
|
|
}
|
|
|
|
/* ::::: tabs-bottom ::::: */
|
|
|
|
.tabs-bottom > .tabs-left,
|
|
.tabs-bottom > .tabs-right {
|
|
background: url("chrome://global/skin/tabcontrol/tabs-bot-mid.gif") repeat-x top;
|
|
}
|
|
|
|
.tabs-bottom > .tabs-right-cap,
|
|
.tabs-bottom > .tabs-left-cap {
|
|
background: none;
|
|
}
|
|
|