зеркало из https://github.com/mozilla/pjs.git
92 строки
2.7 KiB
CSS
92 строки
2.7 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):
|
|
*
|
|
*/
|
|
|
|
/* ==== toolbar.css =====================================================
|
|
== Styles for toolbars that are used throughout the Communicator suite.
|
|
====================================================================== */
|
|
|
|
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
|
|
|
|
/* ::::: toolbar-primary ::::: */
|
|
|
|
.toolbar-primary {
|
|
-moz-binding: url("chrome://communicator/skin/toolbar/toolbarBindings.xml#toolbar-primary");
|
|
min-height: 45px;
|
|
background-color: #B1BDC9;
|
|
}
|
|
|
|
.toolbar-primary-holder {
|
|
background: url("chrome://communicator/skin/toolbar/prtb-bg-line.gif") repeat-x top;
|
|
border-top: none;
|
|
border-right: 1px solid #95A0AD;
|
|
border-bottom: 1px solid #95A0AD;
|
|
border-left: none;
|
|
}
|
|
|
|
.toolbar-primary-icon {
|
|
width: 77px;
|
|
height: 50px;
|
|
background-repeat: no-repeat;
|
|
background-position: top;
|
|
}
|
|
|
|
/* ::::: toolbargrippy ::::: */
|
|
|
|
.toolbar-primary-grippy {
|
|
width: 13px;
|
|
background: url("chrome://communicator/skin/toolbar/prtb-grip-mid.gif") repeat-y;
|
|
}
|
|
|
|
.toolbar-primary-grippy > .toolbargrippy-top {
|
|
height: 34px;
|
|
background: url("chrome://communicator/skin/toolbar/prtb-grip-top.gif") no-repeat top;
|
|
}
|
|
|
|
.toolbar-primary-grippy > .toolbargrippy-btm {
|
|
height: 9px;
|
|
background: url("chrome://communicator/skin/toolbar/prtb-grip-btm.gif") no-repeat bottom;
|
|
}
|
|
|
|
.toolbar-primary-grippy:hover:active {
|
|
background-image: url("chrome://communicator/skin/toolbar/prtb-grip-mid-act.gif");
|
|
}
|
|
|
|
.toolbar-primary-grippy:hover:active > .toolbargrippy-top {
|
|
background-image: url("chrome://communicator/skin/toolbar/prtb-grip-top-act.gif");
|
|
}
|
|
|
|
.toolbar-primary-grippy:hover:active > .toolbargrippy-btm {
|
|
background-image: url("chrome://communicator/skin/toolbar/prtb-grip-btm-act.gif");
|
|
}
|
|
|
|
/* ::::: toolbar-primary separator ::::: */
|
|
|
|
.toolbarseparator-primary {
|
|
margin: 0px;
|
|
padding: 0px;
|
|
border: none;
|
|
width: 18px;
|
|
background: none;
|
|
}
|
|
|