summaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests/resources/scss
diff options
context:
space:
mode:
Diffstat (limited to 'theme-compiler/tests/resources/scss')
-rw-r--r--theme-compiler/tests/resources/scss/_partial-for-import.scss13
-rw-r--r--theme-compiler/tests/resources/scss/comments.scss13
-rw-r--r--theme-compiler/tests/resources/scss/compass-test/compass-import.scss4
-rw-r--r--theme-compiler/tests/resources/scss/compass-test2/_compass.scss3
-rw-r--r--theme-compiler/tests/resources/scss/compass-test2/compass-import2.scss4
-rw-r--r--theme-compiler/tests/resources/scss/compass-test2/compass/_css3.scss3
-rw-r--r--theme-compiler/tests/resources/scss/compass-test2/compass/_typography.scss3
-rw-r--r--theme-compiler/tests/resources/scss/compass-test2/compass/_utilities.scss3
-rw-r--r--theme-compiler/tests/resources/scss/compass-test2/compass/css3/_border-radius.scss4
-rw-r--r--theme-compiler/tests/resources/scss/compass-test2/compass/css3/_inline-block.scss3
-rw-r--r--theme-compiler/tests/resources/scss/compass-test2/compass/css3/_opacity.scss3
-rw-r--r--theme-compiler/tests/resources/scss/compass-test2/compass/typography/_links.scss3
-rw-r--r--theme-compiler/tests/resources/scss/compass-test2/compass/typography/_lists.scss3
-rw-r--r--theme-compiler/tests/resources/scss/compass-test2/compass/typography/_text.scss6
-rw-r--r--theme-compiler/tests/resources/scss/compass-test2/compass/utilities/_color.scss4
-rw-r--r--theme-compiler/tests/resources/scss/compass-test2/compass/utilities/_general.scss5
-rw-r--r--theme-compiler/tests/resources/scss/compass-test2/compass/utilities/_sprites.scss6
-rw-r--r--theme-compiler/tests/resources/scss/compass-test2/license-readme.txt26
-rw-r--r--theme-compiler/tests/resources/scss/control-directives.scss42
-rw-r--r--theme-compiler/tests/resources/scss/extends.scss13
-rw-r--r--theme-compiler/tests/resources/scss/folder-test/parent-import.scss6
-rw-r--r--theme-compiler/tests/resources/scss/folder-test2/base-imported.scss1
-rw-r--r--theme-compiler/tests/resources/scss/folder-test2/base.scss3
-rw-r--r--theme-compiler/tests/resources/scss/folder-test2/url.scss6
-rw-r--r--theme-compiler/tests/resources/scss/folder-test2/variables.scss14
-rw-r--r--theme-compiler/tests/resources/scss/functions.scss24
-rw-r--r--theme-compiler/tests/resources/scss/imports.scss6
-rw-r--r--theme-compiler/tests/resources/scss/interpolation.scss3
-rw-r--r--theme-compiler/tests/resources/scss/mixin-extra-params.scss4
-rw-r--r--theme-compiler/tests/resources/scss/mixins.scss90
-rw-r--r--theme-compiler/tests/resources/scss/nested-properties.scss7
-rw-r--r--theme-compiler/tests/resources/scss/nesting.scss52
-rw-r--r--theme-compiler/tests/resources/scss/parent-selector.scss53
-rw-r--r--theme-compiler/tests/resources/scss/reference-parent-selector.css6
-rw-r--r--theme-compiler/tests/resources/scss/var-guarded.scss8
-rw-r--r--theme-compiler/tests/resources/scss/variables.scss20
36 files changed, 0 insertions, 467 deletions
diff --git a/theme-compiler/tests/resources/scss/_partial-for-import.scss b/theme-compiler/tests/resources/scss/_partial-for-import.scss
deleted file mode 100644
index 96af1c78ff..0000000000
--- a/theme-compiler/tests/resources/scss/_partial-for-import.scss
+++ /dev/null
@@ -1,13 +0,0 @@
-$foo : red;
-
-@mixin caption {
- .caption {
- $side: right;
- border: 1px solid black;
- background: #ff0000;
- padding: 10px;
- margin: 10px;
- }
-}
-
-@include caption; \ No newline at end of file
diff --git a/theme-compiler/tests/resources/scss/comments.scss b/theme-compiler/tests/resources/scss/comments.scss
deleted file mode 100644
index de3fbe8e0d..0000000000
--- a/theme-compiler/tests/resources/scss/comments.scss
+++ /dev/null
@@ -1,13 +0,0 @@
-/** 0sprite: verticals; sprite-image: url(../common/img/vertical-sprites.png); sprite-layout: vertical */
-/** 1sprite: verticals; sprite-image: url(../common/img/vertical-sprites.png); sprite-layout: vertical */
-/** 2sprite: verticals; sprite-image: url(../common/img/vertical-sprites.png); sprite-layout: vertical */
-$black:#000000;
-.v-button:focus {
- background-image: url(img/left-focus.png);/** sprite-ref: buttons */
- outline: none;
-}
-
-.v-button:focus .v-button-wrap {
- background-image: url(img/right-focus.png);/** sprite-ref: buttons; sprite-alignment: right */
- outline: none;
-} \ No newline at end of file
diff --git a/theme-compiler/tests/resources/scss/compass-test/compass-import.scss b/theme-compiler/tests/resources/scss/compass-test/compass-import.scss
deleted file mode 100644
index 36d041b33c..0000000000
--- a/theme-compiler/tests/resources/scss/compass-test/compass-import.scss
+++ /dev/null
@@ -1,4 +0,0 @@
-@import "compass";
-.badError {
- border-width: 3px;
-}
diff --git a/theme-compiler/tests/resources/scss/compass-test2/_compass.scss b/theme-compiler/tests/resources/scss/compass-test2/_compass.scss
deleted file mode 100644
index 9b741c0f03..0000000000
--- a/theme-compiler/tests/resources/scss/compass-test2/_compass.scss
+++ /dev/null
@@ -1,3 +0,0 @@
-@import "compass/utilities";
-@import "compass/typography";
-@import "compass/css3";
diff --git a/theme-compiler/tests/resources/scss/compass-test2/compass-import2.scss b/theme-compiler/tests/resources/scss/compass-test2/compass-import2.scss
deleted file mode 100644
index 36d041b33c..0000000000
--- a/theme-compiler/tests/resources/scss/compass-test2/compass-import2.scss
+++ /dev/null
@@ -1,4 +0,0 @@
-@import "compass";
-.badError {
- border-width: 3px;
-}
diff --git a/theme-compiler/tests/resources/scss/compass-test2/compass/_css3.scss b/theme-compiler/tests/resources/scss/compass-test2/compass/_css3.scss
deleted file mode 100644
index 42163ba193..0000000000
--- a/theme-compiler/tests/resources/scss/compass-test2/compass/_css3.scss
+++ /dev/null
@@ -1,3 +0,0 @@
-@import "css3/border-radius";
-@import "css3/inline-block";
-@import "css3/opacity";
diff --git a/theme-compiler/tests/resources/scss/compass-test2/compass/_typography.scss b/theme-compiler/tests/resources/scss/compass-test2/compass/_typography.scss
deleted file mode 100644
index a65c1ff292..0000000000
--- a/theme-compiler/tests/resources/scss/compass-test2/compass/_typography.scss
+++ /dev/null
@@ -1,3 +0,0 @@
-@import "typography/links";
-@import "typography/lists";
-@import "typography/text";
diff --git a/theme-compiler/tests/resources/scss/compass-test2/compass/_utilities.scss b/theme-compiler/tests/resources/scss/compass-test2/compass/_utilities.scss
deleted file mode 100644
index 644ad3368b..0000000000
--- a/theme-compiler/tests/resources/scss/compass-test2/compass/_utilities.scss
+++ /dev/null
@@ -1,3 +0,0 @@
-@import "utilities/color";
-@import "utilities/general";
-@import "utilities/sprites";
diff --git a/theme-compiler/tests/resources/scss/compass-test2/compass/css3/_border-radius.scss b/theme-compiler/tests/resources/scss/compass-test2/compass/css3/_border-radius.scss
deleted file mode 100644
index 752003104b..0000000000
--- a/theme-compiler/tests/resources/scss/compass-test2/compass/css3/_border-radius.scss
+++ /dev/null
@@ -1,4 +0,0 @@
-.banner {
- border: 1px solid black;
- font-color: red;
-} \ No newline at end of file
diff --git a/theme-compiler/tests/resources/scss/compass-test2/compass/css3/_inline-block.scss b/theme-compiler/tests/resources/scss/compass-test2/compass/css3/_inline-block.scss
deleted file mode 100644
index 3fefab83b2..0000000000
--- a/theme-compiler/tests/resources/scss/compass-test2/compass/css3/_inline-block.scss
+++ /dev/null
@@ -1,3 +0,0 @@
-.interpolation-test {
- font-size: 14px;
-} \ No newline at end of file
diff --git a/theme-compiler/tests/resources/scss/compass-test2/compass/css3/_opacity.scss b/theme-compiler/tests/resources/scss/compass-test2/compass/css3/_opacity.scss
deleted file mode 100644
index f6bf34fe24..0000000000
--- a/theme-compiler/tests/resources/scss/compass-test2/compass/css3/_opacity.scss
+++ /dev/null
@@ -1,3 +0,0 @@
-.header {
- width: 100%;
-} \ No newline at end of file
diff --git a/theme-compiler/tests/resources/scss/compass-test2/compass/typography/_links.scss b/theme-compiler/tests/resources/scss/compass-test2/compass/typography/_links.scss
deleted file mode 100644
index bc7318558e..0000000000
--- a/theme-compiler/tests/resources/scss/compass-test2/compass/typography/_links.scss
+++ /dev/null
@@ -1,3 +0,0 @@
-.base {
- color: red;
-} \ No newline at end of file
diff --git a/theme-compiler/tests/resources/scss/compass-test2/compass/typography/_lists.scss b/theme-compiler/tests/resources/scss/compass-test2/compass/typography/_lists.scss
deleted file mode 100644
index af174b7095..0000000000
--- a/theme-compiler/tests/resources/scss/compass-test2/compass/typography/_lists.scss
+++ /dev/null
@@ -1,3 +0,0 @@
-.text {
- font-weight: bold;
-} \ No newline at end of file
diff --git a/theme-compiler/tests/resources/scss/compass-test2/compass/typography/_text.scss b/theme-compiler/tests/resources/scss/compass-test2/compass/typography/_text.scss
deleted file mode 100644
index 8239527f7b..0000000000
--- a/theme-compiler/tests/resources/scss/compass-test2/compass/typography/_text.scss
+++ /dev/null
@@ -1,6 +0,0 @@
-.footer {
- border: 2px solid black;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-} \ No newline at end of file
diff --git a/theme-compiler/tests/resources/scss/compass-test2/compass/utilities/_color.scss b/theme-compiler/tests/resources/scss/compass-test2/compass/utilities/_color.scss
deleted file mode 100644
index ea1b7a55f0..0000000000
--- a/theme-compiler/tests/resources/scss/compass-test2/compass/utilities/_color.scss
+++ /dev/null
@@ -1,4 +0,0 @@
-.content-navigation {
- border-color: #3bbfce;
- color: #0000ff;
-} \ No newline at end of file
diff --git a/theme-compiler/tests/resources/scss/compass-test2/compass/utilities/_general.scss b/theme-compiler/tests/resources/scss/compass-test2/compass/utilities/_general.scss
deleted file mode 100644
index 0c58c6433d..0000000000
--- a/theme-compiler/tests/resources/scss/compass-test2/compass/utilities/_general.scss
+++ /dev/null
@@ -1,5 +0,0 @@
-.border {
- padding: 8px;
- margin: 8px;
- border-color: #3bbfce;
-} \ No newline at end of file
diff --git a/theme-compiler/tests/resources/scss/compass-test2/compass/utilities/_sprites.scss b/theme-compiler/tests/resources/scss/compass-test2/compass/utilities/_sprites.scss
deleted file mode 100644
index 28960f89fc..0000000000
--- a/theme-compiler/tests/resources/scss/compass-test2/compass/utilities/_sprites.scss
+++ /dev/null
@@ -1,6 +0,0 @@
-.body {
- background-image: url(../folder-test2/bg.png);
- background: transparent url(../folder-test2/img/loading-indicator.gif);
- background-image: url(http://abc/bg.png);
- background-image: url(/abc/bg.png);
-} \ No newline at end of file
diff --git a/theme-compiler/tests/resources/scss/compass-test2/license-readme.txt b/theme-compiler/tests/resources/scss/compass-test2/license-readme.txt
deleted file mode 100644
index 90ba808179..0000000000
--- a/theme-compiler/tests/resources/scss/compass-test2/license-readme.txt
+++ /dev/null
@@ -1,26 +0,0 @@
-The design here is to use the stylesheets located at:
-https://github com/chriseppstein/compass/tree/stable/frameworks/compass/stylesheets
-
-and update the VAADIN code to be able to read them in such that an existing JRuby implementation can be replaced with VAADIN without any changes to one's *.scss and *.css files.
-
-The current short snippets of SCSS that are included here only for testing Compass compatibility might not qualify as significant or substantial parts, but in any case Compass is being mentioned for related tests pointing to the original implementation. These small portions of Compass are copied and modified for the testing of compatibility only.
-
-The license for Compass mentioned here:
-https://github.com/chriseppstein/compass/blob/stable/LICENSE.markdown
-
-is as follows:
-
-
-
-
-Copyright (c) 2009 Christopher M. Eppstein
-
-Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. No attribution is required by products that make use of this software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-Except as contained in this notice, the name(s) of the above copyright holders shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization.
-
-Contributors to this project agree to grant all rights to the copyright holder of the primary product. Attribution is maintained in the source control history of the product.
diff --git a/theme-compiler/tests/resources/scss/control-directives.scss b/theme-compiler/tests/resources/scss/control-directives.scss
deleted file mode 100644
index 6cf05518bf..0000000000
--- a/theme-compiler/tests/resources/scss/control-directives.scss
+++ /dev/null
@@ -1,42 +0,0 @@
-$borderWeight : solid;
-
-@mixin animals($list : puma, sea-slug, egret, salamander){
- @each $animal in $list {
- .#{$animal}-icon #animal, .menu {
- background-image: url('/images/#{$animal}.png');
- @include logo(10px);
- @if 1+1 == 2 { border: 1px solid; }
- }
- }
-}
-
-@include animals;
-
-.trueIf {
- @if solid != dotted { border: 1px $borderWeight; }
- @else { border: 2px solid; }
-}
-
-.falseIf {
- @if 1+2 == 2 { border: 2px solid; }
- @else { border: 1px solid; }
-}
-
-.falseIfTrueElse {
- @if 1+2 == 2 { border: 2px solid; }
- @else if 1+1 == 2 { border: 1px solid; }
- @else { border: 3px solid; }
-}
-
-@each $thing in cube, triangle, circle{
- .#{$thing}-icon {
- background-image: url('/images/#{$thing}.png');
- }
-}
-
-@mixin logo($size){
- font: {
- size: $size;
- color: blue;
- }
-} \ No newline at end of file
diff --git a/theme-compiler/tests/resources/scss/extends.scss b/theme-compiler/tests/resources/scss/extends.scss
deleted file mode 100644
index c9e0f85381..0000000000
--- a/theme-compiler/tests/resources/scss/extends.scss
+++ /dev/null
@@ -1,13 +0,0 @@
-.error {
- border: 1px #f00;
- background: #fdd;
-}
-.error.intrusion {
- font-size: 1.3em;
- font-weight: bold;
-}
-
-.badError {
- @extend .error;
- border-width: 3px;
-} \ No newline at end of file
diff --git a/theme-compiler/tests/resources/scss/folder-test/parent-import.scss b/theme-compiler/tests/resources/scss/folder-test/parent-import.scss
deleted file mode 100644
index b3f6c8000e..0000000000
--- a/theme-compiler/tests/resources/scss/folder-test/parent-import.scss
+++ /dev/null
@@ -1,6 +0,0 @@
-@import "../folder-test2/variables.scss";
-@import "../folder-test2/url";
-@import "../folder-test2/base-imported.scss";
-.text {
- font-weight: bold;
-} \ No newline at end of file
diff --git a/theme-compiler/tests/resources/scss/folder-test2/base-imported.scss b/theme-compiler/tests/resources/scss/folder-test2/base-imported.scss
deleted file mode 100644
index 17d801e4aa..0000000000
--- a/theme-compiler/tests/resources/scss/folder-test2/base-imported.scss
+++ /dev/null
@@ -1 +0,0 @@
-@import "base.scss"; \ No newline at end of file
diff --git a/theme-compiler/tests/resources/scss/folder-test2/base.scss b/theme-compiler/tests/resources/scss/folder-test2/base.scss
deleted file mode 100644
index 57ca0bb7a2..0000000000
--- a/theme-compiler/tests/resources/scss/folder-test2/base.scss
+++ /dev/null
@@ -1,3 +0,0 @@
-.base{
- color: red;
-} \ No newline at end of file
diff --git a/theme-compiler/tests/resources/scss/folder-test2/url.scss b/theme-compiler/tests/resources/scss/folder-test2/url.scss
deleted file mode 100644
index a4be967ad7..0000000000
--- a/theme-compiler/tests/resources/scss/folder-test2/url.scss
+++ /dev/null
@@ -1,6 +0,0 @@
-.body{
- background-image: url(bg.png);
- background: transparent url(img/loading-indicator.gif);
- background-image: url(http://abc/bg.png);
- background-image: url(/abc/bg.png);
-} \ No newline at end of file
diff --git a/theme-compiler/tests/resources/scss/folder-test2/variables.scss b/theme-compiler/tests/resources/scss/folder-test2/variables.scss
deleted file mode 100644
index 2d06d36650..0000000000
--- a/theme-compiler/tests/resources/scss/folder-test2/variables.scss
+++ /dev/null
@@ -1,14 +0,0 @@
-$blue: #3bbfce;
-$margin: 8px;
-
-.content-navigation {
- border-color: $blue;
- $blue: #0000ff;
- color: $blue;
-}
-
-.border {
- padding: $margin;
- margin: $margin;
- border-color: $blue;
-} \ No newline at end of file
diff --git a/theme-compiler/tests/resources/scss/functions.scss b/theme-compiler/tests/resources/scss/functions.scss
deleted file mode 100644
index 8638d0afaa..0000000000
--- a/theme-compiler/tests/resources/scss/functions.scss
+++ /dev/null
@@ -1,24 +0,0 @@
-$base-color : hsl(33, 7%, 89%);
-$app-bg-color : lighten($base-color, 6%);
-$red:1;
-$green:2;
-$blue:3;
-.main {
- margin: abs(-2px);
- border: ceil(10.4px);
- border: floor(10.4px);
- border: round(10.4px);
- color: lighten(hsl(0, 0%, 0%), 30%);
- color: darken(hsl(25, 100%, 80%), 30%);
- color: darken(rgb(136, 0, 0), 20%);
- color: lighten(rgb(136, 0, 0), 20%);
- color: darken(#880000, 20%);
- color: darken(#800, 20%);
- color: lighten(#880000, 20%);
- color: lighten(#800, 20%);
- color : $base-color;
- color : $app-bg-color;
- color: rgb($red, $green, $blue);
- percents: percentage(-0.2);
- percents: percentage(0.3333);
-}
diff --git a/theme-compiler/tests/resources/scss/imports.scss b/theme-compiler/tests/resources/scss/imports.scss
deleted file mode 100644
index 4d53a120d2..0000000000
--- a/theme-compiler/tests/resources/scss/imports.scss
+++ /dev/null
@@ -1,6 +0,0 @@
-@import "_partial-for-import";
-
-.text {
- font-weight: bold;
- color: $foo;
-}
diff --git a/theme-compiler/tests/resources/scss/interpolation.scss b/theme-compiler/tests/resources/scss/interpolation.scss
deleted file mode 100644
index 5859a9838b..0000000000
--- a/theme-compiler/tests/resources/scss/interpolation.scss
+++ /dev/null
@@ -1,3 +0,0 @@
-$name: foo;
-$attr: border;
-p.#{$name}abc { abc#{$attr}-color: blue } \ No newline at end of file
diff --git a/theme-compiler/tests/resources/scss/mixin-extra-params.scss b/theme-compiler/tests/resources/scss/mixin-extra-params.scss
deleted file mode 100644
index af376adf90..0000000000
--- a/theme-compiler/tests/resources/scss/mixin-extra-params.scss
+++ /dev/null
@@ -1,4 +0,0 @@
-@mixin test ($p1) {
- color: $p1;
-}
-@include test(foo, bar); \ No newline at end of file
diff --git a/theme-compiler/tests/resources/scss/mixins.scss b/theme-compiler/tests/resources/scss/mixins.scss
deleted file mode 100644
index 6107897131..0000000000
--- a/theme-compiler/tests/resources/scss/mixins.scss
+++ /dev/null
@@ -1,90 +0,0 @@
-//asfdasdf
-
-@mixin font-settings {
- font-family: arial;
- font-size: 16px;
- font-weight: bold;
-}
-
-@mixin rounded-borders ($thickness, $radius : 3px) {
- border: $thickness solid black;
- -webkit-border-radius: $radius;
- -moz-border-radius: $radius;
- border-radius: $radius;
-}
-
-$mixinVar : 1px;
-
-.main {
- @include rounded-borders($mixinVar);
- @include font-settings;
- @include main-details(14px);
-}
-
-.footer {
- @include rounded-borders(2px, 10px);
-}
-
-@mixin layout {
- .header {
- width: 100%;
- }
- .main {
- width: 100%;
- height: 100%;
- }
-
- .footer {
- width: 100%;
- }
- @media print {
- .v-view {
- overflow: visible;
- }
- }
- @include font-settings;
-}
-
-@mixin main-details($size){
- .details {
- font: {
- size : $size;
- weight: bold;
- }
- }
-}
-
-.banner {
- @include fontType(1px solid black, $color : red);
-}
-
-@mixin fontType($border : 2px solid red, $color : black){
- border : $border;
- font-color: $color;
-}
-
-@include interpolation(interpolation);
-
-@mixin interpolation($interpolation){
- .#{$interpolation}-test {
- font-size: 14px;
- }
-}
-
-$layoutVariable : layout;
-
-@include $layoutVariable;
-
-@mixin parent($color : green, $name : default) {
- .#{$name}-inner {
- color: $color;
- }
-}
-
-.default {
- @include parent;
-}
-
-.custom {
- @include parent($name : custom);
-} \ No newline at end of file
diff --git a/theme-compiler/tests/resources/scss/nested-properties.scss b/theme-compiler/tests/resources/scss/nested-properties.scss
deleted file mode 100644
index e12a83aa2d..0000000000
--- a/theme-compiler/tests/resources/scss/nested-properties.scss
+++ /dev/null
@@ -1,7 +0,0 @@
-li {
- font: {
- family: serif;;
- weight: bold;
- size: 1.2em
- }
-} \ No newline at end of file
diff --git a/theme-compiler/tests/resources/scss/nesting.scss b/theme-compiler/tests/resources/scss/nesting.scss
deleted file mode 100644
index 1fefe0dde0..0000000000
--- a/theme-compiler/tests/resources/scss/nesting.scss
+++ /dev/null
@@ -1,52 +0,0 @@
-.top-bar {
- color: red;
- .alt {
- color: blue;
- }
-}
-
-.menu {
- background-color: red;
- a {
- color: blue;
- }
-}
-
-.caption {
- padding: 10px;
- .text, .header {
- color: green;
- }
-}
-
-.footer {
- padding: 10px;
- .left, .right {
- color: purple;
- a {
- color: orange;
- }
- }
-}
-
-.main {
- color: red;
- .second.third {
- color: blue;
- .fourth {
- color: black;
- }
- }
-}
-
-.root {
- .first-block {
- .nested {
- order: first;
- }
- }
-
- .last-block {
- order: last;
- }
-} \ No newline at end of file
diff --git a/theme-compiler/tests/resources/scss/parent-selector.scss b/theme-compiler/tests/resources/scss/parent-selector.scss
deleted file mode 100644
index 74f0e15b9e..0000000000
--- a/theme-compiler/tests/resources/scss/parent-selector.scss
+++ /dev/null
@@ -1,53 +0,0 @@
-a {
- font-weight: bold;
- text-decoration: none;
- .sub {
- color: blue;
- }
- &:hover { text-decoration: underline; }
- body.firefox & { font-weight: normal; }
-}
-
-#main {
- color: black;
- a {
- font-weight: bold;
- &:hover { color: red; }
- }
-}
-
-@mixin parent {
- &:hover {
- color: blue;
- }
-}
-
-.mixin-parent {
- @include parent;
-}
-
-.part {
- &.one, &.two, .non-parent {
- color: blue;
- }
-}
-
-.root {
- .part, .part2 {
- &.one, .non-parent {
- color: blue;
- }
- }
-}
-
-.root2 {
- .part, .part2 {
- .one, .non-parent {
- color: blue;
- }
- }
-}
-
-&.drop-parent-reference {
- color: green;
-} \ No newline at end of file
diff --git a/theme-compiler/tests/resources/scss/reference-parent-selector.css b/theme-compiler/tests/resources/scss/reference-parent-selector.css
deleted file mode 100644
index 733c8fd42d..0000000000
--- a/theme-compiler/tests/resources/scss/reference-parent-selector.css
+++ /dev/null
@@ -1,6 +0,0 @@
-a {
- color: #660000;
- &:hover {color: #000000;}
- &:visited {color:#660066;}
- &:active {color: #ffffff;}
-} \ No newline at end of file
diff --git a/theme-compiler/tests/resources/scss/var-guarded.scss b/theme-compiler/tests/resources/scss/var-guarded.scss
deleted file mode 100644
index 8f7aab8fa9..0000000000
--- a/theme-compiler/tests/resources/scss/var-guarded.scss
+++ /dev/null
@@ -1,8 +0,0 @@
-$content: "First content";
-$content: "Second content?" !default;
-$new_content: "First time reference" !default;
-
-#main {
- content: $content;
- new-content: $new_content;
-} \ No newline at end of file
diff --git a/theme-compiler/tests/resources/scss/variables.scss b/theme-compiler/tests/resources/scss/variables.scss
deleted file mode 100644
index 2448aaddb9..0000000000
--- a/theme-compiler/tests/resources/scss/variables.scss
+++ /dev/null
@@ -1,20 +0,0 @@
-$blue: #3bbfce;
-$margin: 8px;
-$chameleon-font-family: Arial, Helvetica, "Lucida Grande", "Lucida Sans Unicode", Tahoma, Verdana, sans-serif;
-$font: 12px;
-
-.content-navigation {
- border-color: $blue;
- $blue: #0000ff;
- color: $blue;
- color1: darken($blue, 9%);
- font-family: $chameleon-font-family;
- $font-size: $font;
- font-size: $font-size;
-}
-
-.border {
- padding: $margin;
- margin: $margin;
- border-color: $blue;
-} \ No newline at end of file