mirror of
https://github.com/less/less.js.git
synced 2026-02-06 04:55:03 -05:00
Fix '::' selector output, Closes #663
This commit is contained in:
@@ -55,3 +55,15 @@ p a span {
|
||||
.qux .foo .baz .biz {
|
||||
display: none;
|
||||
}
|
||||
.other ::fnord {
|
||||
color: #ff0000;
|
||||
}
|
||||
.other::fnord {
|
||||
color: #ff0000;
|
||||
}
|
||||
.other ::bnord {
|
||||
color: #ff0000;
|
||||
}
|
||||
.other::bnord {
|
||||
color: #ff0000;
|
||||
}
|
||||
|
||||
@@ -45,4 +45,11 @@ a {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.other ::fnord { color: red }
|
||||
.other::fnord { color: red }
|
||||
.other {
|
||||
::bnord {color: red }
|
||||
&::bnord {color: red }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user