ant-design/components/slider/style/index.less

197 lines
3.8 KiB
Plaintext
Raw Normal View History

@import "../../style/themes/default";
@import "../../style/mixins/index";
2015-07-13 07:59:38 +08:00
@slider-prefix-cls: ~"@{ant-prefix}-slider";
2015-07-14 12:07:04 +08:00
// slider color
@slider-disabled-color: @disabled-color;
2015-07-14 12:07:04 +08:00
// tooltip
2015-07-15 15:48:47 +08:00
@slider-tooltip-color: #fff;
2016-11-08 20:50:59 +08:00
@slider-tooltip-bg: tint(@text-color, 4%);
2015-07-15 15:48:47 +08:00
@slider-tooltip-arrow-width: 4px;
@slider-tooltip-distance: @slider-tooltip-arrow-width + 4px;
2015-07-15 15:48:47 +08:00
@slider-tooltip-arrow-color: @slider-tooltip-bg;
2015-07-13 07:59:38 +08:00
2015-08-20 16:55:42 +08:00
.@{slider-prefix-cls} {
.reset-component;
2015-07-13 07:59:38 +08:00
position: relative;
2016-11-18 16:21:37 +08:00
margin: 10px 6px;
padding: 4px 0;
2015-09-23 11:35:44 +08:00
height: 12px;
2015-08-19 12:20:03 +08:00
cursor: pointer;
2015-07-13 07:59:38 +08:00
.vertical();
&-with-marks {
margin-bottom: 28px;
}
&-rail {
position: absolute;
width: 100%;
height: 4px;
border-radius: 2px;
background-color: @border-color-split;
transition: background-color 0.3s ease;
}
2015-07-13 07:59:38 +08:00
&-track {
position: absolute;
height: 4px;
border-radius: @border-radius-base;
background-color: tint(@primary-color, 60%);
2015-08-19 12:20:03 +08:00
transition: background-color 0.3s ease;
}
2015-07-13 07:59:38 +08:00
&-handle {
position: absolute;
margin-left: -7px;
margin-top: -5px;
width: 14px;
height: 14px;
cursor: pointer;
border-radius: 50%;
border: solid 2px tint(@primary-color, 50%);
background-color: @component-background;
2016-10-28 17:42:33 +08:00
transition: border-color 0.3s ease, transform .3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
2015-07-13 07:59:38 +08:00
&:hover {
border-color: @primary-5;
2016-10-28 17:42:33 +08:00
transform: scale(1.2);
transform-origin: center center;
2015-07-13 07:59:38 +08:00
}
2015-08-19 12:20:03 +08:00
2016-04-25 15:26:09 +08:00
&:active {
box-shadow: 0 0 0 2px fadeout(@primary-color, 80%);
2015-07-13 07:59:38 +08:00
}
}
&:hover {
.@{slider-prefix-cls}-rail {
background-color: #e1e1e1;
}
.@{slider-prefix-cls}-track {
background-color: tint(@primary-color, 40%);
}
.@{slider-prefix-cls}-handle {
border-color: @primary-5;
}
}
2015-07-13 07:59:38 +08:00
&-mark {
position: absolute;
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;
vertical-align: middle;
text-align: center;
cursor: pointer;
color: @text-color-secondary;
2015-07-13 07:59:38 +08:00
&-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;
margin-left: -4px;
width: 8px;
height: 8px;
2016-12-27 17:04:10 +08:00
border: 2px solid @border-color-split;
background-color: @component-background;
2015-07-13 07:59:38 +08:00
cursor: pointer;
border-radius: 50%;
vertical-align: middle;
&:first-child {
margin-left: -4px;
}
&:last-child {
margin-left: -4px;
}
&-active {
border-color: tint(@primary-color, 50%);
}
}
&-disabled {
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 {
2017-08-04 17:58:32 +08:00
border-color: @slider-disabled-color !important;
background-color: @component-background;
2015-07-13 07:59:38 +08:00
cursor: not-allowed;
box-shadow: none;
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
}
.vertical() {
&-vertical {
width: 12px;
height: 100%;
margin: 6px 10px;
padding: 0 4px;
.@{slider-prefix-cls}-rail {
height: 100%;
width: 4px;
}
.@{slider-prefix-cls}-track {
width: 4px;
}
.@{slider-prefix-cls}-handle {
margin-left: -5px;
margin-bottom: -7px;
}
.@{slider-prefix-cls}-mark {
top: 0;
left: 12px;
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;
}
}
}