I'm reading the LESS official documentation (version 1.5) but I cannot understand how to import a reference to another CSS in order to use its content in my own file. For example:
mystyle.less
@import (reference) "bootstrap.min.css";
.mylabel {
.label-success;
}
It shows this error: NameError: .label-success is undefined
Perhaps I misunderstand the documentation?