Commit 22a9a836 authored by Mark Otto's avatar Mark Otto

fixes #3694: provide override classes for .hide and .pull-right for grid columns

parent d63ebe3f
...@@ -532,6 +532,16 @@ a:hover { ...@@ -532,6 +532,16 @@ a:hover {
*margin-left: 8.404255319148938%; *margin-left: 8.404255319148938%;
} }
[class*="span"].hide,
.row-fluid [class*="span"].hide {
display: none;
}
[class*="span"].pull-right,
.row-fluid [class*="span"].pull-right {
float: right;
}
.container { .container {
margin-right: auto; margin-right: auto;
margin-left: auto; margin-left: auto;
......
...@@ -7,4 +7,15 @@ ...@@ -7,4 +7,15 @@
#grid > .core(@gridColumnWidth, @gridGutterWidth); #grid > .core(@gridColumnWidth, @gridGutterWidth);
// Fluid (940px) // Fluid (940px)
#grid > .fluid(@fluidGridColumnWidth, @fluidGridGutterWidth); #grid > .fluid(@fluidGridColumnWidth, @fluidGridGutterWidth);
\ No newline at end of file
// 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;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment