diff options
author | Fabian Lange <lange.fabian@gmail.com> | 2014-10-30 11:58:26 +0100 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2014-11-28 08:57:31 +0000 |
commit | a0f4c3dfb37b1e742b74a78d8133b1bb4a399052 (patch) | |
tree | a36784b787a2d714717ff97e3cf4fb7845871932 /WebContent | |
parent | d9829d6636e046b452fdf6f93194c55db9c3997c (diff) | |
download | vaadin-framework-a0f4c3dfb37b1e742b74a78d8133b1bb4a399052.tar.gz vaadin-framework-a0f4c3dfb37b1e742b74a78d8133b1bb4a399052.zip |
Window modalitycurtain will now respect $v-animations-enabled (#15135)
Change-Id: I80beea694c2a103aaf1fb479e1de48c515428fbb
Diffstat (limited to 'WebContent')
3 files changed, 15 insertions, 5 deletions
diff --git a/WebContent/VAADIN/themes/tests-valo-disabled-animations/_variables.scss b/WebContent/VAADIN/themes/tests-valo-disabled-animations/_variables.scss new file mode 100644 index 0000000000..d2411c675c --- /dev/null +++ b/WebContent/VAADIN/themes/tests-valo-disabled-animations/_variables.scss @@ -0,0 +1,3 @@ +$v-animations-enabled: false; + +@import "../valo/valo"; diff --git a/WebContent/VAADIN/themes/tests-valo-disabled-animations/styles.scss b/WebContent/VAADIN/themes/tests-valo-disabled-animations/styles.scss new file mode 100644 index 0000000000..b941c1b3d1 --- /dev/null +++ b/WebContent/VAADIN/themes/tests-valo-disabled-animations/styles.scss @@ -0,0 +1,6 @@ +@import "variables"; +@import "../tests-valo/valotest"; + +.tests-valo-disabled-animations { + @include valotest; +} diff --git a/WebContent/VAADIN/themes/valo/components/_window.scss b/WebContent/VAADIN/themes/valo/components/_window.scss index ce7a530c98..23fa5338c2 100644 --- a/WebContent/VAADIN/themes/valo/components/_window.scss +++ b/WebContent/VAADIN/themes/valo/components/_window.scss @@ -89,11 +89,12 @@ $v-window-modality-curtain-background-color: #222 !default; left: 0; @include radial-gradient(circle at 50% 50%, $v-window-modality-curtain-background-color, darken($v-window-modality-curtain-background-color, valo-gradient-opacity()), $fallback: $v-window-modality-curtain-background-color); @include opacity(max(0.2, 0.8 - valo-gradient-opacity()/100%)); - @include valo-animate-in-fade($duration: 400ms, $delay: 100ms); - - .v-op12 & { - // Opera 12 has a shitbreak with the fade-in (flickers) - @include animation(none); + @if $v-animations-enabled { + @include valo-animate-in-fade($duration: 400ms, $delay: 100ms); + .v-op12 & { + // Opera 12 has a shitbreak with the fade-in (flickers) + @include animation(none); + } } } |