fnp
/
redakcja.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
add tags to document and organization
[redakcja.git]
/
apps
/
wiki
/
static--wiki--editor--node_modules--grunt-contrib-less--node_modules--less--test
/
less
/
mixins-closure.less
1
.scope {
2
@var: 99px;
3
.mixin () {
4
width: @var;
5
}
6
}
7
8
.class {
9
.scope > .mixin;
10
}
11
12
.overwrite {
13
@var: 0px;
14
.scope > .mixin;
15
}
16
17
.nested {
18
@var: 5px;
19
.mixin () {
20
width: @var;
21
}
22
.class {
23
@var: 10px;
24
.mixin;
25
}
26
}