fnp
/
redakcja.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
c8cc1d5cafd589971c37c037f19cc5c80980643f
[redakcja.git]
/
1
.submixin(@a) {
2
border-width: @a;
3
}
4
.mixin (9) {
5
border: 9 !important;
6
}
7
.mixin (@a: 0) {
8
border: @a;
9
boxer: @a;
10
.inner {
11
test: @a;
12
}
13
// comment
14
.submixin(@a);
15
}
16
17
.class {
18
.mixin(1);
19
.mixin(2) !important;
20
.mixin(3);
21
.mixin(4) !important;
22
.mixin(5);
23
.mixin !important;
24
.mixin(9);
25
}