/
githubmirror
/
brackets
Обзор
Документация
Войти
/
githubmirror
/
brackets
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/spec/CSSUtils-test-files/variables.less
41 строка
588 B
RaymondLim
less and scss unit tests
12 сен 2014, 22:57
12 сен 2014, 22:57
812fe37
Код
Авторство
О чём код?
// Variables @themes: "../../src/themes"; // Usage @import "@{themes}/tidal-wave.less";@mySelector: banner; @fnord: "I am fnord."; @var: "fnord"; content: @@var; .@{mySelector} { font-weight: bold; } .after-variable-interpolated-selector { color: green; } @property: color; .widget { @{property}: #0ee; background-@{property}: #999; } .after-variable-interpolated-property { color: green; } // Variables @images: "../img"; // Usage body { color: #444; background: url("@{images}/white-sand.png"); } .after-variable-interpolated-url { color: green; }