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
| @import '../../styles/theme.less';
|
| .nameCard {
| .ant-popover-inner {
| min-width: 250px;
| background-color: rgba(0, 0, 0, 0.75);
| border-radius: 5px;
| }
|
| .ant-popover-arrow-content {
| background-color: rgba(0, 0, 0, 0.75);
|
| &::before {
| background: linear-gradient(to left, rgba(0, 0, 0, 0.75) 50%, rgba(0, 0, 0, 0.75) 50%) no-repeat -10px -10px;
| }
| }
|
| .ant-popover-inner-content {
| color: #ffffff;
| }
|
| &-name {
| display: inline-block;
| cursor: pointer;
| border-bottom: 1px dashed #000000;
| padding-bottom: 2px;
|
| &:hover,
| &-active {
| color: @main-color !important;
| border-color: @main-color;
| }
| }
|
| &-content {
| position: relative;
| min-width: 150px;
| }
|
| .public-rightBorder {
| &::before {
| border-color: #ffffff;
| }
| }
| }
|
|