Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <markotto@twitter.com>2012-08-29 00:33:06 +0400
committerMark Otto <markotto@twitter.com>2012-08-29 00:33:06 +0400
commit0b122bc5c526724992036a8e286079188ade3b10 (patch)
treefc639433a295ffa0962488ca7f4c49dfeebbf326 /less/responsive-1200px-min.less
parente27b1355b58331eeb24915bee3e1c9dde4977f17 (diff)
remake the box-size grid, nuke fluid grid docs, fix up examples, clean up form styles
Diffstat (limited to 'less/responsive-1200px-min.less')
-rw-r--r--less/responsive-1200px-min.less18
1 files changed, 8 insertions, 10 deletions
diff --git a/less/responsive-1200px-min.less b/less/responsive-1200px-min.less
index 4f35ba6ca2..8b909b8cdb 100644
--- a/less/responsive-1200px-min.less
+++ b/less/responsive-1200px-min.less
@@ -5,14 +5,15 @@
@media (min-width: 1200px) {
- // Fixed grid
- #grid > .core(@gridColumnWidth1200, @gridGutterWidth1200);
-
- // Fluid grid
- #grid > .fluid(@fluidGridColumnWidth1200, @fluidGridGutterWidth1200);
+ // Set the container width, and override it for fixed navbars in media queries
+ .container,
+ .navbar-fixed-top .container,
+ .navbar-fixed-bottom .container {
+ width: 1170px;
+ }
- // Input grid
- #grid > .input(@gridColumnWidth1200, @gridGutterWidth1200);
+ // Fixed grid
+ #grid > .core(@gridColumnWidth1200, @gridGutterWidth1200, @gridRowWidth1200);
// Thumbnails
.thumbnails {
@@ -21,8 +22,5 @@
.thumbnails > li {
margin-left: @gridGutterWidth1200;
}
- .row-fluid .thumbnails {
- margin-left: 0;
- }
}