Twitter ブートストラップのスタイルを使用していますが、継承について質問があります。
ブートストラップからラベル スタイルを継承する 2 つのラベル クラスを作成したいと思います。
.label-new {
.label; .label-important;
}
.label-updated {
.label; .label-warning;
}
ただし、ブートストラップで以下を使用して .label-important と .label-warning が定義されているため、上記では LESS 解析エラー "NameError: .label-important is undefined" が発生します。
.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 を継承する特別な構文はありますか?
前もって感謝します。