| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- /*
- This file is part of Ext JS 3.4
- Copyright (c) 2011-2013 Sencha Inc
- Contact: http://www.sencha.com/contact
- GNU General Public License Usage
- This file may be used under the terms of the GNU General Public License version 3.0 as
- published by the Free Software Foundation and appearing in the file LICENSE included in the
- packaging of this file.
- Please review the following information to ensure the GNU General Public License version 3.0
- requirements will be met: http://www.gnu.org/copyleft/gpl.html.
- If you are unsure which license is appropriate for your use, please contact the sales department
- at http://www.sencha.com/contact.
- Build date: 2013-04-03 15:07:25
- */
- /* Shared styles */
- .x-slider {
- zoom:1;
- }
- .x-slider-inner {
- position:relative;
- left:0;
- top:0;
- overflow:visible;
- zoom:1;
- }
- .x-slider-focus {
- position:absolute;
- left:0;
- top:0;
- width:1px;
- height:1px;
- line-height:1px;
- font-size:1px;
- -moz-outline:0 none;
- outline:0 none;
- -moz-user-select: none;
- -khtml-user-select:none;
- -webkit-user-select:ignore;
- display:block;
- overflow:hidden;
- }
- /* Horizontal styles */
- .x-slider-horz {
- padding-left:7px;
- background:transparent no-repeat 0 -22px;
- }
- .x-slider-horz .x-slider-end {
- padding-right:7px;
- zoom:1;
- background:transparent no-repeat right -44px;
- }
- .x-slider-horz .x-slider-inner {
- background:transparent repeat-x 0 0;
- height:22px;
- }
- .x-slider-horz .x-slider-thumb {
- width:14px;
- height:15px;
- position:absolute;
- left:0;
- top:3px;
- background:transparent no-repeat 0 0;
- }
- .x-slider-horz .x-slider-thumb-over {
- background-position: -14px -15px;
- }
- .x-slider-horz .x-slider-thumb-drag {
- background-position: -28px -30px;
- }
- /* Vertical styles */
- .x-slider-vert {
- padding-top:7px;
- background:transparent no-repeat -44px 0;
- width:22px;
- }
- .x-slider-vert .x-slider-end {
- padding-bottom:7px;
- zoom:1;
- background:transparent no-repeat -22px bottom;
- }
- .x-slider-vert .x-slider-inner {
- background:transparent repeat-y 0 0;
- }
- .x-slider-vert .x-slider-thumb {
- width:15px;
- height:14px;
- position:absolute;
- left:3px;
- bottom:0;
- background:transparent no-repeat 0 0;
- }
- .x-slider-vert .x-slider-thumb-over {
- background-position: -15px -14px;
- }
- .x-slider-vert .x-slider-thumb-drag {
- background-position: -30px -28px;
- }
|