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
69
70
71
72
| .role {
| padding: @pageMargin;
| height: 100%;
| overflow: hidden;
|
| &-bg {
| border-radius: @border-radius-base;
| background-color: #ffffff;
| display: flex;
| max-height: 100%;
| }
|
| &-side {
| width: 300px;
| display: flex;
| flex-direction: column;
|
| &-search {
| padding: 16px;
| display: flex;
| align-items: center;
|
| &-margin {
| margin-right: 16px;
| }
| }
|
| &-list {
| flex: 1;
| padding-bottom: 16px;
| overflow-y: auto;
|
| &-title {
| color: rgba(0, 0, 0, 0.45);
| padding: 8px 16px;
| }
|
| &-none {
| padding: 8px 16px;
| }
|
| &-edit {
| color: @main-color;
| background-color: @main-color-1;
| padding: 8px 16px;
| }
| }
| }
|
| &-divider {
| width: 1px;
| background-color: @divider-color;
| margin: 16px 0;
| }
|
| &-main {
| flex: 1;
| padding: 16px 16px 16px 24px;
| display: flex;
| flex-direction: column;
|
| &-row {
| margin-bottom: 16px;
| }
|
| &-power {
| flex: 1;
| overflow: hidden;
| overflow-y: auto;
| }
| }
| }
|
|