mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-30 16:49:58 +09:00
Add formatting libraries to composer.json
This commit is contained in:
parent
59ee4a7387
commit
2b008f7be6
202 changed files with 28022 additions and 133 deletions
100
vendor/leafo/lessphp/tests/inputs/mixin_merging.less.disable
vendored
Normal file
100
vendor/leafo/lessphp/tests/inputs/mixin_merging.less.disable
vendored
Normal file
|
|
@ -0,0 +1,100 @@
|
|||
|
||||
@tester {
|
||||
p, div { height: 10px; }
|
||||
}
|
||||
|
||||
#test1 {
|
||||
div { color: red; }
|
||||
@tester;
|
||||
}
|
||||
|
||||
|
||||
@cool {
|
||||
a,b,i { width: 1px; }
|
||||
}
|
||||
|
||||
#test2 {
|
||||
b { color: red; }
|
||||
@cool;
|
||||
}
|
||||
|
||||
#test3 {
|
||||
@cool;
|
||||
b { color: red; }
|
||||
}
|
||||
|
||||
@cooler {
|
||||
a { margin: 1px; }
|
||||
}
|
||||
|
||||
#test4 {
|
||||
a, div, html { color: blue; }
|
||||
@cooler;
|
||||
}
|
||||
|
||||
@hi {
|
||||
img, strong { float: right; }
|
||||
}
|
||||
|
||||
#test5 {
|
||||
img, strong { padding: 2px; }
|
||||
@hi;
|
||||
}
|
||||
|
||||
@nested {
|
||||
div, span {
|
||||
a {
|
||||
color: red;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#test6 {
|
||||
div, span {
|
||||
a {
|
||||
line-height: 10px;
|
||||
}
|
||||
}
|
||||
@nested;
|
||||
}
|
||||
|
||||
@broken-nesting {
|
||||
div, span {
|
||||
strong, b {
|
||||
color: red;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
#test7 {
|
||||
div {
|
||||
strong {
|
||||
margin: 1px;
|
||||
}
|
||||
}
|
||||
@broken-nesting;
|
||||
}
|
||||
|
||||
|
||||
@another-nest {
|
||||
a,b {
|
||||
i {
|
||||
color: red;
|
||||
}
|
||||
|
||||
s {
|
||||
color: blue;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#test8 {
|
||||
a, b {
|
||||
i,s {
|
||||
background: red;
|
||||
}
|
||||
}
|
||||
@another-nest;
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue