Revision control

Copy as Markdown

Other Tools

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
/* ===== scrollbars.css =================================================
== Styles used by XUL scrollbar-related elements.
======================================================================= */
/* ::::: scrollbar ::::: */
scrollbar {
cursor: default;
min-width: 11px;
min-height: 11px;
}
/* ::::: square at the corner of two scrollbars ::::: */
scrollcorner {
cursor: default;
background-color: #B1BBC5;
}
/* ::::: slider ::::: */
slider {
}
slider[orient="vertical"] {
}
/* ::::: borders for thumb and buttons ::::: */
thumb,
scrollbarbutton {
border: 1px solid;
border-color: #000000;
background: #B1BBC5 50% 50% no-repeat;
}
thumb:active {
background-color: #C2CCD6;
border-color: #111111;
}
/* ::::: thumb (horizontal) ::::: */
thumb {
}
thumb[orient="horizontal"] {
}
/* ::::: scrollbar button ::::: */
scrollbarbutton {
width: 11px;
height: 14px;
max-width: 11px;
max-height: 14px;
-moz-box-flex: 1;
}
scrollbar[orient="horizontal"] > scrollbarbutton {
width: 14px;
height: 11px;
max-width: 14px;
max-height: 11px;
}
scrollbarbutton[disabled="true"],
scrollbarbutton[active="true"],
scrollbarbutton:hover:active {
border-left-width: 1px;
border-right-width: 1px;
border-color: #000000;
background-color: #9CA8B4;
}
/* ..... increment .... */
scrollbarbutton[type="increment"] {
}
scrollbar[orient="vertical"] > scrollbarbutton[type="increment"] {
}
/* ..... decrement .... */
scrollbarbutton[type="decrement"] {
}
scrollbar[orient="vertical"] > scrollbarbutton[type="decrement"] {
}