diff options
author | Henri Sara <hesara@vaadin.com> | 2014-06-27 15:04:53 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2014-06-27 12:25:56 +0000 |
commit | 19ff772f9d72dd2d409a936bbb5cd30c3b069818 (patch) | |
tree | 3df9b3dc1a4e15d694d17dfcfed3efee9f8426f8 | |
parent | e41c792da9d9bcf793e93043fa4b15d0bfc2f79c (diff) | |
download | vaadin-framework-19ff772f9d72dd2d409a936bbb5cd30c3b069818.tar.gz vaadin-framework-19ff772f9d72dd2d409a936bbb5cd30c3b069818.zip |
Use simple interpolation in selector
This makes the file compile with Vaadin Sass compiler 0.9.7
Change-Id: I04dde084cf2f00ac33fedf63fd1930cb1426ff7a
-rw-r--r-- | WebContent/VAADIN/themes/valo/util/_util.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/WebContent/VAADIN/themes/valo/util/_util.scss b/WebContent/VAADIN/themes/valo/util/_util.scss index b8512a4f10..2f7b28b3ad 100644 --- a/WebContent/VAADIN/themes/valo/util/_util.scss +++ b/WebContent/VAADIN/themes/valo/util/_util.scss @@ -10,7 +10,7 @@ @if length($to-align) > 0 { @each $selector in $to-align { - & > #{unquote($selector)} { + & > #{$selector} { vertical-align: $align; } } |