]> source.dussan.org Git - vaadin-framework.git/commitdiff
Bugfixes to Valo (#14490)
authorJouni Koivuviita <jouni@vaadin.com>
Thu, 21 Aug 2014 12:16:49 +0000 (15:16 +0300)
committerLeif Åstrand <leif@vaadin.com>
Thu, 28 Aug 2014 14:16:20 +0000 (17:16 +0300)
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
WebContent/VAADIN/themes/valo/components/_label.scss
WebContent/VAADIN/themes/valo/components/_textfield.scss

index 95bdcc5a3ae37c0976aa19575dffb88aa74a26ab..b0fa4362e7b0f88d4cd7e6eba3a87f3b63c98a57 100644 (file)
@@ -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;
     }
   }
 }
index 655ef6e1cc1fcfbda7c1962ba773c415d7867d73..7f4fef58d938b9aeb6305cc78833e97d8d7278b9 100644 (file)
@@ -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;
     }
index f0b0ec2532553bd1fef839d034451c49ed1244d7..c194bd715f884428c649e1a21299b2a10016c98a 100644 (file)
@@ -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;