css: fix "Download" link being clickable when hidden (#7)

This commit is contained in:
Guillermo Rauch 2016-07-02 15:43:08 -07:00
parent b22d310c99
commit c0394e7764

View file

@ -74,6 +74,7 @@ header {
right: 20px;
opacity: 0;
transition: opacity 150ms ease-in;
pointer-events: none;
}
.update-indicator a {
@ -82,4 +83,5 @@ header {
.update-indicator.showing {
opacity: 1;
pointer-events: inherit;
}