Administrator
2022-09-14 58d006e05dcf2a20d0ec5367dd03d66a61db6849
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
.enable_plugin_dropzone() when(@enable-plugin-dropzone = true) {
 
.dropzone {
  .border-radius(0);
  border: 1px solid rgba(0, 0, 0, 0.06);
  
  &.well {
    background-color: @well-bg;
    border: 1px solid @well-border;
  }
  
  .dz-default.dz-message {
    background-image: none;
    font-size: @font-size-dropzone-message;
    text-align: center;
    line-height: 32px;
 
    left: 0;
    width: 100%;
    margin-left: auto;
 
    span {
        display:inline;
        color:#555;
        
        .upload-icon {
            .opacity(0.7);
            margin-top:8px;
            cursor:pointer;
            
            &:hover {
                .opacity(1);
            }
 
        }
    }
  }
 
}
 
.dropzone .dz-preview.dz-image-preview {
  background-color: transparent;
}
 
 
 
 
}
.enable_plugin_dropzone();