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
| .relationDialog {
| width: 100%;
| }
| .select {
| font-size: 14px;
| font-family: PingFang SC, PingFang SC;
| font-weight: 400;
| color: #5a84ff;
| cursor: pointer;
| }
|
| .header {
| width: 100%;
| height: 35px;
| display: flex;
| justify-content: flex-start;
| align-items: center;
| margin-bottom: 10px;
| .key {
| font-size: 12px;
| font-family: PingFang SC, PingFang SC;
| font-weight: 400;
| color: #35363b;
| margin-right: 10px;
| }
| }
| .table {
| width: 100%;
| height: calc(100% - 50px);
| }
| .selected {
| cursor: pointer;
| font-size: 14px;
| font-family: PingFang SC, PingFang SC;
| font-weight: 400;
| color: #5a84ff;
| &:hover {
| color: #5a84ff;
| opacity: 0.6;
| }
| }
|
| .selectVariable {
| :global(.cs-input__inner) {
| padding-right: 10px;
| }
| }
|
|