summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGerman M. Bravo <german.mb@deipi.com>2013-10-08 08:56:27 -0700
committerGerman M. Bravo <german.mb@deipi.com>2013-10-08 08:56:27 -0700
commitfdc3bed10d30c8dcdbe1029b0be6e1c95f28c82b (patch)
treed811c93cae44e3624c6cebf25024f0ebe9285bb6
parent0209968104f3598e0d428b175bf7d5a0daad75ad (diff)
downloadpyscss-fdc3bed10d30c8dcdbe1029b0be6e1c95f28c82b.tar.gz
Legacy scoping for control constructs renamed
-rw-r--r--scss/tests/files/kronuz/scoping-control.css (renamed from scss/tests/files/kronuz/variables_scope.css)0
-rw-r--r--scss/tests/files/kronuz/scoping-control.scss (renamed from scss/tests/files/kronuz/variables_scope.scss)4
2 files changed, 2 insertions, 2 deletions
diff --git a/scss/tests/files/kronuz/variables_scope.css b/scss/tests/files/kronuz/scoping-control.css
index c0dc0f7..c0dc0f7 100644
--- a/scss/tests/files/kronuz/variables_scope.css
+++ b/scss/tests/files/kronuz/scoping-control.css
diff --git a/scss/tests/files/kronuz/variables_scope.scss b/scss/tests/files/kronuz/scoping-control.scss
index 2fbec15..44d11a9 100644
--- a/scss/tests/files/kronuz/variables_scope.scss
+++ b/scss/tests/files/kronuz/scoping-control.scss
@@ -1,5 +1,5 @@
@option style:legacy;
-@option legacy-scoping: yes;
+@option legacy-scoping:yes;
div {
$first: red;
@@ -28,7 +28,7 @@ div {
B-white: $first;
// Second round of tests (undefined variables defined within @if, @for or @each):
- // DEVIATION! in Sass, the colors inside the following constructs (since they're undefined) are left undefined at the end of the blocks:;
+ // DEVIATION! in Sass, the colors inside the following constructs (since they're undefined) are left undefined at the end of the control blocks:
@if true {
$second: olive;
}