mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 04:27:37 +00:00
d66fb24f4b
r=walk84@usa.net, sr=shaver
129 lines
3.1 KiB
CSS
129 lines
3.1 KiB
CSS
/**
|
|
* toolbar
|
|
**/
|
|
|
|
toolbar
|
|
{
|
|
border-bottom : 1px solid #000000;
|
|
background-color : #5B7693;
|
|
/*
|
|
* DON'T DELETE. Removes disappearance of scrollbars in content
|
|
* pane when window is made smaller.
|
|
* Talk to evaughan@netscape.com for details.
|
|
*/
|
|
min-width : 1px;
|
|
color : #FFFFFF;
|
|
}
|
|
|
|
toolbar > .toolbar-holder
|
|
{
|
|
border-left : 1px solid #92ABC9;
|
|
border-top : 1px solid #92ABC9;
|
|
}
|
|
|
|
/**
|
|
* toolbargrippy
|
|
**/
|
|
|
|
toolbargrippy
|
|
{
|
|
-moz-binding : url("chrome://global/skin/globalBindings.xml#toolbargrippy");
|
|
background-image : url("chrome://global/skin/tb-grippy-bg.gif");
|
|
width : 12px;
|
|
margin : 0px;
|
|
}
|
|
|
|
.toolbargrippy-top
|
|
{
|
|
background-image : url("chrome://global/skin/tb-grippy-top.gif");
|
|
height : 3px;
|
|
}
|
|
|
|
.toolbargrippy-btm
|
|
{
|
|
background-image : url("chrome://global/skin/tb-grippy-btm.gif");
|
|
height : 8px;
|
|
}
|
|
|
|
toolbargrippy:hover:active
|
|
{
|
|
background-image : url("chrome://global/skin/tb-grippy-bg-active.gif");
|
|
}
|
|
|
|
toolbargrippy:hover:active > .toolbargrippy-top
|
|
{
|
|
background-image : url("chrome://global/skin/tb-grippy-top-active.gif");
|
|
}
|
|
|
|
toolbargrippy:hover:active > .toolbargrippy-btm
|
|
{
|
|
background-image : url("chrome://global/skin/tb-grippy-btm-active.gif");
|
|
}
|
|
|
|
/**
|
|
* collapsed tray and grippies
|
|
**/
|
|
|
|
.collapsed-tray-holder
|
|
{
|
|
background-color : #5B7693;
|
|
height : 11px;
|
|
border-bottom : 1px solid #000000;
|
|
}
|
|
|
|
toolbargrippy[tbgrippy-collapsed="true"]
|
|
{
|
|
-moz-binding : url("chrome://global/skin/globalBindings.xml#toolbargrippy-collapsed");
|
|
background-image : none;
|
|
width : 200px;
|
|
}
|
|
|
|
toolbargrippy[tbgrippy-collapsed="true"] > .toolbargrippy-collapsed-left
|
|
{
|
|
background-image : url("chrome://global/skin/tb-grippy-collapsed.gif");
|
|
width : 12px;
|
|
}
|
|
|
|
toolbargrippy[tbgrippy-collapsed="true"] > .toolbargrippy-collapsed-context
|
|
{
|
|
background-color : #5B7693;
|
|
border : 1px outset #5B7693;
|
|
}
|
|
|
|
toolbargrippy[tbgrippy-collapsed="true"]:hover:active > .toolbargrippy-collapsed-left
|
|
{
|
|
background-image : url("chrome://global/skin/tb-grippy-collapsed-active.gif");
|
|
}
|
|
|
|
toolbargrippy[tbgrippy-collapsed="true"]:hover:active > .toolbargrippy-collapsed-context
|
|
{
|
|
border-style :inset;
|
|
}
|
|
|
|
toolbarseparator
|
|
{
|
|
width : 1px;
|
|
border-left : 1px solid #425973;
|
|
border-right : 1px solid #92ABC9;
|
|
margin : 2px 0.2em 2px 0.2em;
|
|
}
|
|
|
|
/* ::::: special looks for widgets in toolbars ::::: */
|
|
|
|
tree.toolbar,
|
|
textfield.toolbar {
|
|
border-top: 1px solid #536B86;
|
|
border-right: 1px solid #94A6B9;
|
|
border-bottom: 1px solid #94A6B9;
|
|
border-left: 1px solid #536B86;
|
|
}
|
|
|
|
tree.toolbar > .tree-container-treerows,
|
|
textfield.toolbar > .textfield-internal-box {
|
|
border-color: #364556;
|
|
}
|
|
|
|
textfield.toolbar[focused="true"] {
|
|
border: 1px solid #2D3B49;
|
|
}
|