Skip to content

Commit

Permalink
Issue with duplicated @import
Browse files Browse the repository at this point in the history
  • Loading branch information
vicb committed Jun 25, 2010
1 parent 7b3cf33 commit 674d9db
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/css/import-once.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#test {
font-size: 10px;
}
6 changes: 6 additions & 0 deletions test/less/import-once.less
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
@import "import/import-once-a";
@import "import/import-once-b";

#test {
.unique(10px);
}
4 changes: 4 additions & 0 deletions test/less/import/import-once-a.less
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.unique(@size: 10px)
{
font-size: @size;
}
3 changes: 3 additions & 0 deletions test/less/import/import-once-b.less
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
@import "import-once-a";

@dontcare: 1;

0 comments on commit 674d9db

Please sign in to comment.