I want to import all styles from another less file, but into a limited scope. I\'m trying this:
\"my-site.less\"
.wrapper-class { @import \"path/to/s
Since this question was posted and answered, pre-processors have implemented @import with scope. This now works in LESS, SASS and Stylus.
example:
.lt-ie9 { @import "ie8-fixes"; }