summaryrefslogtreecommitdiffstats
path: root/core/css
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2016-02-19 12:09:46 +0100
committerVincent Petry <pvince81@owncloud.com>2016-02-22 17:25:32 +0100
commit8ea80e114ae508586947db614b37db6b35972a9c (patch)
tree608e6b0ff76787b4db1d5ccde39d2ca00859684a /core/css
parent6f29949bcaef690a93d7ecfb5cde8fa08ce36db7 (diff)
downloadnextcloud-server-8ea80e114ae508586947db614b37db6b35972a9c.tar.gz
nextcloud-server-8ea80e114ae508586947db614b37db6b35972a9c.zip
Accumulate notifications instead of blinking
This makes it possible to display multiple notifications. If the options.type is set to "error", it will also add a close button.
Diffstat (limited to 'core/css')
-rw-r--r--core/css/styles.css18
1 files changed, 18 insertions, 0 deletions
diff --git a/core/css/styles.css b/core/css/styles.css
index e78db6fde01..2fd350f3c4a 100644
--- a/core/css/styles.css
+++ b/core/css/styles.css
@@ -669,6 +669,24 @@ td.avatar {
cursor: pointer;
margin-left: 1em;
}
+#notification {
+ overflow-x: hidden;
+ overflow-y: auto;
+ max-height: 100px;
+}
+#notification .row {
+ position: relative;
+}
+#notification .row .close {
+ display: inline-block;
+ vertical-align: middle;
+ position: absolute;
+ right: 0;
+ top: 0;
+}
+#notification .row.closeable {
+ padding-right: 20px;
+}
tr .action:not(.permanent),
.selectedActions a {