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 21:29:45 +0200 |
commit | 57c954a345a21b0e9b2815b9ae015888ce66acbd (patch) | |
tree | b3fd51c8f1e5408508272890e0019279f15f43b9 | |
parent | 24c8774b7ff448c12f6514933b86ebfbc2019440 (diff) | |
download | nextcloud-server-57c954a345a21b0e9b2815b9ae015888ce66acbd.tar.gz nextcloud-server-57c954a345a21b0e9b2815b9ae015888ce66acbd.zip |
fix notification preventing top bar clickability, fix #9680
-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 17ed3fbc74c..4ac43f439b4 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; |