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
| @import '../../styles/theme.less';
|
| .selectObjModal {
| &-main {
| display: flex;
| }
|
| &-left {
| width: 55%;
| padding-top: 16px;
| border-right: 1px solid @divider-color;
| height: 488px;
| display: flex;
| flex-direction: column;
|
| &-search {
| padding-right: 16px;
| }
|
| &-main {
| padding-bottom: 16px;
| flex: 1;
| margin-top: 12px;
| overflow-y: auto;
| }
| }
|
| &-right {
| width: 45%;
| padding: 16px;
| height: 488px;
| overflow-y: auto;
|
| &-item {
| background-color: @main-color-1;
| border: 1px solid @main-color;
| border-radius: 2px;
| padding: 0 8px;
| display: flex;
| align-items: center;
| margin-bottom: 8px;
| width: fit-content;
|
| &-name {
| color: @main-color;
| }
|
| .selectObjModal-right-item-icon {
| font-size: 12px;
| color: rgba(0, 0, 0, 0.45);
| margin-left: 4px;
| }
| }
| }
|
| &-footer {
| display: flex;
| justify-content: space-between;
| align-items: center;
| padding-top: 16px;
| border-top: 1px solid @divider-color;
| }
|
| &-none {
| position: relative;
| top: 35%;
| }
|
| &-searchValue {
| color: @main-color;
| }
| }
|
|