mirror of
https://github.com/Icinga/icingaweb2.git
synced 2026-03-29 13:53:40 -04:00
we use the following vendor libraries: - Markdown.php for on-the-fly creation of documentation - htmlpurifier for sane HTML output - lessphp for on-the-fly creation of css out of less files - tcpdf for pdf generation in the backend refs #4212
33 lines
358 B
Text
33 lines
358 B
Text
|
|
@cool-hello: "yes";
|
|
@cool-yes: "okay";
|
|
@var: "hello";
|
|
|
|
div {
|
|
color: ~"@{cool-hello}";
|
|
color: ~"@{cool-@{var}}";
|
|
color: ~"@{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}";
|
|
}
|
|
|
|
|