1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| //
| // Grid system
| // --------------------------------------------------
|
|
| // Fixed (940px)
| #grid > .core(@gridColumnWidth, @gridGutterWidth);
|
| // Fluid (940px)
| #grid > .fluid(@fluidGridColumnWidth, @fluidGridGutterWidth);
|
| // Reset utility classes due to specificity
| [class*="span"].hide,
| .row-fluid [class*="span"].hide {
| display: none;
| }
|
| [class*="span"].pull-right,
| .row-fluid [class*="span"].pull-right {
| float: right;
| }
|
|