zhao
2021-07-09 0821715ebc11d3934d0594a1cc2c39686d808906
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
.spirit(@left:0,@top:0){
     background: @spiritUrl no-repeat scroll @left @top transparent;
}
.imageUploader-button{
    width: @btnWidth;
    height: @btnHeight;
    line-height: @btnHeight;
    margin-right: 6px;
    overflow: hidden;
    position: relative;
 
    border: 1px solid #ddd;
    font-size: 12px;
    cursor: pointer;
    color: #333333;
    text-align: center;
    .gradient(#FDFCFC,#EEEEEE);
    .border-radius(3px);
 
    .file-input-wrapper{
        width: @btnWidth;
        height: @btnHeight;
    }
}
 
.imageUploader-button:hover {
    color: #333333;
    text-decoration: none;
    border:1px solid #369BD7;
    .gradient(#FDFCFC,#E2F1FC);
}
.imageUploader-button:active{
    .gradient(#E2F1FC,#E2F1FC);
    outline: 0 none;
}
.uploader-button-disabled,.uploader-button-disabled:hover{
    border: 1px solid #EEEEEE;
    color: #404040;
    background: #EEEEEE;
}
.upload-count-wrapper{
    margin-top:4px;
    color:#ccc;
    em{
        color:#999999;
        font-style: normal;
    }
}