summaryrefslogtreecommitdiff
path: root/scss/tests
diff options
context:
space:
mode:
authormatyasrichter <maty.richter@gmail.com>2020-07-20 19:49:47 +0200
committermatyasrichter <maty.richter@gmail.com>2020-07-20 19:49:47 +0200
commit86b7e75233b32e251edcf0910e7ea7daea4b1159 (patch)
treef96e45cbb5d71be12bf51d19aba21cddd3a02cfa /scss/tests
parent36e8452b35d14ebdb32e308b219028ce2d8bfea0 (diff)
downloadpyscss-86b7e75233b32e251edcf0910e7ea7daea4b1159.tar.gz
Fixed an issue where in a gradient where the only non-percetage stop value would be zero, it would be marked as the max value and used in the denominator of a fraction.
Diffstat (limited to 'scss/tests')
-rw-r--r--scss/tests/files/compass/gradients.css4
-rw-r--r--scss/tests/files/compass/gradients.scss5
2 files changed, 9 insertions, 0 deletions
diff --git a/scss/tests/files/compass/gradients.css b/scss/tests/files/compass/gradients.css
index f26dc7f..f0b75fd 100644
--- a/scss/tests/files/compass/gradients.css
+++ b/scss/tests/files/compass/gradients.css
@@ -82,3 +82,7 @@
.bg-linear-gradient-to {
background: linear-gradient(to right, red, green);
}
+
+.panel {
+ background-image: linear-gradient(to bottom, red, green);
+} \ No newline at end of file
diff --git a/scss/tests/files/compass/gradients.scss b/scss/tests/files/compass/gradients.scss
index 1eba785..05b2c70 100644
--- a/scss/tests/files/compass/gradients.scss
+++ b/scss/tests/files/compass/gradients.scss
@@ -93,3 +93,8 @@
.bg-linear-gradient-to {
background: linear-gradient(to right, red 0%, green 100%);
}
+
+// Issue #404
+.panel {
+ background-image: linear-gradient(to bottom, red 0, green 100%);
+}