You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trying to scope bootstrap into a single class gives me some unexpected results:
Writing following code: .test-panel { @import 'bootstrap/less/bootstrap'; }
Outputs:
Unexpected result on line 5865 -> 5910 where selectors are scoped into .test-panel a second time. Expected result for line 5865 would be: .test-panel .dl-horizontal dd:before,
Note that this problem only occurs for the selectors seen in this screenshot. Every other selector in the bootstrap file compiles just fine.
I am using "grunt-contrib-less": "1.0.0" as the compiler.
The text was updated successfully, but these errors were encountered:
Trying to scope bootstrap into a single class gives me some unexpected results:
Writing following code:
.test-panel { @import 'bootstrap/less/bootstrap'; }
Outputs:
Unexpected result on line 5865 -> 5910 where selectors are scoped into
.test-panel
a second time.Expected result for line 5865 would be:
.test-panel .dl-horizontal dd:before,
Note that this problem only occurs for the selectors seen in this screenshot. Every other selector in the bootstrap file compiles just fine.
I am using "grunt-contrib-less": "1.0.0" as the compiler.
The text was updated successfully, but these errors were encountered: