hjg
2023-11-18 bb48edb3d9faaaeab0088151c86fc24137acdb08
提交 | 用户 | 时间
58d006 1 .enable_plugin_dropzone() when(@enable-plugin-dropzone = true) {
A 2
3 .dropzone {
4   .border-radius(0);
5   border: 1px solid rgba(0, 0, 0, 0.06);
6   
7   &.well {
8     background-color: @well-bg;
9     border: 1px solid @well-border;
10   }
11   
12   .dz-default.dz-message {
13     background-image: none;
14     font-size: @font-size-dropzone-message;
15     text-align: center;
16     line-height: 32px;
17
18     left: 0;
19     width: 100%;
20     margin-left: auto;
21
22     span {
23         display:inline;
24         color:#555;
25         
26         .upload-icon {
27             .opacity(0.7);
28             margin-top:8px;
29             cursor:pointer;
30             
31             &:hover {
32                 .opacity(1);
33             }
34
35         }
36     }
37   }
38
39 }
40
41 .dropzone .dz-preview.dz-image-preview {
42   background-color: transparent;
43 }
44
45
46
47
48 }
49 .enable_plugin_dropzone();