Make the alerts container a zero-height static element, to avoid capturing clicks.

This commit is contained in:
Paulo Reis 2017-05-25 16:10:10 +01:00
parent 17dd64f48a
commit 749fc6a425

View file

@ -35,11 +35,8 @@
}
.global-alerts {
position: absolute;
z-index: 20;
top: 2px;
left: 0;
right: 0;
height: 0;
margin-top: 2px;
text-align: center;
.alert {
@ -49,6 +46,8 @@
padding: (@line-height-computed / 4);
font-size: 14px;
margin-bottom: (@line-height-computed / 4);
position: relative;
z-index: 20;
}
}
#try-reconnect-now-button {