]> source.dussan.org Git - vaadin-framework.git/commit
Fixes #9546, #9974, #10100, #10105 15/215/5
authorSebastian Nyholm <sebastian@vaadin.com>
Mon, 22 Oct 2012 08:11:04 +0000 (11:11 +0300)
committerSebastian Nyholm <sebastian@vaadin.com>
Thu, 8 Nov 2012 15:16:10 +0000 (17:16 +0200)
commita0da163fd5c23f1d961fc5c686efd6ffc50ecd61
tree093e40a12de854d48920335b67b08144b98556bf
parente8ae9f7d6427f7f6daae300dee7931a6e8394bdb
Fixes #9546, #9974, #10100, #10105

Change-Id: I1baccb5604899707960b1cf06887ada0fe217d08
55 files changed:
theme-compiler/src/com/vaadin/sass/ScssStylesheet.java
theme-compiler/src/com/vaadin/sass/parser/MediaListImpl.java
theme-compiler/src/com/vaadin/sass/parser/Parser.java
theme-compiler/src/com/vaadin/sass/parser/Parser.jj
theme-compiler/src/com/vaadin/sass/tree/BlockNode.java
theme-compiler/src/com/vaadin/sass/tree/CommentNode.java
theme-compiler/src/com/vaadin/sass/tree/ExtendNode.java
theme-compiler/src/com/vaadin/sass/tree/FontFaceNode.java
theme-compiler/src/com/vaadin/sass/tree/ForNode.java
theme-compiler/src/com/vaadin/sass/tree/FunctionNode.java
theme-compiler/src/com/vaadin/sass/tree/ImportNode.java
theme-compiler/src/com/vaadin/sass/tree/InterpolationNode.java [deleted file]
theme-compiler/src/com/vaadin/sass/tree/ListModifyNode.java
theme-compiler/src/com/vaadin/sass/tree/ListRemoveNode.java
theme-compiler/src/com/vaadin/sass/tree/MediaNode.java
theme-compiler/src/com/vaadin/sass/tree/MicrosoftRuleNode.java
theme-compiler/src/com/vaadin/sass/tree/MixinDefNode.java
theme-compiler/src/com/vaadin/sass/tree/MixinNode.java
theme-compiler/src/com/vaadin/sass/tree/NestPropertiesNode.java
theme-compiler/src/com/vaadin/sass/tree/Node.java
theme-compiler/src/com/vaadin/sass/tree/RuleNode.java
theme-compiler/src/com/vaadin/sass/tree/SimpleNode.java
theme-compiler/src/com/vaadin/sass/tree/VariableNode.java
theme-compiler/src/com/vaadin/sass/tree/WhileNode.java
theme-compiler/src/com/vaadin/sass/tree/controldirective/EachDefNode.java
theme-compiler/src/com/vaadin/sass/tree/controldirective/ElseNode.java
theme-compiler/src/com/vaadin/sass/tree/controldirective/IfElseDefNode.java
theme-compiler/src/com/vaadin/sass/tree/controldirective/IfNode.java
theme-compiler/src/com/vaadin/sass/visitor/BlockNodeHandler.java [new file with mode: 0644]
theme-compiler/src/com/vaadin/sass/visitor/BlockVisitor.java [deleted file]
theme-compiler/src/com/vaadin/sass/visitor/EachNodeHandler.java [new file with mode: 0644]
theme-compiler/src/com/vaadin/sass/visitor/EachVisitor.java [deleted file]
theme-compiler/src/com/vaadin/sass/visitor/ExtendNodeHandler.java [new file with mode: 0644]
theme-compiler/src/com/vaadin/sass/visitor/ExtendVisitor.java [deleted file]
theme-compiler/src/com/vaadin/sass/visitor/IfElseNodeHandler.java [new file with mode: 0644]
theme-compiler/src/com/vaadin/sass/visitor/IfElseVisitor.java [deleted file]
theme-compiler/src/com/vaadin/sass/visitor/ImportNodeHandler.java [new file with mode: 0644]
theme-compiler/src/com/vaadin/sass/visitor/ImportVisitor.java [deleted file]
theme-compiler/src/com/vaadin/sass/visitor/ListModifyVisitor.java [deleted file]
theme-compiler/src/com/vaadin/sass/visitor/MixinNodeHandler.java [new file with mode: 0644]
theme-compiler/src/com/vaadin/sass/visitor/MixinVisitor.java [deleted file]
theme-compiler/src/com/vaadin/sass/visitor/NestPropertiesVisitor.java [deleted file]
theme-compiler/src/com/vaadin/sass/visitor/NestedNodeHandler.java [new file with mode: 0644]
theme-compiler/src/com/vaadin/sass/visitor/ParentSelectorHandler.java [new file with mode: 0644]
theme-compiler/src/com/vaadin/sass/visitor/ParentSelectorVisitor.java [deleted file]
theme-compiler/src/com/vaadin/sass/visitor/VariableNodeHandler.java [new file with mode: 0644]
theme-compiler/src/com/vaadin/sass/visitor/VariableVisitor.java [deleted file]
theme-compiler/tests/resources/css/parent-selector.css
theme-compiler/tests/resources/scss/_partial-for-import.scss
theme-compiler/tests/resources/scss/mixins.scss
theme-compiler/tests/resources/scss/parent-selector.scss
theme-compiler/tests/src/com/vaadin/sass/testcases/scss/ParentSelector.java
theme-compiler/tests/src/com/vaadin/sass/testcases/visitor/ImportVisitorTest.java [deleted file]
theme-compiler/tests/src/com/vaadin/sass/testcases/visitor/MixinVisitorTest.java [deleted file]
theme-compiler/tests/src/com/vaadin/sass/testcases/visitor/NestedPropertiesVisitorTest.java [deleted file]