summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorMichael Gapczynski <GapczynskiM@gmail.com>2011-08-19 11:00:42 -0400
committerMichael Gapczynski <GapczynskiM@gmail.com>2011-08-19 11:00:42 -0400
commit60019278e7ea1255095d13ebae9331a6d1930803 (patch)
tree1fe1f8bbdb57088fb35cff84a51f83a34557b5d2 /core
parent5d310ebf921df64d67cd5ea7fc5705dff20890f8 (diff)
downloadnextcloud-server-60019278e7ea1255095d13ebae9331a6d1930803.tar.gz
nextcloud-server-60019278e7ea1255095d13ebae9331a6d1930803.zip
Fix notifications bar being visible on pages without files scripts
Diffstat (limited to 'core')
-rw-r--r--core/css/styles.css2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/css/styles.css b/core/css/styles.css
index c661a9dd617..ea8db3544a5 100644
--- a/core/css/styles.css
+++ b/core/css/styles.css
@@ -93,7 +93,7 @@ input[type="submit"].highlight{ background:#ffc100; border:1px solid #db0; text-
/* VARIOUS REUSABLE SELECTORS */
.hidden { display:none; }
-#notification { z-index:101; cursor:pointer; 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; }
+#notification { z-index:101; cursor:pointer; background-color:#fc4; border:0; padding:0 .7em .3em; display:none; 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; }
.action, .selectedActions a, #logout { opacity:.3; -webkit-transition:opacity 500ms; -moz-transition:opacity 500ms; -o-transition:opacity 500ms; transition:opacity 500ms; }
.action:hover, .selectedActions a:hover, #logout:hover { opacity:1; }