diff options
author | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-08-10 20:48:56 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-08-10 20:48:56 +0200 |
commit | 1dac5bb390852bf679ea02cfb28dc5c7292c537f (patch) | |
tree | ca05693246ccc8e8d6d2925bd6e9be75b7000d3e /core/css | |
parent | ec31a29b3c0add4ab4adf1ba089282b7024b1eb1 (diff) | |
download | nextcloud-server-1dac5bb390852bf679ea02cfb28dc5c7292c537f.tar.gz nextcloud-server-1dac5bb390852bf679ea02cfb28dc5c7292c537f.zip |
fixed undo notification not showing
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/styles.css | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index 9da216a80d2..273d7443a8b 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -105,3 +105,6 @@ legend { padding:.2em; font-size:1.2em; } li.error { width:640px; margin:4em auto; padding:1em 1em 1em 4em; background:#fee url('../img/task-attention.png') .8em .8em no-repeat; border:1px solid #ccc; -moz-border-radius:10px; -webkit-border-radius:10px; border-radius:10px; } .hidden{ display:none; } +#notification{ z-index:400; background-color:#fc4; border:0; padding:0 .7em .3em; display:block; position:fixed; left:50%; top:0; +-moz-border-radius-bottomleft:1em; -webkit-border-bottom-left-radius:1em; border-bottom-left-radius:1em; +-moz-border-radius-bottomright:1em; -webkit-border-bottom-right-radius:1em; border-bottom-right-radius:1em; } |