Sha256: a206124993cc6477d2bacca4aa59c8311a26433a4bd4e32ec1e965d35956d507
Contents?: true
Size: 1.17 KB
Versions: 3
Compression:
Stored size: 1.17 KB
Contents
/* * jQuery UI Slider 1.8.16 * * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) * Dual licensed under the MIT or GPL Version 2 licenses. * http://jquery.org/license * * http://docs.jquery.com/UI/Slider#theming */ @mixin jquery-ui-slider { .ui-slider { position: relative; text-align: left; .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; } .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; background-position: 0 0; } } .ui-slider-horizontal { height: .8em; .ui-slider-handle { top: -0.3em; margin-left: -0.6em; } .ui-slider-range { top: 0; height: 100%; } .ui-slider-range-min { left: 0; } .ui-slider-range-max { right: 0; } } .ui-slider-vertical { width: .8em; height: 100px; .ui-slider-handle { left: -0.3em; margin-left: 0; margin-bottom: -0.6em; } .ui-slider-range { left: 0; width: 100%; } .ui-slider-range-min { bottom: 0; } .ui-slider-range-max { top: 0; } } }
Version data entries
3 entries across 3 versions & 1 rubygems