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
.select-item(@size-class, @item-class) {
    .@{item-class} {
        margin: 0;
        line-height: normal;
        padding: 7px 16px;
        clear: both;
        color: @text-color;
        font-size: @font-size-base !important;
        white-space: nowrap;
        list-style: none;
        cursor: pointer;
        transition: background @transition-time @ease-in-out;
 
        &:hover{
            background: @background-color-select-hover;
        }
 
        &-focus {
            background: @background-color-select-hover;
        }
 
        &-disabled {
            color: @btn-disable-color;
            cursor: @cursor-disabled;
 
            &:hover {
                color: @btn-disable-color;
                background-color: #fff;
                cursor: @cursor-disabled;
            }
        }
 
        &-selected ,&-selected:hover{
            color: @primary-color;
            //background: @selected-color;
        }
 
        &-selected&-focus {
            //background: shade(@selected-color, 10%);
        }
 
        &-divided{
            margin-top: 5px;
            border-top: 1px solid @border-color-split;
            &:before{
                content: '';
                height: 5px;
                display: block;
                margin: 0 -16px;
                background-color: #fff;
                position: relative;
                top: -7px;
            }
        }
 
        &-enter{
            color: @primary-color;
            font-weight: bold;
            float: right;
        }
    }
 
    .@{size-class}-large .@{item-class} {
        padding: 7px 16px 8px;
        font-size: @font-size-base !important;
    }
    // http://browserhacks.com/
    // https://bugzilla.mozilla.org/show_bug.cgi?id=488725
    // fixed #1224 #1143 #1127
    @-moz-document url-prefix() {
        .@{item-class} {
            white-space: normal;
        }
    }
}