forked from sdodonnell/ps-edit-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtoolbar.css
More file actions
52 lines (42 loc) · 752 Bytes
/
toolbar.css
File metadata and controls
52 lines (42 loc) · 752 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
48
49
50
51
.ps-edit-toolbar {
position: absolute;
right: 0;
top: 0;
}
.ps-edit-toolbar > div {
display: flex;
gap: 10px;
}
.ps-edit-toolbar.hide > div {
visibility: hidden;
}
.ps-edit-toolbar img {
height: 16px;
opacity: 0.5;
}
.ps-edit-toolbar img:hover {
opacity: 1;
}
.ps-gallery-slide-toolbar {
position: absolute;
top: 0;
left: -20px;
width: 15px;
font-family: 'VisbyCF';
font-weight: bold;
}
.ps-gallery-slide-toolbar img {
opacity: 0.5;
}
.ps-gallery-slide-toolbar img:hover {
opacity: 1;
}
.ps-gallery-slide-toolbar > div {
display: flex;
flex-direction: column;
text-align: center;
gap: 10px;
}
.ps-gallery-slide-toolbar.hide > div {
visibility: hidden;
}