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
| @import (reference) 'dingtalk-theme/dingtalk-x/mob.less';
|
| .fileShow {
| position: relative;
| border-radius: 2px;
| background-color: @common_bg_color;
| margin-top: 8px;
|
| &-imgBox {
| height: 100%;
| width: 100%;
| background-color: @common_bg_color;
| }
|
| &-img {
| height: 100%;
| width: 100%;
| }
|
| &-elseFile {
| height: 100%;
| width: 100%;
| font-size: 12px;
| display: flex;
| align-items: center;
| justify-content: center;
| }
|
| &-title {
| position: absolute;
| color: @common_bg_z1_color;
| bottom: 0;
| width: 100%;
| height: 20px;
| background: rgba(23, 26, 29, 0.6);
| border-radius: 2px;
| font-size: 12px;
| line-height: 20px;
| text-align: center;
|
| &-text {
| }
|
|
| }
|
| &-del {
| font-size: 16px;
| position: absolute;
| color: @theme_danger1_color;
| top: -8px;
| right: -8px;
| }
| }
|
|