summaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests/resources/automatic/scss/functions
diff options
context:
space:
mode:
Diffstat (limited to 'theme-compiler/tests/resources/automatic/scss/functions')
-rw-r--r--theme-compiler/tests/resources/automatic/scss/functions/abs.scss11
-rw-r--r--theme-compiler/tests/resources/automatic/scss/functions/ceil.scss11
-rw-r--r--theme-compiler/tests/resources/automatic/scss/functions/floor.scss11
-rw-r--r--theme-compiler/tests/resources/automatic/scss/functions/round.scss11
4 files changed, 0 insertions, 44 deletions
diff --git a/theme-compiler/tests/resources/automatic/scss/functions/abs.scss b/theme-compiler/tests/resources/automatic/scss/functions/abs.scss
deleted file mode 100644
index 91946f0556..0000000000
--- a/theme-compiler/tests/resources/automatic/scss/functions/abs.scss
+++ /dev/null
@@ -1,11 +0,0 @@
-.foo {
-a: abs(0);
-b: abs(-12.51);
-c: abs(-1.1px);
-d: abs(12);
-e: abs(12px);
-f: abs(12.9999);
-g: abs(12.9999em);
-h: abs(-13.0001);
-i: abs(-13.0001%);
-}
diff --git a/theme-compiler/tests/resources/automatic/scss/functions/ceil.scss b/theme-compiler/tests/resources/automatic/scss/functions/ceil.scss
deleted file mode 100644
index ad7ceed4b4..0000000000
--- a/theme-compiler/tests/resources/automatic/scss/functions/ceil.scss
+++ /dev/null
@@ -1,11 +0,0 @@
-.foo {
-a: ceil(0);
-b: ceil(-12.51);
-c: ceil(-1.1px);
-d: ceil(12);
-e: ceil(12px);
-f: ceil(12.9999);
-g: ceil(12.9999em);
-h: ceil(13.000001);
-i: ceil(13.000001%);
-}
diff --git a/theme-compiler/tests/resources/automatic/scss/functions/floor.scss b/theme-compiler/tests/resources/automatic/scss/functions/floor.scss
deleted file mode 100644
index a10f1b4fc1..0000000000
--- a/theme-compiler/tests/resources/automatic/scss/functions/floor.scss
+++ /dev/null
@@ -1,11 +0,0 @@
-.foo {
-a: floor(0);
-b: floor(-12.51);
-c: floor(-1.1px);
-d: floor(12);
-e: floor(12px);
-f: floor(12.9999);
-g: floor(12.9999em);
-h: floor(13.000001);
-i: floor(13.000001%);
-}
diff --git a/theme-compiler/tests/resources/automatic/scss/functions/round.scss b/theme-compiler/tests/resources/automatic/scss/functions/round.scss
deleted file mode 100644
index 3f1fa06aec..0000000000
--- a/theme-compiler/tests/resources/automatic/scss/functions/round.scss
+++ /dev/null
@@ -1,11 +0,0 @@
-.foo {
-a: round(0);
-b: round(-12.51);
-c: round(-1.1px);
-d: round(12);
-e: round(12px);
-f: round(12.9999);
-g: round(12.9999em);
-h: round(13.000001);
-i: round(13.000001%);
-}