-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Olivier Nicodemi
committed
Sep 23, 2021
1 parent
36bb6ce
commit e491ff6
Showing
3 changed files
with
25 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -136,8 +136,6 @@ body > .shadow { | |
symbols: ‣; | ||
suffix: " "; | ||
} | ||
@-ms-viewport { | ||
} | ||
@unknown foo 42 (bar) { | ||
x { | ||
y: z; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
packages/test-data/less/_main/import-reference-issues/comments-2991.less
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
.referenced { | ||
// line comment is enough to reproduce it | ||
@media (hover) { | ||
// sezam | ||
} | ||
// repeat to prove point | ||
@media (hover) { | ||
// sezam | ||
} | ||
// but block comment is not, huh | ||
@media (hover) { | ||
/* salabim */ | ||
} | ||
// following block does not output, needs line comment | ||
@media (hover) { | ||
color: #000000; | ||
} | ||
} | ||
// needs to be nested to fail | ||
@media (hover) { | ||
// sezam | ||
} |