-
Notifications
You must be signed in to change notification settings - Fork 0
/
tooltip.css
67 lines (59 loc) · 1.45 KB
/
tooltip.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
.tip-bubble
{
font-size: 1.0em;
padding: 4px 8px 4px 8px;
text-align: center;
position: fixed;
z-index: 1000;
border-radius: 2px;
display: inline-block;
opacity: 0;
max-width: 300px;
}
.tip-bubble:after
{
content: '';
position: absolute;
margin-left: -8px;
width: 0;
height: 0;
}
.tip-bubble-center-point:after
{
left: 50%;
right: auto;
}
.tip-bubble-left-point:after
{
left: 10px;
right: auto;
}
.tip-bubble-right-point:after
{
right: 10px;
left: auto;
}
.tip-arrow-top:after
{
border-bottom: solid 8px;
border-right: solid 8px transparent;
border-left: solid 8px transparent;
bottom: 100%;
}
.tip-arrow-bottom:after
{
border-top: solid 8px;
border-right: solid 8px transparent;
border-left: solid 8px transparent;
top: 100%;
}
.tip-theme-light:after
{
border-bottom-color: #fff;
border-top-color: #fff;
}
.tip-theme-dark:after
{
border-bottom-color: #000;
border-top-color: #000;
}