diff options
Diffstat (limited to 'theme-compiler/src/com/vaadin/sass/tree/MicrosoftRuleNode.java')
-rw-r--r-- | theme-compiler/src/com/vaadin/sass/tree/MicrosoftRuleNode.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/theme-compiler/src/com/vaadin/sass/tree/MicrosoftRuleNode.java b/theme-compiler/src/com/vaadin/sass/tree/MicrosoftRuleNode.java index cbd3b14289..ce2bdc8395 100644 --- a/theme-compiler/src/com/vaadin/sass/tree/MicrosoftRuleNode.java +++ b/theme-compiler/src/com/vaadin/sass/tree/MicrosoftRuleNode.java @@ -2,6 +2,8 @@ package com.vaadin.sass.tree; import java.util.ArrayList; +import com.vaadin.sass.ScssStylesheet; + public class MicrosoftRuleNode extends Node implements IVariableNode { private final String name; @@ -26,4 +28,9 @@ public class MicrosoftRuleNode extends Node implements IVariableNode { public String toString() { return name + ": " + value + ";"; } + + @Override + public void traverse() { + replaceVariables(ScssStylesheet.getVariables()); + } } |