diff options
author | Artur Signell <artur@vaadin.com> | 2013-11-11 16:32:36 +0200 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2013-11-11 16:32:36 +0200 |
commit | f51b8911ad7d9ee8f651cf037e30a09e09a5e530 (patch) | |
tree | 5bed9252028bbe49ff5ccc1388cf89880c15244c /theme-compiler/src/com/vaadin/sass/internal/tree/BlockNode.java | |
parent | dc5183c62552135a1f2aa5a94ef6796ffebfcf15 (diff) | |
parent | a3aa6cc93e22fd6ff37ea6f3aa91810cab2aa624 (diff) | |
download | vaadin-framework-f51b8911ad7d9ee8f651cf037e30a09e09a5e530.tar.gz vaadin-framework-f51b8911ad7d9ee8f651cf037e30a09e09a5e530.zip |
Merge commit 'a3aa6cc93e22fd6ff37ea6f3aa91810cab2aa624'
Conflicts:
theme-compiler/src/com/vaadin/sass/internal/parser/Parser.java
theme-compiler/src/com/vaadin/sass/internal/parser/Parser.jj
Change-Id: I3421c2d5c114765e924d7847cee46ebd370dfca6
Diffstat (limited to 'theme-compiler/src/com/vaadin/sass/internal/tree/BlockNode.java')
-rw-r--r-- | theme-compiler/src/com/vaadin/sass/internal/tree/BlockNode.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/theme-compiler/src/com/vaadin/sass/internal/tree/BlockNode.java b/theme-compiler/src/com/vaadin/sass/internal/tree/BlockNode.java index 4b364168cf..6ce67a3abd 100644 --- a/theme-compiler/src/com/vaadin/sass/internal/tree/BlockNode.java +++ b/theme-compiler/src/com/vaadin/sass/internal/tree/BlockNode.java @@ -80,7 +80,8 @@ public class BlockNode extends Node implements IVariableNode { String interpolation = "#{$" + var.getName() + "}"; if (selector.contains(interpolation)) { String replace = selector.replace(interpolation, var - .getExpr().toString()); + .getExpr().unquotedString()); + selectorList.add(selectorList.indexOf(selector), replace); selectorList.remove(selector); } |