我正在使用来自twitter bootstrap的样式,并且对继承有疑问。
我想制作两个从 bootstrap 继承标签样式的标签类。
.label-new {
.label; .label-important;
}
.label-updated {
.label; .label-warning;
}
但是,上述情况会导致 LESS 解析错误“NameError: .label-important is undefined”,因为 .label-important 和 .label-warning 是在引导程序中使用以下内容定义的:
.label,
.badge {
// Important (red)
&-important { background-color: @errorText; }
&-important[href] { background-color: darken(@errorText, 10%); }
// Warnings (orange)
&-warning { background-color: @orange; }
&-warning[href] { background-color: darken(@orange, 10%); }
}
是否有任何特殊语法可以继承 .label-important/warning?
提前致谢。