mirror of https://github.com/ColorlibHQ/AdminLTE
Update bootstrap-slider to v11.0.2.
parent
a4673ccd1b
commit
b2233260d4
|
@ -1775,9 +1775,9 @@
|
|||
}
|
||||
},
|
||||
"bootstrap-slider": {
|
||||
"version": "10.6.2",
|
||||
"resolved": "https://registry.npmjs.org/bootstrap-slider/-/bootstrap-slider-10.6.2.tgz",
|
||||
"integrity": "sha512-8JTPZB9QVOdrGzYF3YgC3YW6ssfPeBvBwZnXffiZ7YH/zz1D0EKlZvmQsm/w3N0XjVNYQEoQ0ax+jHrErV4K1Q=="
|
||||
"version": "11.0.2",
|
||||
"resolved": "https://registry.npmjs.org/bootstrap-slider/-/bootstrap-slider-11.0.2.tgz",
|
||||
"integrity": "sha512-CdwS+Z6X79OkLes9RfDgPB9UIY/+81wTkm6ktdSB6hdyiRbjJLFQIjZdnEr55tDyXZfgC7U6yeSXkNN9ZdGqjA=="
|
||||
},
|
||||
"bootstrap-switch": {
|
||||
"version": "3.3.4",
|
||||
|
|
|
@ -78,7 +78,7 @@
|
|||
"@ttskch/select2-bootstrap4-theme": "^1.4.0",
|
||||
"bootstrap": "^4.4.1",
|
||||
"bootstrap-colorpicker": "^3.2.0",
|
||||
"bootstrap-slider": "^10.6.2",
|
||||
"bootstrap-slider": "^11.0.2",
|
||||
"bootstrap-switch": "3.3.4",
|
||||
"bootstrap4-duallistbox": "^4.0.2",
|
||||
"bs-custom-file-input": "^1.3.4",
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*! =======================================================
|
||||
VERSION 10.6.2
|
||||
VERSION 11.0.2
|
||||
========================================================= */
|
||||
"use strict";
|
||||
|
||||
|
@ -405,7 +405,7 @@ var windowIsDefined = (typeof window === "undefined" ? "undefined" : _typeof(win
|
|||
|
||||
/*
|
||||
Validate `tooltip_position` against 'orientation`
|
||||
- if `tooltip_position` is incompatible with orientation, swith it to a default compatible with specified `orientation`
|
||||
- if `tooltip_position` is incompatible with orientation, switch it to a default compatible with specified `orientation`
|
||||
-- default for "vertical" -> "right", "left" if rtl
|
||||
-- default for "horizontal" -> "top"
|
||||
*/
|
||||
|
@ -550,7 +550,7 @@ var windowIsDefined = (typeof window === "undefined" ? "undefined" : _typeof(win
|
|||
|
||||
var createAndAppendTooltipSubElements = function createAndAppendTooltipSubElements(tooltipElem) {
|
||||
var arrow = document.createElement("div");
|
||||
arrow.className = "tooltip-arrow";
|
||||
arrow.className = "arrow";
|
||||
|
||||
var inner = document.createElement("div");
|
||||
inner.className = "tooltip-inner";
|
||||
|
@ -652,13 +652,13 @@ var windowIsDefined = (typeof window === "undefined" ? "undefined" : _typeof(win
|
|||
|
||||
// Undo inline styles and classes on tooltips
|
||||
[this.tooltip, this.tooltip_min, this.tooltip_max].forEach(function (tooltip) {
|
||||
this._removeProperty(tooltip, 'left');
|
||||
this._removeProperty(tooltip, 'right');
|
||||
this._removeProperty(tooltip, 'top');
|
||||
this._removeProperty(tooltip, 'bs-tooltip-left');
|
||||
this._removeProperty(tooltip, 'bs-tooltip-right');
|
||||
this._removeProperty(tooltip, 'bs-tooltip-top');
|
||||
|
||||
this._removeClass(tooltip, 'right');
|
||||
this._removeClass(tooltip, 'left');
|
||||
this._removeClass(tooltip, 'top');
|
||||
this._removeClass(tooltip, 'bs-tooltip-right');
|
||||
this._removeClass(tooltip, 'bs-tooltip-left');
|
||||
this._removeClass(tooltip, 'bs-tooltip-top');
|
||||
}, this);
|
||||
}
|
||||
|
||||
|
@ -1178,21 +1178,21 @@ var windowIsDefined = (typeof window === "undefined" ? "undefined" : _typeof(win
|
|||
},
|
||||
_showTooltip: function _showTooltip() {
|
||||
if (this.options.tooltip_split === false) {
|
||||
this._addClass(this.tooltip, 'in');
|
||||
this._addClass(this.tooltip, 'show');
|
||||
this.tooltip_min.style.display = 'none';
|
||||
this.tooltip_max.style.display = 'none';
|
||||
} else {
|
||||
this._addClass(this.tooltip_min, 'in');
|
||||
this._addClass(this.tooltip_max, 'in');
|
||||
this._addClass(this.tooltip_min, 'show');
|
||||
this._addClass(this.tooltip_max, 'show');
|
||||
this.tooltip.style.display = 'none';
|
||||
}
|
||||
this._state.over = true;
|
||||
},
|
||||
_hideTooltip: function _hideTooltip() {
|
||||
if (this._state.inDrag === false && this._alwaysShowTooltip !== true) {
|
||||
this._removeClass(this.tooltip, 'in');
|
||||
this._removeClass(this.tooltip_min, 'in');
|
||||
this._removeClass(this.tooltip_max, 'in');
|
||||
this._removeClass(this.tooltip, 'show');
|
||||
this._removeClass(this.tooltip_min, 'show');
|
||||
this._removeClass(this.tooltip_max, 'show');
|
||||
}
|
||||
this._state.over = false;
|
||||
},
|
||||
|
@ -1473,24 +1473,24 @@ var windowIsDefined = (typeof window === "undefined" ? "undefined" : _typeof(win
|
|||
|
||||
if (this.options.tooltip_position === 'bottom') {
|
||||
if (offset_min.right > offset_max.left) {
|
||||
this._removeClass(this.tooltip_max, 'bottom');
|
||||
this._addClass(this.tooltip_max, 'top');
|
||||
this._removeClass(this.tooltip_max, 'bs-tooltip-bottom');
|
||||
this._addClass(this.tooltip_max, 'bs-tooltip-top');
|
||||
this.tooltip_max.style.top = '';
|
||||
this.tooltip_max.style.bottom = 22 + 'px';
|
||||
} else {
|
||||
this._removeClass(this.tooltip_max, 'top');
|
||||
this._addClass(this.tooltip_max, 'bottom');
|
||||
this._removeClass(this.tooltip_max, 'bs-tooltip-top');
|
||||
this._addClass(this.tooltip_max, 'bs-tooltip-bottom');
|
||||
this.tooltip_max.style.top = this.tooltip_min.style.top;
|
||||
this.tooltip_max.style.bottom = '';
|
||||
}
|
||||
} else {
|
||||
if (offset_min.right > offset_max.left) {
|
||||
this._removeClass(this.tooltip_max, 'top');
|
||||
this._addClass(this.tooltip_max, 'bottom');
|
||||
this._removeClass(this.tooltip_max, 'bs-tooltip-top');
|
||||
this._addClass(this.tooltip_max, 'bs-tooltip-bottom');
|
||||
this.tooltip_max.style.top = 18 + 'px';
|
||||
} else {
|
||||
this._removeClass(this.tooltip_max, 'bottom');
|
||||
this._addClass(this.tooltip_max, 'top');
|
||||
this._removeClass(this.tooltip_max, 'bs-tooltip-bottom');
|
||||
this._addClass(this.tooltip_max, 'bs-tooltip-top');
|
||||
this.tooltip_max.style.top = this.tooltip_min.style.top;
|
||||
}
|
||||
}
|
||||
|
@ -1997,17 +1997,17 @@ var windowIsDefined = (typeof window === "undefined" ? "undefined" : _typeof(win
|
|||
}
|
||||
var oppositeSide = tooltipPos === 'left' ? 'right' : 'left';
|
||||
tooltips.forEach(function (tooltip) {
|
||||
this._addClass(tooltip, tooltipPos);
|
||||
this._addClass(tooltip, 'bs-tooltip-' + tooltipPos);
|
||||
tooltip.style[oppositeSide] = '100%';
|
||||
}.bind(this));
|
||||
} else if (this.options.tooltip_position === 'bottom') {
|
||||
tooltips.forEach(function (tooltip) {
|
||||
this._addClass(tooltip, 'bottom');
|
||||
this._addClass(tooltip, 'bs-tooltip-bottom');
|
||||
tooltip.style.top = 22 + 'px';
|
||||
}.bind(this));
|
||||
} else {
|
||||
tooltips.forEach(function (tooltip) {
|
||||
this._addClass(tooltip, 'top');
|
||||
this._addClass(tooltip, 'bs-tooltip-top');
|
||||
tooltip.style.top = -this.tooltip.outerHeight - 14 + 'px';
|
||||
}.bind(this));
|
||||
}
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1,5 +1,5 @@
|
|||
/*! =======================================================
|
||||
VERSION 10.6.2
|
||||
VERSION 11.0.2
|
||||
========================================================= */
|
||||
/*! =========================================================
|
||||
* bootstrap-slider.js
|
||||
|
@ -13,7 +13,7 @@
|
|||
* - Github: rovolution
|
||||
*
|
||||
* =========================================================
|
||||
*
|
||||
*
|
||||
* bootstrap-slider is released under the MIT License
|
||||
* Copyright (c) 2019 Kyle Kemp, Rohit Kalkur, and contributors
|
||||
*
|
||||
|
@ -44,10 +44,12 @@
|
|||
vertical-align: middle;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.slider.slider-horizontal {
|
||||
width: 210px;
|
||||
height: 20px;
|
||||
}
|
||||
|
||||
.slider.slider-horizontal .slider-track {
|
||||
height: 10px;
|
||||
width: 100%;
|
||||
|
@ -55,29 +57,30 @@
|
|||
top: 50%;
|
||||
left: 0;
|
||||
}
|
||||
.slider.slider-horizontal .slider-selection,
|
||||
.slider.slider-horizontal .slider-track-low,
|
||||
.slider.slider-horizontal .slider-track-high {
|
||||
|
||||
.slider.slider-horizontal .slider-selection, .slider.slider-horizontal .slider-track-low, .slider.slider-horizontal .slider-track-high {
|
||||
height: 100%;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
.slider.slider-horizontal .slider-tick,
|
||||
.slider.slider-horizontal .slider-handle {
|
||||
margin-left: -10px;
|
||||
}
|
||||
|
||||
.slider.slider-horizontal .slider-tick.triangle,
|
||||
.slider.slider-horizontal .slider-handle.triangle {
|
||||
position: relative;
|
||||
top: 50%;
|
||||
-ms-transform: translateY(-50%);
|
||||
transform: translateY(-50%);
|
||||
border-width: 0 10px 10px 10px;
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-bottom-color: #2e6da4;
|
||||
border-bottom-color: #036fa5;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.slider.slider-horizontal .slider-tick-container {
|
||||
white-space: nowrap;
|
||||
position: absolute;
|
||||
|
@ -85,244 +88,331 @@
|
|||
left: 0;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.slider.slider-horizontal .slider-tick-label-container {
|
||||
white-space: nowrap;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.slider.slider-horizontal .slider-tick-label-container .slider-tick-label {
|
||||
padding-top: 4px;
|
||||
display: inline-block;
|
||||
text-align: center;
|
||||
}
|
||||
.slider.slider-horizontal .tooltip {
|
||||
-ms-transform: translateX(-50%);
|
||||
transform: translateX(-50%);
|
||||
}
|
||||
|
||||
.slider.slider-horizontal.slider-rtl .slider-track {
|
||||
left: initial;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.slider.slider-horizontal.slider-rtl .slider-tick,
|
||||
.slider.slider-horizontal.slider-rtl .slider-handle {
|
||||
margin-left: initial;
|
||||
margin-right: -10px;
|
||||
}
|
||||
|
||||
.slider.slider-horizontal.slider-rtl .slider-tick-container {
|
||||
left: initial;
|
||||
right: 0;
|
||||
}
|
||||
.slider.slider-horizontal.slider-rtl .tooltip {
|
||||
-ms-transform: translateX(50%);
|
||||
transform: translateX(50%);
|
||||
}
|
||||
|
||||
.slider.slider-vertical {
|
||||
height: 210px;
|
||||
width: 20px;
|
||||
}
|
||||
|
||||
.slider.slider-vertical .slider-track {
|
||||
width: 10px;
|
||||
height: 100%;
|
||||
left: 25%;
|
||||
top: 0;
|
||||
}
|
||||
|
||||
.slider.slider-vertical .slider-selection {
|
||||
width: 100%;
|
||||
left: 0;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
}
|
||||
.slider.slider-vertical .slider-track-low,
|
||||
.slider.slider-vertical .slider-track-high {
|
||||
|
||||
.slider.slider-vertical .slider-track-low, .slider.slider-vertical .slider-track-high {
|
||||
width: 100%;
|
||||
left: 0;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.slider.slider-vertical .slider-tick,
|
||||
.slider.slider-vertical .slider-handle {
|
||||
margin-top: -10px;
|
||||
}
|
||||
|
||||
.slider.slider-vertical .slider-tick.triangle,
|
||||
.slider.slider-vertical .slider-handle.triangle {
|
||||
border-width: 10px 0 10px 10px;
|
||||
width: 1px;
|
||||
height: 1px;
|
||||
border-left-color: #2e6da4;
|
||||
border-right-color: #2e6da4;
|
||||
border-left-color: #036fa5;
|
||||
margin-left: 0;
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.slider.slider-vertical .slider-tick-label-container {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.slider.slider-vertical .slider-tick-label-container .slider-tick-label {
|
||||
padding-left: 4px;
|
||||
}
|
||||
.slider.slider-vertical .tooltip {
|
||||
-ms-transform: translateY(-50%);
|
||||
transform: translateY(-50%);
|
||||
}
|
||||
|
||||
.slider.slider-vertical.slider-rtl .slider-track {
|
||||
left: initial;
|
||||
right: 25%;
|
||||
}
|
||||
|
||||
.slider.slider-vertical.slider-rtl .slider-selection {
|
||||
left: initial;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.slider.slider-vertical.slider-rtl .slider-tick.triangle,
|
||||
.slider.slider-vertical.slider-rtl .slider-handle.triangle {
|
||||
border-width: 10px 10px 10px 0;
|
||||
}
|
||||
|
||||
.slider.slider-vertical.slider-rtl .slider-tick-label-container .slider-tick-label {
|
||||
padding-left: initial;
|
||||
padding-right: 4px;
|
||||
}
|
||||
|
||||
.slider.slider-disabled .slider-handle {
|
||||
background-image: -webkit-linear-gradient(top, #dfdfdf 0%, #bebebe 100%);
|
||||
background-image: -o-linear-gradient(top, #dfdfdf 0%, #bebebe 100%);
|
||||
background-image: linear-gradient(to bottom, #dfdfdf 0%, #bebebe 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdfdfdf', endColorstr='#ffbebebe', GradientType=0);
|
||||
background-color: #cfcfcf;
|
||||
background-image: -moz-linear-gradient(top, #DFDFDF, #BEBEBE);
|
||||
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#DFDFDF), to(#BEBEBE));
|
||||
background-image: -webkit-linear-gradient(top, #DFDFDF, #BEBEBE);
|
||||
background-image: -o-linear-gradient(top, #DFDFDF, #BEBEBE);
|
||||
background-image: linear-gradient(to bottom, #DFDFDF, #BEBEBE);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#DFDFDF', endColorstr='#BEBEBE',GradientType=0);
|
||||
}
|
||||
|
||||
.slider.slider-disabled .slider-track {
|
||||
background-image: -webkit-linear-gradient(top, #e5e5e5 0%, #e9e9e9 100%);
|
||||
background-image: -o-linear-gradient(top, #e5e5e5 0%, #e9e9e9 100%);
|
||||
background-image: linear-gradient(to bottom, #e5e5e5 0%, #e9e9e9 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe5e5e5', endColorstr='#ffe9e9e9', GradientType=0);
|
||||
background-color: #e7e7e7;
|
||||
background-image: -moz-linear-gradient(top, #E5E5E5, #E9E9E9);
|
||||
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#E5E5E5), to(#E9E9E9));
|
||||
background-image: -webkit-linear-gradient(top, #E5E5E5, #E9E9E9);
|
||||
background-image: -o-linear-gradient(top, #E5E5E5, #E9E9E9);
|
||||
background-image: linear-gradient(to bottom, #E5E5E5, #E9E9E9);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#E5E5E5', endColorstr='#E9E9E9',GradientType=0);
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
.slider input {
|
||||
display: none;
|
||||
}
|
||||
.slider .tooltip {
|
||||
pointer-events: none;
|
||||
}
|
||||
.slider .tooltip.top {
|
||||
margin-top: -36px;
|
||||
}
|
||||
|
||||
.slider .tooltip-inner {
|
||||
white-space: nowrap;
|
||||
max-width: none;
|
||||
}
|
||||
|
||||
.slider .bs-tooltip-top .tooltip-inner,
|
||||
.slider .bs-tooltip-bottom .tooltip-inner {
|
||||
position: relative;
|
||||
left: -50%;
|
||||
}
|
||||
|
||||
.slider.bs-tooltip-left .tooltip-inner, .slider.bs-tooltip-right .tooltip-inner {
|
||||
position: relative;
|
||||
top: -100%;
|
||||
}
|
||||
|
||||
.slider .tooltip {
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.slider .tooltip.bs-tooltip-top .arrow, .slider .tooltip.bs-tooltip-bottom .arrow {
|
||||
left: -.4rem;
|
||||
}
|
||||
|
||||
.slider .tooltip.bs-tooltip-top {
|
||||
margin-top: -44px;
|
||||
}
|
||||
|
||||
.slider .tooltip.bs-tooltip-bottom {
|
||||
margin-top: 2px;
|
||||
}
|
||||
|
||||
.slider .tooltip.bs-tooltip-left, .slider .tooltip.bs-tooltip-right {
|
||||
margin-top: -14px;
|
||||
}
|
||||
|
||||
.slider .tooltip.bs-tooltip-left .arrow, .slider .tooltip.bs-tooltip-right .arrow {
|
||||
top: 8px;
|
||||
}
|
||||
|
||||
.slider .hide {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.slider-track {
|
||||
background-color: #f7f7f7;
|
||||
background-image: -moz-linear-gradient(top, #F5F5F5, #F9F9F9);
|
||||
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#F5F5F5), to(#F9F9F9));
|
||||
background-image: -webkit-linear-gradient(top, #F5F5F5, #F9F9F9);
|
||||
background-image: -o-linear-gradient(top, #F5F5F5, #F9F9F9);
|
||||
background-image: linear-gradient(to bottom, #F5F5F5, #F9F9F9);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F5F5F5', endColorstr='#F9F9F9',GradientType=0);
|
||||
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
||||
-moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
||||
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
||||
-webkit-border-radius: 4px;
|
||||
-moz-border-radius: 4px;
|
||||
border-radius: 4px;
|
||||
position: absolute;
|
||||
cursor: pointer;
|
||||
background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #f9f9f9 100%);
|
||||
background-image: -o-linear-gradient(top, #f5f5f5 0%, #f9f9f9 100%);
|
||||
background-image: linear-gradient(to bottom, #f5f5f5 0%, #f9f9f9 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);
|
||||
background-repeat: repeat-x;
|
||||
-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);
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.slider-selection {
|
||||
position: absolute;
|
||||
background-image: -webkit-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
|
||||
background-image: -o-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
|
||||
background-image: linear-gradient(to bottom, #f9f9f9 0%, #f5f5f5 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9f9f9', endColorstr='#fff5f5f5', GradientType=0);
|
||||
background-color: #f7f7f7;
|
||||
background-image: -moz-linear-gradient(top, #F9F9F9, #F5F5F5);
|
||||
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#F9F9F9), to(#F5F5F5));
|
||||
background-image: -webkit-linear-gradient(top, #F9F9F9, #F5F5F5);
|
||||
background-image: -o-linear-gradient(top, #F9F9F9, #F5F5F5);
|
||||
background-image: linear-gradient(to bottom, #F9F9F9, #F5F5F5);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F9F9F9', endColorstr='#F5F5F5',GradientType=0);
|
||||
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
|
||||
-moz-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;
|
||||
-webkit-border-radius: 4px;
|
||||
-moz-border-radius: 4px;
|
||||
border-radius: 4px;
|
||||
}
|
||||
.slider-selection.tick-slider-selection {
|
||||
background-image: -webkit-linear-gradient(top, #8ac1ef 0%, #82b3de 100%);
|
||||
background-image: -o-linear-gradient(top, #8ac1ef 0%, #82b3de 100%);
|
||||
background-image: linear-gradient(to bottom, #8ac1ef 0%, #82b3de 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff8ac1ef', endColorstr='#ff82b3de', GradientType=0);
|
||||
background-repeat: repeat-x;
|
||||
}
|
||||
.slider-track-low,
|
||||
.slider-track-high {
|
||||
position: absolute;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.slider-selection.tick-slider-selection {
|
||||
background-color: #46c1fe;
|
||||
background-image: -moz-linear-gradient(top, #52c5ff, #3abcfd);
|
||||
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#52c5ff), to(#3abcfd));
|
||||
background-image: -webkit-linear-gradient(top, #52c5ff, #3abcfd);
|
||||
background-image: -o-linear-gradient(top, #52c5ff, #3abcfd);
|
||||
background-image: linear-gradient(to bottom, #52c5ff, #3abcfd);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#52c5ff', endColorstr='#3abcfd',GradientType=0);
|
||||
}
|
||||
|
||||
.slider-track-low, .slider-track-high {
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
-webkit-border-radius: 4px;
|
||||
-moz-border-radius: 4px;
|
||||
border-radius: 4px;
|
||||
position: absolute;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.slider-handle {
|
||||
background-color: #0478b2;
|
||||
background-image: -moz-linear-gradient(top, #0480BE, #036fa5);
|
||||
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0480BE), to(#036fa5));
|
||||
background-image: -webkit-linear-gradient(top, #0480BE, #036fa5);
|
||||
background-image: -o-linear-gradient(top, #0480BE, #036fa5);
|
||||
background-image: linear-gradient(to bottom, #0480BE, #036fa5);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0480BE', endColorstr='#036fa5',GradientType=0);
|
||||
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
||||
-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
||||
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
||||
position: absolute;
|
||||
top: 0;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
background-color: #337ab7;
|
||||
background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
|
||||
background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
|
||||
background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);
|
||||
background-repeat: repeat-x;
|
||||
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);
|
||||
background-color: #0480BE;
|
||||
border: 0px solid transparent;
|
||||
}
|
||||
|
||||
.slider-handle:hover {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.slider-handle.round {
|
||||
border-radius: 50%;
|
||||
-webkit-border-radius: 20px;
|
||||
-moz-border-radius: 20px;
|
||||
border-radius: 20px;
|
||||
}
|
||||
|
||||
.slider-handle.triangle {
|
||||
background: transparent none;
|
||||
}
|
||||
|
||||
.slider-handle.custom {
|
||||
background: transparent none;
|
||||
}
|
||||
|
||||
.slider-handle.custom::before {
|
||||
line-height: 20px;
|
||||
font-size: 20px;
|
||||
content: '\2605';
|
||||
color: #726204;
|
||||
}
|
||||
|
||||
.slider-tick {
|
||||
position: absolute;
|
||||
cursor: pointer;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
background-image: -webkit-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
|
||||
background-image: -o-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
|
||||
background-image: linear-gradient(to bottom, #f9f9f9 0%, #f5f5f5 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9f9f9', endColorstr='#fff5f5f5', GradientType=0);
|
||||
background-color: #f7f7f7;
|
||||
background-image: -moz-linear-gradient(top, #F5F5F5, #F9F9F9);
|
||||
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#F5F5F5), to(#F9F9F9));
|
||||
background-image: -webkit-linear-gradient(top, #F5F5F5, #F9F9F9);
|
||||
background-image: -o-linear-gradient(top, #F5F5F5, #F9F9F9);
|
||||
background-image: linear-gradient(to bottom, #F5F5F5, #F9F9F9);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F5F5F5', endColorstr='#F9F9F9',GradientType=0);
|
||||
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
|
||||
-moz-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;
|
||||
position: absolute;
|
||||
cursor: pointer;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
filter: none;
|
||||
opacity: 0.8;
|
||||
border: 0px solid transparent;
|
||||
}
|
||||
|
||||
.slider-tick.round {
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.slider-tick.triangle {
|
||||
background: transparent none;
|
||||
}
|
||||
|
||||
.slider-tick.custom {
|
||||
background: transparent none;
|
||||
}
|
||||
|
||||
.slider-tick.custom::before {
|
||||
line-height: 20px;
|
||||
font-size: 20px;
|
||||
content: '\2605';
|
||||
color: #726204;
|
||||
}
|
||||
|
||||
.slider-tick.in-selection {
|
||||
background-image: -webkit-linear-gradient(top, #8ac1ef 0%, #82b3de 100%);
|
||||
background-image: -o-linear-gradient(top, #8ac1ef 0%, #82b3de 100%);
|
||||
background-image: linear-gradient(to bottom, #8ac1ef 0%, #82b3de 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff8ac1ef', endColorstr='#ff82b3de', GradientType=0);
|
||||
background-color: #46c1fe;
|
||||
background-image: -moz-linear-gradient(top, #52c5ff, #3abcfd);
|
||||
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#52c5ff), to(#3abcfd));
|
||||
background-image: -webkit-linear-gradient(top, #52c5ff, #3abcfd);
|
||||
background-image: -o-linear-gradient(top, #52c5ff, #3abcfd);
|
||||
background-image: linear-gradient(to bottom, #52c5ff, #3abcfd);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#52c5ff', endColorstr='#3abcfd',GradientType=0);
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=bootstrap-slider.css.map */
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue