blob: e5c1734b0c4b39afb9ec978d281b82ec5434cdf0 (
plain)
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
|
html.pushbar_locked {
overflow: hidden;
-ms-touch-action: none;
touch-action: none;
}
.pushbar_locked .pushbar_main_content.pushbar_blur {
filter: blur(15px);
}
.pushbar_overlay {
z-index: -999;
position: fixed;
width: 100%;
height: 100%;
top: 0;
left: 0;
will-change: opacity;
transition: opacity 0.5s ease;
opacity: 0;
background: #3c3442;
}
html.pushbar_locked .pushbar_overlay {
opacity: 0.8;
z-index: 999;
}
[data-pushbar-id] {
z-index: 1000;
position: fixed;
overflow-y: auto;
will-change: transform;
transition: transform 0.5s ease;
background: #fff;
}
[data-pushbar-direction="left"][data-pushbar-id], [data-pushbar-direction="right"][data-pushbar-id] {
top: 0;
width: 256px;
max-width: 100%;
height: 100%;
}
[data-pushbar-direction="top"][data-pushbar-id], [data-pushbar-direction="bottom"][data-pushbar-id] {
left: 0;
width: 100%;
min-height: 150px;
}
[data-pushbar-direction="left"][data-pushbar-id] {
left: 0;
transform: translateZ(0) translateX(-100%);
}
[data-pushbar-direction="right"][data-pushbar-id] {
right: 0;
transform: translateZ(0) translateX(100%);
}
[data-pushbar-direction="top"][data-pushbar-id] {
top: 0;
transform: translateZ(0) translateY(-100%);
}
[data-pushbar-direction="bottom"][data-pushbar-id] {
bottom: 0;
transform: translateZ(0) translateY(100%);
}
[data-pushbar-id].opened {
display: block;
transform: translateX(0px) translateY(0px);
}
|