diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-07-30 18:02:53 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-07-30 18:02:53 +0200 |
commit | a6484fbda926e0f9c42e6512f20ccf8d3bf4e8c5 (patch) | |
tree | 277d59e3d74ac0b8209a331d68e46501a6c795f2 /core/js/js.js | |
parent | be2a3c7398e23c5afbdc1f13b2641886d170d01c (diff) | |
download | nextcloud-server-a6484fbda926e0f9c42e6512f20ccf8d3bf4e8c5.tar.gz nextcloud-server-a6484fbda926e0f9c42e6512f20ccf8d3bf4e8c5.zip |
fix yellow notification style
Diffstat (limited to 'core/js/js.js')
-rw-r--r-- | core/js/js.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/js/js.js b/core/js/js.js index 5c9d7bf0141..60f9cc11a58 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -696,7 +696,7 @@ OC.Notification={ var notification = $('#notification'); if((notification.filter('span.undo').length == 1) || OC.Notification.isHidden()){ notification.html(html); - notification.fadeIn().css("display","inline"); + notification.fadeIn().css('display','inline-block'); }else{ OC.Notification.queuedNotifications.push(html); } @@ -710,7 +710,7 @@ OC.Notification={ var notification = $('#notification'); if((notification.filter('span.undo').length == 1) || OC.Notification.isHidden()){ notification.text(text); - notification.fadeIn().css("display","inline"); + notification.fadeIn().css('display','inline-block'); }else{ OC.Notification.queuedNotifications.push($('<div/>').text(text).html()); } |