import-and-relative-paths-test.less 385 Bytes
Newer Older
liang ce committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
@import "../css/background.css";
@import "import-test-d.css";

@import "imports/logo";
@import "imports/font";

.unquoted-relative-path-bg() {
    background-image: url(../../data/image.jpg);
}
.quoted-relative-path-border-image() {
    border-image: url('../../data/image.jpg');
}

#imported-relative-path {
    .unquoted-relative-path-bg;
    .quoted-relative-path-border-image;
}