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
.app-control-dataview {
padding: 0 10px;
.app-control-dataview__load--more {
text-align: center;
font-size: 16px;
margin: 20px 0;
width: 100%;
cursor: pointer;
}
.app-control-dataview__content {
margin: 0px;
position: relative;
align-content: start;
overflow-y: auto;
overflow-x: hidden;
flex: auto;
.ivu-col {
padding: 10px;
margin-bottom: 10px;
}
}
.app-control-dataview__content__item {
.el-card__body {
padding: 8px;
}
.top__title {
text-align: center;
}
.top__description {
max-width: 150px;
padding-left: 5px;
text-align: justify;
text-justify: newspaper;
word-break: break-all;
}
.bottom__action {
height: 26px;
margin: 6px 0 4px 4px;
cursor: pointer;
padding: 0 15px;
&:disabled, &:disabled:hover {
cursor: no-drop;
}
.bottom__action__icon {
padding-right: 6px;
}
}
}
.app-control-dataview__content__group {
.group__title {
margin: 0 0 0 12px;
}
.group__content {
min-height: 170px;
}
.group__empty {
width: 100%;
padding: 10px 0;
text-align: center;
}
}
.app-control-panel {
overflow: visible;
.control-content {
overflow: initial;
}
}
}