local changes from server
[redakcja.git] / apps / wiki / static--wiki--editor--node_modules--grunt-contrib-less--node_modules--less--test / less / mixins-important.less
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 }