зеркало из https://github.com/mozilla/gecko-dev.git
32 строки
718 B
CSS
32 строки
718 B
CSS
/* 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/. */
|
|
|
|
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
|
|
|
|
.scale-slider {
|
|
-moz-appearance: scale-horizontal;
|
|
margin: 2px 4px;
|
|
width: 100px;
|
|
}
|
|
|
|
.scale-slider[orient="vertical"] {
|
|
-moz-appearance: scale-vertical;
|
|
margin: 4px 2px;
|
|
width: auto;
|
|
height: 100px;
|
|
}
|
|
|
|
.scale-thumb {
|
|
-moz-appearance: scalethumb-horizontal;
|
|
min-width: 30px;
|
|
min-height: 15px;
|
|
}
|
|
|
|
.scale-thumb[orient="vertical"] {
|
|
-moz-appearance: scalethumb-vertical;
|
|
min-width: 15px;
|
|
min-height: 30px;
|
|
}
|
|
|