32 lines
377 B
Plaintext
32 lines
377 B
Plaintext
.button {
|
|
&-ok {
|
|
background-image: url("ok.png");
|
|
}
|
|
&-cancel {
|
|
background-image: url("cancel.png");
|
|
}
|
|
|
|
&-custom {
|
|
background-image: url("custom.png");
|
|
}
|
|
}
|
|
.link {
|
|
& + & {
|
|
color: red;
|
|
}
|
|
|
|
& & {
|
|
color: green;
|
|
}
|
|
|
|
&& {
|
|
color: blue;
|
|
}
|
|
|
|
&, &ish {
|
|
color: cyan;
|
|
}
|
|
}
|
|
|
|
// From https://lesscss.org/features/#parent-selectors-feature
|