Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HiveStatistics/sources/HeuristicLab.Services.Hive.Statistics/3.3/Content/themes/base/jquery.ui.slider.css @ 11222

Last change on this file since 11222 was 11222, checked in by mroscoe, 10 years ago
File size: 1.3 KB
Line 
1/*!
2 * jQuery UI Slider 1.10.4
3 * http://jqueryui.com
4 *
5 * Copyright 2014 jQuery Foundation and other contributors
6 * Released under the MIT license.
7 * http://jquery.org/license
8 *
9 * http://api.jqueryui.com/slider/#theming
10 */
11.ui-slider {
12  position: relative;
13  text-align: left;
14}
15.ui-slider .ui-slider-handle {
16  position: absolute;
17  z-index: 2;
18  width: 1.2em;
19  height: 1.2em;
20  cursor: default;
21}
22.ui-slider .ui-slider-range {
23  position: absolute;
24  z-index: 1;
25  font-size: .7em;
26  display: block;
27  border: 0;
28  background-position: 0 0;
29}
30
31/* For IE8 - See #6727 */
32.ui-slider.ui-state-disabled .ui-slider-handle,
33.ui-slider.ui-state-disabled .ui-slider-range {
34  filter: inherit;
35}
36
37.ui-slider-horizontal {
38  height: .8em;
39}
40.ui-slider-horizontal .ui-slider-handle {
41  top: -.3em;
42  margin-left: -.6em;
43}
44.ui-slider-horizontal .ui-slider-range {
45  top: 0;
46  height: 100%;
47}
48.ui-slider-horizontal .ui-slider-range-min {
49  left: 0;
50}
51.ui-slider-horizontal .ui-slider-range-max {
52  right: 0;
53}
54
55.ui-slider-vertical {
56  width: .8em;
57  height: 100px;
58}
59.ui-slider-vertical .ui-slider-handle {
60  left: -.3em;
61  margin-left: 0;
62  margin-bottom: -.6em;
63}
64.ui-slider-vertical .ui-slider-range {
65  left: 0;
66  width: 100%;
67}
68.ui-slider-vertical .ui-slider-range-min {
69  bottom: 0;
70}
71.ui-slider-vertical .ui-slider-range-max {
72  top: 0;
73}
Note: See TracBrowser for help on using the repository browser.