bklLiudl
2024-05-25 484e5129e4c9a671c5660a556a24bd306f1fdd9b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
@slider-prefix-cls: ~"@{css-prefix}slider";
 
.@{slider-prefix-cls} {
    line-height: normal;
    &-wrap{
        width: 100%;
        height: @slider-height;
        margin: @slider-margin;
        background-color: @border-color-split;
        border-radius: @btn-border-radius-small;
        vertical-align: middle;
        position: relative;
        cursor: pointer;
    }
 
    &-button-wrap{
        .square(@slider-button-wrap-size);
        text-align: center;
        background-color: transparent;
        position: absolute;
        top: @slider-button-wrap-offset;
        transform: translateX(-50%);
 
        .@{tooltip-prefix-cls} {
            display: block;
            user-select: none;
        }
    }
 
    &-button{
        width: 12px;
        height: 12px;
        border: 2px solid @slider-color;
        border-radius: 50%;
        background-color: #fff;
        transition: all @transition-time linear;
        outline: 0;
 
        &:focus,
        &:hover,
        &-dragging
        {
            border-color: @primary-color;
            transform: scale(1.5);
        }
 
        &:hover{
            cursor: grab;
        }
        &-dragging,
        &-dragging:hover
        {
            cursor: grabbing;
        }
    }
 
    &-bar{
        height: @slider-height;
        background: @slider-color;
        border-radius: @btn-border-radius-small;
        position: absolute;
    }
 
    &-stop{
        position: absolute;
        .square(@slider-height);
        border-radius: 50%;
        background-color: #fff;
        transform: translateX(-50%);
    }
 
    &-marks{
        top: 0;
        left: 12px;
        width: 18px;
        height: 100%;
 
        &-item{
            position: absolute;
            transform: translateX(-50%);
            font-size: @font-size-base;
            color: @subsidiary-color;
            margin-top: 15px;
        }
    }
}
 
.@{slider-prefix-cls}-disabled{
    cursor: @cursor-disabled;
 
    .@{slider-prefix-cls}-wrap{
        background-color: @slider-disabled-color;
        cursor: @cursor-disabled;
    }
    .@{slider-prefix-cls}-bar{
        background-color: @slider-disabled-color;
    }
 
    .@{slider-prefix-cls}-button{
        border-color: @slider-disabled-color;
 
        &:hover,
        &-dragging
        {
            border-color: @slider-disabled-color;
        }
        &:hover{
            cursor: @cursor-disabled;
        }
        &-dragging,
        &-dragging:hover
        {
            cursor: @cursor-disabled;
        }
    }
}
 
.@{slider-prefix-cls}-input{
    .@{slider-prefix-cls}-wrap{
        width: auto;
        margin-right: 100px;
    }
 
    .@{input-number-prefix-cls}{
        float: right;
        margin-top: -14px;
    }
}