2019-05-06 12:04:39 +08:00
|
|
|
@import '../../style/themes/index';
|
2018-12-07 16:17:45 +08:00
|
|
|
@import '../../style/mixins/index';
|
2015-07-13 07:59:38 +08:00
|
|
|
|
2018-12-07 16:17:45 +08:00
|
|
|
@slider-prefix-cls: ~'@{ant-prefix}-slider';
|
2015-07-13 07:59:38 +08:00
|
|
|
|
2015-08-20 16:55:42 +08:00
|
|
|
.@{slider-prefix-cls} {
|
2017-09-22 18:33:29 +08:00
|
|
|
.reset-component;
|
2019-04-15 10:52:00 +08:00
|
|
|
|
2015-07-13 07:59:38 +08:00
|
|
|
position: relative;
|
2019-02-15 10:48:07 +08:00
|
|
|
height: 12px;
|
2017-12-22 15:22:22 +08:00
|
|
|
margin: @slider-margin;
|
2017-06-30 11:08:28 +08:00
|
|
|
padding: 4px 0;
|
2015-08-19 12:20:03 +08:00
|
|
|
cursor: pointer;
|
2018-10-15 23:58:42 +08:00
|
|
|
touch-action: none;
|
2015-07-13 07:59:38 +08:00
|
|
|
|
2017-01-05 12:05:24 +08:00
|
|
|
.vertical();
|
|
|
|
|
2016-11-21 16:10:46 +08:00
|
|
|
&-with-marks {
|
|
|
|
margin-bottom: 28px;
|
|
|
|
}
|
|
|
|
|
2017-06-30 11:08:28 +08:00
|
|
|
&-rail {
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
height: 4px;
|
2018-01-23 21:03:22 +08:00
|
|
|
background-color: @slider-rail-background-color;
|
2019-11-15 10:01:35 +08:00
|
|
|
border-radius: @border-radius-base;
|
2019-07-17 18:04:13 +08:00
|
|
|
transition: background-color 0.3s;
|
2017-06-30 11:08:28 +08:00
|
|
|
}
|
|
|
|
|
2015-07-13 07:59:38 +08:00
|
|
|
&-track {
|
|
|
|
position: absolute;
|
|
|
|
height: 4px;
|
2018-01-23 21:03:22 +08:00
|
|
|
background-color: @slider-track-background-color;
|
2019-02-15 10:48:07 +08:00
|
|
|
border-radius: @border-radius-base;
|
2019-07-17 18:04:13 +08:00
|
|
|
transition: background-color 0.3s;
|
2015-08-19 12:20:03 +08:00
|
|
|
}
|
|
|
|
|
2015-07-13 07:59:38 +08:00
|
|
|
&-handle {
|
|
|
|
position: absolute;
|
|
|
|
width: 14px;
|
|
|
|
height: 14px;
|
2019-02-15 10:48:07 +08:00
|
|
|
margin-top: -5px;
|
2019-07-17 18:04:13 +08:00
|
|
|
background-color: @slider-handle-background-color;
|
|
|
|
border: solid @slider-handle-border-width @slider-handle-color;
|
2019-02-15 10:48:07 +08:00
|
|
|
border-radius: 50%;
|
2019-07-17 18:04:13 +08:00
|
|
|
box-shadow: @slider-handle-shadow;
|
2019-02-15 10:48:07 +08:00
|
|
|
cursor: pointer;
|
2019-07-17 18:04:13 +08:00
|
|
|
transition: border-color 0.3s, box-shadow 0.6s,
|
|
|
|
transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
|
2015-07-13 07:59:38 +08:00
|
|
|
|
2017-12-01 18:01:14 +08:00
|
|
|
&:focus {
|
2018-01-23 21:03:22 +08:00
|
|
|
border-color: @slider-handle-color-focus;
|
2017-12-01 18:01:14 +08:00
|
|
|
outline: none;
|
2019-02-15 10:48:07 +08:00
|
|
|
box-shadow: 0 0 0 5px @slider-handle-color-focus-shadow;
|
2017-12-01 18:01:14 +08:00
|
|
|
}
|
|
|
|
|
2017-10-16 19:53:46 +08:00
|
|
|
&.@{ant-prefix}-tooltip-open {
|
2018-01-23 21:03:22 +08:00
|
|
|
border-color: @slider-handle-color-tooltip-open;
|
2015-07-13 07:59:38 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-30 11:08:28 +08:00
|
|
|
&:hover {
|
|
|
|
.@{slider-prefix-cls}-rail {
|
2018-01-23 21:03:22 +08:00
|
|
|
background-color: @slider-rail-background-color-hover;
|
2017-06-30 11:08:28 +08:00
|
|
|
}
|
|
|
|
.@{slider-prefix-cls}-track {
|
2018-01-23 21:03:22 +08:00
|
|
|
background-color: @slider-track-background-color-hover;
|
2017-06-30 11:08:28 +08:00
|
|
|
}
|
2017-10-16 19:53:46 +08:00
|
|
|
.@{slider-prefix-cls}-handle:not(.@{ant-prefix}-tooltip-open) {
|
2018-01-23 21:03:22 +08:00
|
|
|
border-color: @slider-handle-color-hover;
|
2017-06-30 11:08:28 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-13 07:59:38 +08:00
|
|
|
&-mark {
|
|
|
|
position: absolute;
|
2017-06-30 11:08:28 +08:00
|
|
|
top: 14px;
|
2015-08-20 16:55:42 +08:00
|
|
|
left: 0;
|
2015-07-13 07:59:38 +08:00
|
|
|
width: 100%;
|
2016-11-08 20:57:07 +08:00
|
|
|
font-size: @font-size-base;
|
2015-07-13 07:59:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&-mark-text {
|
|
|
|
position: absolute;
|
|
|
|
display: inline-block;
|
2019-02-15 10:48:07 +08:00
|
|
|
color: @text-color-secondary;
|
2015-07-13 07:59:38 +08:00
|
|
|
text-align: center;
|
2019-04-28 15:41:36 +08:00
|
|
|
word-break: keep-all;
|
2015-07-13 07:59:38 +08:00
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
&-active {
|
2016-11-08 20:50:59 +08:00
|
|
|
color: @text-color;
|
2015-07-13 07:59:38 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-step {
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
height: 4px;
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-dot {
|
|
|
|
position: absolute;
|
|
|
|
top: -2px;
|
|
|
|
width: 8px;
|
|
|
|
height: 8px;
|
2019-02-15 10:48:07 +08:00
|
|
|
margin-left: -4px;
|
2016-11-29 11:56:10 +08:00
|
|
|
background-color: @component-background;
|
2019-02-15 10:48:07 +08:00
|
|
|
border: 2px solid @slider-dot-border-color;
|
2015-07-13 07:59:38 +08:00
|
|
|
border-radius: 50%;
|
2019-02-15 10:48:07 +08:00
|
|
|
cursor: pointer;
|
2015-07-13 07:59:38 +08:00
|
|
|
&:first-child {
|
|
|
|
margin-left: -4px;
|
|
|
|
}
|
|
|
|
&:last-child {
|
|
|
|
margin-left: -4px;
|
|
|
|
}
|
|
|
|
&-active {
|
2018-01-23 21:03:22 +08:00
|
|
|
border-color: @slider-dot-border-color-active;
|
2015-07-13 07:59:38 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-disabled {
|
2017-07-20 10:38:10 +08:00
|
|
|
cursor: not-allowed;
|
2015-07-13 07:59:38 +08:00
|
|
|
|
2015-08-20 16:55:42 +08:00
|
|
|
.@{slider-prefix-cls}-track {
|
2015-08-19 12:20:03 +08:00
|
|
|
background-color: @slider-disabled-color !important;
|
2015-07-13 07:59:38 +08:00
|
|
|
}
|
|
|
|
|
2015-11-26 19:32:55 +08:00
|
|
|
.@{slider-prefix-cls}-handle,
|
|
|
|
.@{slider-prefix-cls}-dot {
|
2016-11-29 11:56:10 +08:00
|
|
|
background-color: @component-background;
|
2019-02-15 10:48:07 +08:00
|
|
|
border-color: @slider-disabled-color !important;
|
2016-12-03 15:31:10 +08:00
|
|
|
box-shadow: none;
|
2019-02-15 10:48:07 +08:00
|
|
|
cursor: not-allowed;
|
2015-07-13 07:59:38 +08:00
|
|
|
}
|
|
|
|
|
2015-11-26 19:32:55 +08:00
|
|
|
.@{slider-prefix-cls}-mark-text,
|
|
|
|
.@{slider-prefix-cls}-dot {
|
2017-08-04 17:58:32 +08:00
|
|
|
cursor: not-allowed !important;
|
2015-07-13 07:59:38 +08:00
|
|
|
}
|
|
|
|
}
|
2015-08-19 12:20:03 +08:00
|
|
|
}
|
2017-01-05 12:05:24 +08:00
|
|
|
|
|
|
|
.vertical() {
|
|
|
|
&-vertical {
|
|
|
|
width: 12px;
|
|
|
|
height: 100%;
|
|
|
|
margin: 6px 10px;
|
2017-06-30 11:08:28 +08:00
|
|
|
padding: 0 4px;
|
|
|
|
|
|
|
|
.@{slider-prefix-cls}-rail {
|
|
|
|
width: 4px;
|
2019-02-15 10:48:07 +08:00
|
|
|
height: 100%;
|
2017-06-30 11:08:28 +08:00
|
|
|
}
|
2017-01-05 12:05:24 +08:00
|
|
|
|
|
|
|
.@{slider-prefix-cls}-track {
|
|
|
|
width: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.@{slider-prefix-cls}-handle {
|
|
|
|
margin-bottom: -7px;
|
2019-02-15 10:48:07 +08:00
|
|
|
margin-left: -5px;
|
2017-01-05 12:05:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.@{slider-prefix-cls}-mark {
|
|
|
|
top: 0;
|
2017-06-30 11:08:28 +08:00
|
|
|
left: 12px;
|
2017-01-05 12:05:24 +08:00
|
|
|
width: 18px;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.@{slider-prefix-cls}-mark-text {
|
|
|
|
left: 4px;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.@{slider-prefix-cls}-step {
|
|
|
|
width: 4px;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.@{slider-prefix-cls}-dot {
|
|
|
|
top: auto;
|
|
|
|
left: 2px;
|
|
|
|
margin-bottom: -4px;
|
|
|
|
}
|
|
|
|
}
|
2019-11-30 18:10:48 +08:00
|
|
|
|
|
|
|
&-tooltip {
|
|
|
|
// https://github.com/ant-design/ant-design/issues/20014
|
|
|
|
.@{ant-prefix}-tooltip-inner {
|
|
|
|
min-width: unset;
|
|
|
|
}
|
|
|
|
}
|
2017-01-05 12:05:24 +08:00
|
|
|
}
|