gecko-dev/themes/modern/global/scrollbars.css
rods%netscape.com ee07c55f61 Make the UI scrollbars now scale in PrintPreview. We are having to do all this rather bizarre
stuff because the scrollbars in the document share all the same code and style contexts of the UI scrollbars
Bug 120616 r=dcone sr=attinasi
2002-04-23 12:05:43 +00:00

220 lines
6.8 KiB
CSS

/* ***** BEGIN LICENSE BLOCK *****
* Version: NPL 1.1/GPL 2.0/LGPL 2.1
*
* 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.org code.
*
* The Initial Developer of the Original Code is
* Netscape Communications Corporation.
* Portions created by the Initial Developer are Copyright (C) 1998
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
* Joe Hewitt <hewitt@netscape.com>
*
* Alternatively, the contents of this file may be used under the terms of
* either the GNU General Public License Version 2 or later (the "GPL"), or
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the NPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the NPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */
/* ===== scrollbars.css =================================================
== Styles used by XUL scrollbar-related elements.
======================================================================= */
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
@namespace html url("http://www.w3.org/1999/xhtml"); /* namespace for HTML elements */
/* ::::: scrollbar ::::: */
scrollbar {
-moz-binding: url("chrome://global/content/bindings/scrollbar.xml#scrollbar");
cursor: default;
}
/* ::::: slider ::::: */
slider {
height: 15px;
background: url("chrome://global/skin/scrollbar/slider-hrz.gif") repeat-x;
}
slider[orient="vertical"] {
width: 15px;
background: url("chrome://global/skin/scrollbar/slider-vrt.gif") repeat-y;
}
/* ::::: borders for thumb and buttons ::::: */
thumb,
scrollbarbutton {
border: 3px solid;
-moz-border-top-colors: #000000 #E4EBF2 #C3CAD2;
-moz-border-right-colors: #000000 #8F9DAD #A4AFBB;
-moz-border-bottom-colors: #000000 #8F9DAD #A4AFBB;
-moz-border-left-colors: #000000 #E4EBF2 #C3CAD2;
background: #B1BBC5 50% 50% no-repeat;
}
thumb:active {
background-color: #C2CCD6;
-moz-border-top-colors: #111111 #F5FCF3 #D4DBE3;
-moz-border-right-colors: #111111 #9FAEBE #B5BFCC;
-moz-border-bottom-colors: #111111 #9FAEBE #B5BFCC;
-moz-border-left-colors: #111111 #D5FCF3 #D4DBE3;
}
/* ::::: thumb (horizontal) ::::: */
thumb {
min-height: 18px;
background-image: url("chrome://global/skin/scrollbar/thumb-vrt-grip.gif");
}
thumb[orient="horizontal"] {
min-width: 18px;
background-image: url("chrome://global/skin/scrollbar/thumb-hrz-grip.gif");
}
/* ::::: scrollbar button ::::: */
scrollbarbutton {
width: 15px;
height: 15px;
}
scrollbarbutton:hover:active {
border-left-width: 2px;
border-right-width: 2px;
-moz-border-top-colors: #000000 #708092 #939FAD;
-moz-border-right-colors: #000000 #718193 #9EA9B5;
-moz-border-bottom-colors: #000000 #8795A4 #929EAC;
-moz-border-left-colors: #000000 #ADB6C0 #9EA9B5;
background-color: #9CA8B4;
}
/* ..... increment .... */
scrollbarbutton[type="increment"] {
background-image: url("chrome://global/skin/scrollbar/btn-rit.gif")
}
scrollbar[orient="vertical"] > scrollbarbutton[type="increment"] {
background-image: url("chrome://global/skin/scrollbar/btn-dn.gif")
}
/* ..... decrement .... */
scrollbarbutton[type="decrement"] {
background-image: url("chrome://global/skin/scrollbar/btn-lft.gif")
}
scrollbar[orient="vertical"] > scrollbarbutton[type="decrement"] {
background-image: url("chrome://global/skin/scrollbar/btn-up.gif")
}
/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
/* ::::::::::::::::::::: MEDIA PRINT :::::::::::::::::::::: */
/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
@media print {
/* ::::: slider ::::: */
html|div slider {
height: 15px;
background: url("chrome://global/skin/scrollbar/slider-hrz.gif") repeat-x;
}
html|div slider[orient="vertical"] {
width: 15px;
background: url("chrome://global/skin/scrollbar/slider-vrt.gif") repeat-y;
}
/* ::::: borders for thumb and buttons ::::: */
html|div thumb,
html|div scrollbarbutton {
border: 3px solid;
-moz-border-top-colors: #000000 #E4EBF2 #C3CAD2;
-moz-border-right-colors: #000000 #8F9DAD #A4AFBB;
-moz-border-bottom-colors: #000000 #8F9DAD #A4AFBB;
-moz-border-left-colors: #000000 #E4EBF2 #C3CAD2;
background: #B1BBC5 50% 50% no-repeat;
}
html|div thumb:active {
background-color: #C2CCD6;
-moz-border-top-colors: #111111 #F5FCF3 #D4DBE3;
-moz-border-right-colors: #111111 #9FAEBE #B5BFCC;
-moz-border-bottom-colors: #111111 #9FAEBE #B5BFCC;
-moz-border-left-colors: #111111 #D5FCF3 #D4DBE3;
}
/* ::::: thumb (horizontal) ::::: */
html|div thumb {
min-height: 18px;
background-image: url("chrome://global/skin/scrollbar/thumb-vrt-grip.gif");
}
html|div thumb[orient="horizontal"] {
min-width: 18px;
background-image: url("chrome://global/skin/scrollbar/thumb-hrz-grip.gif");
}
/* ::::: scrollbar button ::::: */
html|div scrollbarbutton {
width: 15px;
height: 15px;
}
html|div scrollbarbutton:hover:active {
border-left-width: 2px;
border-right-width: 2px;
-moz-border-top-colors: #000000 #708092 #939FAD;
-moz-border-right-colors: #000000 #718193 #9EA9B5;
-moz-border-bottom-colors: #000000 #8795A4 #929EAC;
-moz-border-left-colors: #000000 #ADB6C0 #9EA9B5;
background-color: #9CA8B4;
}
/* ..... increment .... */
html|div scrollbarbutton[type="increment"] {
background-image: url("chrome://global/skin/scrollbar/btn-rit.gif")
}
html|div scrollbar[orient="vertical"] > scrollbarbutton[type="increment"] {
background-image: url("chrome://global/skin/scrollbar/btn-dn.gif")
}
/* ..... decrement .... */
html|div scrollbarbutton[type="decrement"] {
background-image: url("chrome://global/skin/scrollbar/btn-lft.gif")
}
html|div scrollbar[orient="vertical"] > scrollbarbutton[type="decrement"] {
background-image: url("chrome://global/skin/scrollbar/btn-up.gif")
}
}