diff options
author | denisanisimov <denis@vaadin.com> | 2014-02-10 11:33:55 +0200 |
---|---|---|
committer | Denis Anisimov <denis@vaadin.com> | 2014-02-13 16:00:16 +0200 |
commit | 853d42a08bfdbad030eb728b296c930176bbe2bd (patch) | |
tree | 67d11cfe0dd212a93d3a744724c55212c23eb885 /theme-compiler/tests/resources | |
parent | 675d387348e90c525dec1eaeb7fee288728af9f0 (diff) | |
download | vaadin-framework-853d42a08bfdbad030eb728b296c930176bbe2bd.tar.gz vaadin-framework-853d42a08bfdbad030eb728b296c930176bbe2bd.zip |
Function "percentage" is implemented (#12771).
Change-Id: I0a2e3d31f60bd085d619b603bd229dba902ff001
Diffstat (limited to 'theme-compiler/tests/resources')
-rw-r--r-- | theme-compiler/tests/resources/css/functions.css | 4 | ||||
-rw-r--r-- | theme-compiler/tests/resources/scss/functions.scss | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/theme-compiler/tests/resources/css/functions.css b/theme-compiler/tests/resources/css/functions.css index 45d42b34de..0a8fcbf5a8 100644 --- a/theme-compiler/tests/resources/css/functions.css +++ b/theme-compiler/tests/resources/css/functions.css @@ -14,4 +14,6 @@ color: hsl(33, 7%, 89%); color: hsl(33, 7%, 95%); color: rgb(1, 2, 3); -}
\ No newline at end of file + percents: -20%; + percents: 33.33%; +} diff --git a/theme-compiler/tests/resources/scss/functions.scss b/theme-compiler/tests/resources/scss/functions.scss index 4230850b2a..8638d0afaa 100644 --- a/theme-compiler/tests/resources/scss/functions.scss +++ b/theme-compiler/tests/resources/scss/functions.scss @@ -19,4 +19,6 @@ $blue:3; color : $base-color; color : $app-bg-color; color: rgb($red, $green, $blue); -}
\ No newline at end of file + percents: percentage(-0.2); + percents: percentage(0.3333); +} |