ant-design/style/components/slider.less

169 lines
3.4 KiB
Plaintext
Raw Normal View History

2015-07-13 07:59:38 +08:00
@sliderClass: ~"@{css-prefix}slider";
2015-07-14 12:07:04 +08:00
// slider color
2015-07-15 15:48:47 +08:00
@slider-disabled-color: #ccc;
2015-07-14 12:07:04 +08:00
// tooltip
2015-07-15 15:48:47 +08:00
@slider-tooltip-color: #fff;
@slider-tooltip-bg: tint(#666, 4%);
@slider-tooltip-arrow-width: 4px;
@slider-tooltip-distance: @slider-tooltip-arrow-width+4;
@slider-tooltip-arrow-color: @slider-tooltip-bg;
2015-07-13 07:59:38 +08:00
.@{sliderClass} {
position: relative;
2015-07-14 12:07:04 +08:00
margin: 12px 0;
2015-07-16 10:36:24 +08:00
margin-left: 7px;
2015-07-13 07:59:38 +08:00
height: 4px;
2015-07-16 11:49:46 +08:00
width: auto;
2015-07-13 07:59:38 +08:00
border-radius: @border-radius-base;
background-color: #e9e9e9;
&-track {
position: absolute;
left: 0;
height: 4px;
border-radius: @border-radius-base;
background-color: tint(@primary-color, 60%);
z-index: 1;
}
&-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: #fff;
z-index: 2;
&:hover {
border-color: tint(@primary-color, 20%);
}
&-active {
&:active {
2015-07-17 15:36:12 +08:00
@color-rgba: rgba(red(@primary-color), green(@primary-color), blue(@primary-color), .2);
2015-07-13 07:59:38 +08:00
border-color: tint(@primary-color, 20%);
2015-07-17 15:36:12 +08:00
box-shadow: 0 0 0 2px @color-rgba;
2015-07-13 07:59:38 +08:00
}
}
}
&-mark {
position: absolute;
2015-07-14 12:07:04 +08:00
top: 10px;
2015-07-13 07:59:38 +08:00
left: 0px;
width: 100%;
font-size: 12px;
z-index: 3;
}
&-mark-text {
position: absolute;
display: inline-block;
vertical-align: middle;
text-align: center;
cursor: pointer;
color: #999;
&-active {
color: #666;
}
}
&-step {
position: absolute;
width: 100%;
height: 4px;
background: transparent;
z-index: 1;
}
&-dot {
position: absolute;
top: -2px;
margin-left: -4px;
width: 8px;
height: 8px;
border: 2px solid #e9e9e9;
background-color: #fff;
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 {
2015-07-14 12:07:04 +08:00
background-color: #e9e9e9;
2015-07-13 07:59:38 +08:00
.@{sliderClass}-track {
2015-07-15 15:48:47 +08:00
background-color: @slider-disabled-color;
2015-07-13 07:59:38 +08:00
}
.@{sliderClass}-handle {
2015-07-15 15:48:47 +08:00
border-color: @slider-disabled-color;
2015-07-13 07:59:38 +08:00
background-color: #fff;
cursor: not-allowed;
}
.@{sliderClass}-mark-text, .dot {
cursor: not-allowed!important;
}
}
2015-07-14 12:07:04 +08:00
// slider tooltip style
&-tooltip {
position: absolute;
left: -9999px;
top: -9999px;
z-index: 4;
visibility: visible;
&-hidden {
display: none;
}
&-placement-top {
2015-07-15 15:48:47 +08:00
padding: @slider-tooltip-arrow-width 0 @slider-tooltip-distance 0;
2015-07-14 12:07:04 +08:00
}
&-inner {
padding: 6px 0;
width: 24px;
height: 24px;
font-size: @font-size-base;
line-height: 1;
2015-07-15 15:48:47 +08:00
color: @slider-tooltip-color;
2015-07-14 12:07:04 +08:00
text-align: center;
text-decoration: none;
2015-07-15 15:48:47 +08:00
background-color: @slider-tooltip-bg;
2015-07-14 12:07:04 +08:00
border-radius: @border-radius-base;
}
&-arrow {
position: absolute;
width: 0;
height: 0;
border-color: transparent;
border-style: solid;
}
&-placement-top &-arrow {
2015-07-15 15:48:47 +08:00
bottom: @slider-tooltip-distance - @slider-tooltip-arrow-width;
2015-07-14 12:07:04 +08:00
left: 50%;
2015-07-15 15:48:47 +08:00
margin-left: -@slider-tooltip-arrow-width;
border-width: @slider-tooltip-arrow-width @slider-tooltip-arrow-width 0;
border-top-color: @slider-tooltip-arrow-color;
2015-07-14 12:07:04 +08:00
}
}
2015-07-13 07:59:38 +08:00
}