Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions packages/test-data/css/_main/variables.css
Original file line number Diff line number Diff line change
Expand Up @@ -95,3 +95,6 @@ div#carrot {
div#potato {
color: blue;
}
.icon-5_large {
background-image: url(/img/icon/5_large.svg);
}
6 changes: 6 additions & 0 deletions packages/test-data/less/_main/variables.less
Original file line number Diff line number Diff line change
Expand Up @@ -159,3 +159,9 @@ each(@items, {
color: blue;
}
})

// https://github.com/less/less.js/issues/2462
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It is good information, though I prefer to drop the comment with issue number as the comment itself is not used as part of the test.

@type: 5_large;
.icon-@{type} {
background-image: ~"url(/img/icon/@{type}.svg)";
}