-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathposition-client.css
59 lines (52 loc) · 1.03 KB
/
position-client.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
.constellation-trigger-target {
width: 50px;
height: 50px;
position: fixed;
left: 10px;
bottom: 10px;
background-color: rgba(240,255,255,.8);
border: 10px solid rgba(127,127,255,0.8);
border-radius: 25px;
z-index: 9999999997;
text-align: center;
padding-top: 4px;
cursor: pointer;
font-size: 16px;
box-sizing: border-box;
line-height: 23px;
font-family: Arial;
pointer-events: auto;
}
.hide-constellation-trigger-target {
display: none;
}
#Constellation.constellation-position-left-top {
left: 0px;
top: 0px;
right: auto;
bottom: auto;
}
#Constellation.constellation-position-left-bottom {
left: 0px;
top: auto;
right: auto;
bottom: 0px;
}
#Constellation.constellation-position-right-top {
left: auto;
top: 0px;
right: 0px;
bottom: auto;
}
#Constellation.constellation-position-right-bottom {
left: auto;
top: auto;
right: 0px;
bottom: 0px;
}
#Constellation .constellation-close-ui {
color: #EB4C16;
}
#Constellation .constellation-close-ui:hover {
color: #ff0000 !important;
}