username@email.com
2023-02-28 67a0042c5f29e4bb0e0b82f6190f2bc51480b45c
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
.z-select {
    position: relative;
    cursor: pointer;
    width: 100%;
    height: 28px;
    line-height: 26px;
    border:1px solid #ccc;
    padding-left:4px;
}
.z-select.z-select-focus {
    border:1px solid #039cfd;
}
.z-select-placeholder {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -khtml-user-select: none;
    user-select: none;
    color:#999;
    overflow:hidden;
    white-space: nowrap; 
    text-overflow: ellipsis;
}
.z-select-option {
    position:absolute;
    border:1px solid #dedede;
    width:100%;
    background:#fff;
    z-index:1;
    top:28px;
    left:-1px;
}
.z-select-option-content {
    position:relative;
    width:100%;
    overflow:auto;
}
.z-select-option .z-selectitem-li {
    min-height: 26px;
    line-height: 26px;
    overflow: hidden;
    cursor: pointer;
    padding:0px 5px;
    overflow:hidden;
    white-space: nowrap; 
    text-overflow: ellipsis;
}
.z-select-option .z-selectitem-li:hover {
    background-color:#eee;
}
.z-selectitem-li.selected {
     background-color:#3498DB!important;
     color:#fff;
}
.z-select-option-search {
    border-top: 1px solid #ccc;
    position:absolute;
    border-bottom:0px;
    left:0px;
    height:25px;
    width:100%;
    line-height:24px;
}
.z-select-option-search >input{
    color: #000;
    border-radius: 0;
    border: none;
    box-shadow: none;
    font-size: 9pt;
    height: 28px;
    padding-top: 0;
    padding-bottom: 1px;
    padding-right: 0;
    padding-left: 5px;
    resize: none;
    background-color: #fff;
    background-image: none;
    height: 24px;
    line-height: 1.42857143;
    margin: 0px;
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
 
    width: 100%;
    outline: none;
    padding: 0;
    padding-left: 10px;
}
.z-select-option-search .input-query {
    position:absolute;
    right: 4px;
    top: 0px;
    color: #ccc;
    font-size: 16px;
    cursor:default;
}
.z-select-node-cb {
    border: 0 none;
    margin: 0;
    vertical-align: top;
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    padding: 2px;
    margin-top: 4.5px;
    margin-right: 5px;
}