diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-07-30 18:00:46 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-07-30 18:00:46 +0200 |
commit | be2a3c7398e23c5afbdc1f13b2641886d170d01c (patch) | |
tree | 53fed800daae441cfa4483ea49a6b836a36c4d8d /core | |
parent | 84ea393393c64b51bc162209f740b1146a1076d5 (diff) | |
download | nextcloud-server-be2a3c7398e23c5afbdc1f13b2641886d170d01c.tar.gz nextcloud-server-be2a3c7398e23c5afbdc1f13b2641886d170d01c.zip |
fix notification preventing top bar clickability, fix #9680
Diffstat (limited to 'core')
-rw-r--r-- | core/css/styles.css | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index c7d858a4feb..057b8cfeee7 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -680,7 +680,13 @@ label.infield { .center { text-align:center; } .inlineblock { display: inline-block; } -#notification-container { position: fixed; top: 0px; width: 100%; text-align: center; z-index: 101; line-height: 1.2;} +#notification-container { + position: absolute; + top: 0; + width: 100%; + text-align: center; + line-height: 1.2; +} #notification, #update-notification { z-index: 101; background-color: #fc4; |