summaryrefslogtreecommitdiffstats
path: root/WebContent/VAADIN/themes/valo/components/_popupview.scss
diff options
context:
space:
mode:
Diffstat (limited to 'WebContent/VAADIN/themes/valo/components/_popupview.scss')
-rw-r--r--WebContent/VAADIN/themes/valo/components/_popupview.scss17
1 files changed, 16 insertions, 1 deletions
diff --git a/WebContent/VAADIN/themes/valo/components/_popupview.scss b/WebContent/VAADIN/themes/valo/components/_popupview.scss
index 1a44eb47d6..794a6997de 100644
--- a/WebContent/VAADIN/themes/valo/components/_popupview.scss
+++ b/WebContent/VAADIN/themes/valo/components/_popupview.scss
@@ -1,9 +1,24 @@
+@include keyframes(v-popupview-animate-in) {
+ 0% {
+ @include transform(scale(0));
+ }
+}
+
@mixin valo-popupview ($primary-stylename: v-popupview) {
+ .#{$primary-stylename} {
+ @include valo-link-style;
+ }
+
.#{$primary-stylename}-popup {
- @include valo-overlay-style;
+ @include valo-overlay-style($animate-in: v-popupview-animate-in 120ms, $animate-out: (valo-placeholder-animate-out 120ms, valo-anim-fade-out 120ms));
.popupContent {
@include valo-panel-adjust-content-margins;
}
}
+
+ .#{$primary-stylename}-loading {
+ margin: $v-layout-spacing-vertical $v-layout-spacing-horizontal;
+ @include valo-spinner;
+ }
}