From a5052720216baeb5014a4e3b0027367c8ab7ed67 Mon Sep 17 00:00:00 2001 From: Jouni Koivuviita Date: Thu, 21 Aug 2014 15:16:49 +0300 Subject: [PATCH] Bugfixes to Valo (#14490) MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit valo-component-group mixin doesn’t have any parameters. Ruby compiler produces an error, but Java compiler works anyway (#14479). Missing semicolon after a line before @include produces an error with the Ruby compiler, but passes compilation with the Java compiler (#14480). Change-Id: If6fa2b5039f4d9daa7ee73380f089b533c2cce0f --- WebContent/VAADIN/themes/valo/components/_csslayout.scss | 2 +- WebContent/VAADIN/themes/valo/components/_label.scss | 4 ++-- WebContent/VAADIN/themes/valo/components/_textfield.scss | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/WebContent/VAADIN/themes/valo/components/_csslayout.scss b/WebContent/VAADIN/themes/valo/components/_csslayout.scss index 95bdcc5a3a..b0fa4362e7 100644 --- a/WebContent/VAADIN/themes/valo/components/_csslayout.scss +++ b/WebContent/VAADIN/themes/valo/components/_csslayout.scss @@ -14,7 +14,7 @@ $v-component-group-spacing: null !default; } .#{$primary-stylename}-v-component-group { - @include valo-component-group($primary-stylename); + @include valo-component-group; } } } diff --git a/WebContent/VAADIN/themes/valo/components/_label.scss b/WebContent/VAADIN/themes/valo/components/_label.scss index 655ef6e1cc..7f4fef58d9 100644 --- a/WebContent/VAADIN/themes/valo/components/_label.scss +++ b/WebContent/VAADIN/themes/valo/components/_label.scss @@ -79,7 +79,7 @@ $v-letter-spacing--h4: 0 !default; > h4 > .#{$primary-stylename}-h1, > .#{$primary-stylename}-h2, - > .#{$primary-stylename}-h3 + > .#{$primary-stylename}-h3, > .#{$primary-stylename}-h4 { &:first-child { margin-top: $v-font-size; @@ -91,7 +91,7 @@ $v-letter-spacing--h4: 0 !default; .v-verticallayout > div > .v-slot:first-child { h1, .#{$primary-stylename}-h1, h2, .#{$primary-stylename}-h2, - h3, .#{$primary-stylename}-h3 + h3, .#{$primary-stylename}-h3, h4, .#{$primary-stylename}-h4 { margin-top: $v-font-size; } diff --git a/WebContent/VAADIN/themes/valo/components/_textfield.scss b/WebContent/VAADIN/themes/valo/components/_textfield.scss index f0b0ec2532..c194bd715f 100644 --- a/WebContent/VAADIN/themes/valo/components/_textfield.scss +++ b/WebContent/VAADIN/themes/valo/components/_textfield.scss @@ -199,7 +199,7 @@ $v-textfield-disabled-opacity: $v-disabled-opacity !default; @mixin valo-textfield-readonly-style { background: $v-textfield-background-color--readonly; - color: valo-font-color($v-textfield-background-color--readonly) + color: valo-font-color($v-textfield-background-color--readonly); @include box-shadow(none); &:focus { box-shadow: none; -- 2.39.5