mirror of
https://github.com/less/less.js.git
synced 2026-02-09 14:35:44 -05:00
20 lines
319 B
Plaintext
20 lines
319 B
Plaintext
.magic-box {
|
|
@trim: orange;
|
|
content: "gold";
|
|
width: 60cm;
|
|
height: 40cm;
|
|
#lock {
|
|
color: silver;
|
|
}
|
|
}
|
|
|
|
#accessors {
|
|
content: .magic-box['content']; // "gold"
|
|
width: .magic-box['width']; // 60cm
|
|
}
|
|
|
|
.unlock {
|
|
.magic-box;
|
|
color: #lock['color']; // silver
|
|
border-color: .magic-box[@trim]; // orange
|
|
} |