fix(toolbar): let click through gradient (#4107)
Otherwise it can eat clicks on elements it is above, like YouTube and Etherpad controls.
This commit is contained in:
parent
603d161788
commit
f6c410610a
|
@ -3,6 +3,7 @@
|
||||||
transition: top .3s ease-in;
|
transition: top .3s ease-in;
|
||||||
height: 95px;
|
height: 95px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
pointer-events: none;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
padding: 25px 140px 0 140px;
|
padding: 25px 140px 0 140px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
|
|
@ -48,6 +48,7 @@
|
||||||
height: 160px;
|
height: 160px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
bottom: -160px;
|
bottom: -160px;
|
||||||
|
pointer-events: none;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
z-index: $toolbarBackgroundZ;
|
z-index: $toolbarBackgroundZ;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue