-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
96 lines (71 loc) · 1.59 KB
/
index.css
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
.pop-tips{
text-align: center;
border-radius: 4px;
visibility: visible;
padding:9px 8px;
box-shadow: 0px 4px 10px 0px rgba(29, 29, 29, 0.15);
color: white;
}
.pop-tips--danger{
color: white;
background-color:#F56C6C;
}
.pop-tips--light{
color: #F56C6C;
background-color:#ffffff;
}
.pop-tips--danger.el-popper[x-placement^=right] .popper__arrow::after{
border-right-color:#F56C6C;
}
.pop-tips--light.el-popper[x-placement^=right] .popper__arrow::after{
border-right-color:#ffffff;
}
.pop-tips--danger.el-popper[x-placement^=top] .popper__arrow::after{
border-top-color:#F56C6C;
}
.pop-tips--light.el-popper[x-placement^=top] .popper__arrow::after{
border-top-color:#ffffff;
}
.pop-tips--danger.el-popper[x-placement^=bottom] .popper__arrow::after{
border-bottom-color:#F56C6C;
}
.pop-tips--light.el-popper[x-placement^=bottom] .popper__arrow::after{
border-bottom-color:#ffffff;
}
.pop-tips--hidden{
visibility: hidden !important;
}
.pop-tips__top{
bottom:calc(100% + 8px);
}
.pop-tips__right{
left:calc(100% + 8px);
top:0;
}
.pop-tips__bottom{
top:calc(100% + 8px);
}
.pop-tips__top::after {
content: " ";
position: absolute;
top: 100%;
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-width: 5px;
border-style: solid;
border-color: #F56C6C transparent transparent transparent;
}
.pop-tips__right::after {
content: " ";
position: absolute;
top: 50%;
left: 0%;
margin-top: -5px;
margin-left: -10px;
border-width: 5px;
border-style: solid;
border-style: solid;
border-color: transparent #F56C6C transparent transparent;
}