Переглянути джерело
fix(toolbar): let click through gradient (#4107)
Otherwise it can eat clicks on elements it is above,
like YouTube and Etherpad controls.
j8
virtuacoplenny
6 роки тому
Аккаунт користувача з таким Email не знайдено
|
@@ -3,6 +3,7 @@
|
3
|
3
|
transition: top .3s ease-in;
|
4
|
4
|
height: 95px;
|
5
|
5
|
width: 100%;
|
|
6
|
+ pointer-events: none;
|
6
|
7
|
position: absolute;
|
7
|
8
|
padding: 25px 140px 0 140px;
|
8
|
9
|
text-align: center;
|
|
@@ -48,6 +48,7 @@
|
48
|
48
|
height: 160px;
|
49
|
49
|
width: 100%;
|
50
|
50
|
bottom: -160px;
|
|
51
|
+ pointer-events: none;
|
51
|
52
|
position: absolute;
|
52
|
53
|
z-index: $toolbarBackgroundZ;
|
53
|
54
|
}
|