summaryrefslogtreecommitdiff
path: root/vendor/leafo/lessphp/tests/inputs/compile_on_mixin.less
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/leafo/lessphp/tests/inputs/compile_on_mixin.less')
-rw-r--r--vendor/leafo/lessphp/tests/inputs/compile_on_mixin.less39
1 files changed, 0 insertions, 39 deletions
diff --git a/vendor/leafo/lessphp/tests/inputs/compile_on_mixin.less b/vendor/leafo/lessphp/tests/inputs/compile_on_mixin.less
deleted file mode 100644
index 79d628f4..00000000
--- a/vendor/leafo/lessphp/tests/inputs/compile_on_mixin.less
+++ /dev/null
@@ -1,39 +0,0 @@
-
-@mixin {
- height: 22px;
- ul {
- height: 20px;
- li {
- @color: red;
- height: 10px;
- div span, link {
- margin: 10px;
- color: @color;
- }
- }
-
- div, p {
- border: 1px;
- &.hello {
- color: green;
- }
-
- :what {
- color: blue;
- }
- }
-
-
- a {
- b {
- color: blue;
- }
- }
- }
-}
-
-
-
-body {
- @mixin;
-}