| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- /*
- Licensed to Cloudera, Inc. under one
- or more contributor license agreements. See the NOTICE file
- distributed with this work for additional information
- regarding copyright ownership. Cloudera, Inc. licenses this file
- to you under the Apache License, Version 2.0 (the
- "License"); you may not use this file except in compliance
- with the License. You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- */
- .slider {
- vertical-align: middle;
- position: relative;
- margin-top: 35px;
- margin-bottom: 35px;
- margin-left: 10px;
- }
- .slider.slider-horizontal {
- height: 20px;
- }
- .slider.slider-horizontal .slider-track {
- height: 10px;
- width: 100%;
- margin-top: -5px;
- top: 50%;
- left: 0;
- }
- .slider.slider-horizontal .slider-selection {
- height: 100%;
- top: 0;
- bottom: 0;
- }
- .slider.slider-horizontal .slider-handle {
- margin-left: -10px;
- margin-top: -5px;
- }
- .slider.slider-horizontal .slider-handle.triangle {
- border-width: 0 10px 10px 10px;
- width: 0;
- height: 0;
- border-bottom-color: #338BB8;
- margin-top: 0;
- outline: none;
- }
- .slider.slider-horizontal .slider-handle.triangle:hover {
- border-bottom-color: #225e7c;
- }
- .slider.slider-disabled .slider-handle {
- background-image: -webkit-linear-gradient(top, #dfdfdf 0%, #bebebe 100%);
- background-image: linear-gradient(to bottom, #dfdfdf 0%, #bebebe 100%);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdfdfdf', endColorstr='#ffbebebe', GradientType=0);
- }
- .slider.slider-disabled .slider-track {
- background-image: -webkit-linear-gradient(top, #e5e5e5 0%, #e9e9e9 100%);
- background-image: linear-gradient(to bottom, #e5e5e5 0%, #e9e9e9 100%);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe5e5e5', endColorstr='#ffe9e9e9', GradientType=0);
- cursor: not-allowed;
- }
- .slider input {
- font-size: 10px;
- width: 40px;
- border: 1px solid #CCC !important;
- min-height: 20px !important;
- height: 20px;
- padding: 0 4px !important;
- margin: 0 !important;
- }
- .slider .tooltip-inner {
- white-space: nowrap;
- }
- .slider .extreme {
- position: absolute;
- }
- .slider-track {
- position: absolute;
- cursor: pointer;
- background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #f9f9f9 100%);
- background-image: linear-gradient(to bottom, #f5f5f5 0%, #f9f9f9 100%);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
- }
- .slider-selection {
- position: absolute;
- background-image: -webkit-linear-gradient(top, #DDD 0%, #DDD 100%);
- background-image: linear-gradient(to bottom, #DDD 0%, #DDD 100%);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9f9f9', endColorstr='#fff5f5f5', GradientType=0);
- -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
- box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
- }
- .slider-handle {
- position: absolute;
- width: 20px;
- height: 20px;
- background-color: #3a94a5;
- background-image: -webkit-linear-gradient(top, #149bdf 0%, #338BB8 100%);
- background-image: linear-gradient(to bottom, #149bdf 0%, #338BB8 100%);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff338BB8', GradientType=0);
- filter: none;
- -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 2px rgba(0, 0, 0, .05);
- box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 2px rgba(0, 0, 0, .05);
- opacity: 0.8;
- border: 0px solid transparent;
- }
- .slider-handle.round {
- border-radius: 50%;
- }
- .slider-handle.triangle {
- background: transparent none;
- }
- .slider .tooltip.in {
- opacity: 1;
- filter: alpha(opacity=100);
- }
- .slider .tooltip {
- z-index: 10;
- }
|