forked from ReDEnergy/SessionSync
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtooltip-system.css
More file actions
47 lines (38 loc) · 740 Bytes
/
Copy pathtooltip-system.css
File metadata and controls
47 lines (38 loc) · 740 Bytes
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
/**
* Tooltip System
*/
#Session-Sync-Add-on-ReD .tooltip-system {
padding: 10px 15px;
margin: -16px 0 0 0;
color: #555;
background: #FFF;
text-align: center;
line-height: 20px;
border: 1px solid #CCC;
border-radius: 5px;
display: none;
position: fixed;
top: 1px;
left: 0;
z-index: 10000;
box-shadow: 0 5px 7px 1px #CCC;
box-sizing: border-box;
}
#Session-Sync-Add-on-ReD .tooltip-system:after {
content: " ";
width: 16px;
height: 16px;
margin: -8px 0 0 -9px;
background: #FFF;
border-style: solid;
border-color: #BBB;
border-width: 0 1px 1px 0;
position: absolute;
left: 50%;
top: 100%;
transform: rotate(45deg);
z-index: -100;
}
#Session-Sync-Add-on-ReD .tooltip-system[active] {
display: block;
}