summaryrefslogtreecommitdiffstats
path: root/WebContent/VAADIN/themes/base
diff options
context:
space:
mode:
authorJouni Koivuviita <jouni@vaadin.com>2014-06-13 11:18:54 +0300
committerJouni Koivuviita <jouni@vaadin.com>2014-06-18 07:55:54 +0000
commit7b565d099e0723593c7ec187303a27242e766c1c (patch)
tree14ff3da530588232b0e55b089e78142a330c6b55 /WebContent/VAADIN/themes/base
parent02855b224dbc2ce9e906644da48f2b5a3303b5fe (diff)
downloadvaadin-framework-7b565d099e0723593c7ec187303a27242e766c1c.tar.gz
vaadin-framework-7b565d099e0723593c7ec187303a27242e766c1c.zip
Fix notification default delay
The default hiding delay should be 0ms instead of 1000ms, according to the server side class at least. Change-Id: I064c01b2fdc9df4cbcbd74def8e494add22ee749
Diffstat (limited to 'WebContent/VAADIN/themes/base')
-rw-r--r--WebContent/VAADIN/themes/base/notification/notification.scss4
1 files changed, 2 insertions, 2 deletions
diff --git a/WebContent/VAADIN/themes/base/notification/notification.scss b/WebContent/VAADIN/themes/base/notification/notification.scss
index 6eafcda6bc..0fc7801777 100644
--- a/WebContent/VAADIN/themes/base/notification/notification.scss
+++ b/WebContent/VAADIN/themes/base/notification/notification.scss
@@ -41,7 +41,7 @@
margin: 0;
}
.#{$primaryStyleName}-animate-out {
- @include animation(animate-out 400ms 1s);
+ @include animation(v-notification-animate-out 400ms);
}
.#{$primaryStyleName} {
@@ -65,7 +65,7 @@
}
-@include keyframes(animate-out) {
+@include keyframes(v-notification-animate-out) {
100% {
opacity: 0;
}