mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-27 15:19:57 +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
47
vendor/leafo/lessphp/tests/inputs/interpolation.less
vendored
Normal file
47
vendor/leafo/lessphp/tests/inputs/interpolation.less
vendored
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
|
||||
@cool-hello: "yes";
|
||||
@cool-yes: "okay";
|
||||
@var: "hello";
|
||||
|
||||
div {
|
||||
interp1: ~"@{cool-hello}";
|
||||
interp2: ~"@{cool-@{var}}";
|
||||
interp3: ~"@{cool-@{cool-@{var}}}";
|
||||
}
|
||||
|
||||
// interpolation in selectors
|
||||
|
||||
@hello: 10;
|
||||
@world: "yeah";
|
||||
|
||||
@{hello}@{world} {
|
||||
color: blue;
|
||||
}
|
||||
|
||||
@{hello} {
|
||||
color: blue;
|
||||
}
|
||||
|
||||
hello world @{hello} {
|
||||
color: red;
|
||||
}
|
||||
|
||||
#@{world} {
|
||||
color: "hello @{hello}";
|
||||
}
|
||||
|
||||
|
||||
@num: 3;
|
||||
|
||||
[prop],
|
||||
[prop="value@{num}"],
|
||||
[prop*="val@{num}"],
|
||||
[|prop~="val@{num}"],
|
||||
[*|prop$="val@{num}"],
|
||||
[ns|prop^="val@{num}"],
|
||||
[@{num}^="val@{num}"],
|
||||
[@{num}=@{num}],
|
||||
[@{num}] {
|
||||
attributes: yes;
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue