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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
| .tag {
| height: 24px;
| line-height: 20px;
| text-align: center;
| background: #ffffff;
| border-radius: 19px;
| border: 1px dashed #bcc4cc;
| font-size: 14px;
| font-weight: 400;
| color: #333333;
| font-family: PingFang SC, PingFang SC;
| padding: 2px 10px;
| white-space: nowrap;
| overflow: hidden;
| text-overflow: ellipsis;
| overflow: hidden;
| white-space: nowrap;
| text-overflow: ellipsis;
| color: #5a84ff;
| }
|
| // 浮动层
| .dropdown {
| width: 180px;
| max-height: 236px;
| overflow-y: auto;
| background: #ffffff;
| box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.16);
| border-radius: 6px 6px 6px 6px;
|
| :global(.cs-popper__arrow) {
| display: none;
| }
|
| :global(.cs-dropdown-menu__item) {
| padding-left: 19px;
| box-sizing: border-box;
| color: #333;
| font-family: PingFang SC, PingFang SC;
| font-weight: 400;
|
| &:hover {
| width: 172px;
| height: 32px;
| background: #ececec;
| border-radius: 6px 6px 6px 6px;
| margin-left: 3px;
| color: #333;
| font-family: PingFang SC, PingFang SC;
| font-weight: 400;
| padding-left: 0;
| padding-right: 0;
|
| .fitTag {
| padding: 0 19px;
| box-sizing: border-box;
| background: #5a84ff;
| color: #ffffff;
| width: fit-content;
| max-width: 100%;
| height: 24px;
| background: #5a84ff;
| border-radius: 19px 19px 19px 19px;
| overflow: hidden;
| white-space: nowrap;
| text-overflow: ellipsis;
| }
| }
|
| .lineTag {
| width: 100%;
| overflow: hidden;
| white-space: nowrap;
| text-overflow: ellipsis;
| }
| }
| }
|
| .pl {
| height: 24px;
| background: #ffffff;
| border-radius: 19px;
| border: 1px dashed #bcc4cc;
| font-size: 14px;
| font-weight: 400;
| color: #333333;
| font-family: PingFang SC, PingFang SC;
| font-weight: 400;
| padding: 2px 10px;
| min-width: 112px;
| width: auto;
| white-space: nowrap;
| overflow: hidden;
| text-overflow: ellipsis;
| display: flex;
| align-items: center;
| justify-self: center;
| justify-content: center;
| }
|
| .tagClose {
| cursor: pointer;
| margin-left: 5px;
| }
|
|