File tree Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change 575
575
.core (@gridColumnWidth , @gridGutterWidth ) {
576
576
577
577
.spanX (@index ) when (@index > 0 ) {
578
- ( ~ " .span@{index} " ) { .span (@index ); }
578
+ .span @{index} { .span (@index ); }
579
579
.spanX (@index - 1 );
580
580
}
581
581
.spanX (0 ) {}
582
582
583
583
.offsetX (@index ) when (@index > 0 ) {
584
- ( ~ " .offset@{index} " ) { .offset (@index ); }
584
+ .offset @{index} { .offset (@index ); }
585
585
.offsetX (@index - 1 );
586
586
}
587
587
.offsetX (0 ) {}
620
620
.fluid (@fluidGridColumnWidth , @fluidGridGutterWidth ) {
621
621
622
622
.spanX (@index ) when (@index > 0 ) {
623
- ( ~ " .span@{index} " ) { .span (@index ); }
623
+ .span @{index} { .span (@index ); }
624
624
.spanX (@index - 1 );
625
625
}
626
626
.spanX (0 ) {}
627
627
628
628
.offsetX (@index ) when (@index > 0 ) {
629
- ( ~ ' .offset@{index} ' ) { .offset (@index ); }
630
- ( ~ ' .offset@{index} :first-child' ) { .offsetFirstChild (@index ); }
629
+ .offset @{index} { .offset (@index ); }
630
+ .offset @{index} :first-child { .offsetFirstChild (@index ); }
631
631
.offsetX (@index - 1 );
632
632
}
633
633
.offsetX (0 ) {}
675
675
.input (@gridColumnWidth , @gridGutterWidth ) {
676
676
677
677
.spanX (@index ) when (@index > 0 ) {
678
- ( ~ " input.span@{index} , textarea.span@{index} , .uneditable-input.span@{index} " ) { .span (@index ); }
678
+ input .span @{index} , textarea .span @{index} , .uneditable-input.span @{index} { .span (@index ); }
679
679
.spanX (@index - 1 );
680
680
}
681
681
.spanX (0 ) {}
699
699
.spanX (@gridColumns );
700
700
701
701
}
702
-
703
702
}
You can’t perform that action at this time.
0 commit comments