Skip to content

Commit

Permalink
Bootstrap: Update to version v2.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
joomlart committed May 20, 2013
1 parent 1a1608e commit 16729bf
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 24 deletions.
2 changes: 1 addition & 1 deletion source/plg_system_t3/base/bootstrap/less/bootstrap.less
@@ -1,5 +1,5 @@
/*!
* Bootstrap v2.3.1
* Bootstrap v2.3.2
*
* Copyright 2012 Twitter, Inc
* Licensed under the Apache License v2.0
Expand Down
11 changes: 11 additions & 0 deletions source/plg_system_t3/base/bootstrap/less/dropdowns.less
Expand Up @@ -135,6 +135,17 @@
}
}

// Backdrop to catch body clicks on mobile, etc.
// ---------------------------
.dropdown-backdrop {
position: fixed;
left: 0;
right: 0;
bottom: 0;
top: 0;
z-index: @zindexDropdown - 10;
}

// Right aligned dropdowns
// ---------------------------
.pull-right > .dropdown-menu {
Expand Down
28 changes: 14 additions & 14 deletions source/plg_system_t3/base/bootstrap/less/mixins.less
Expand Up @@ -575,13 +575,13 @@
.core (@gridColumnWidth, @gridGutterWidth) {

.spanX (@index) when (@index > 0) {
(~".span@{index}") { .span(@index); }
.span@{index} { .span(@index); }
.spanX(@index - 1);
}
.spanX (0) {}

.offsetX (@index) when (@index > 0) {
(~".offset@{index}") { .offset(@index); }
.offset@{index} { .offset(@index); }
.offsetX(@index - 1);
}
.offsetX (0) {}
Expand Down Expand Up @@ -619,18 +619,18 @@

.fluid (@fluidGridColumnWidth, @fluidGridGutterWidth) {

.spanX (@index, @fluidGridColumnWidth, @fluidGridGutterWidth) when (@index > 0) {
(~".span@{index}") { .span(@index); }
.spanX(@index - 1, @fluidGridColumnWidth, @fluidGridGutterWidth);
.spanX (@index) when (@index > 0) {
.span@{index} { .span(@index); }
.spanX(@index - 1);
}
.spanX (0, @fluidGridColumnWidth, @fluidGridGutterWidth) {}
.spanX (0) {}

.offsetX (@index, @fluidGridColumnWidth, @fluidGridGutterWidth) when (@index > 0) {
(~'.offset@{index}') { .offset(@index); }
(~'.offset@{index}:first-child') { .offsetFirstChild(@index); }
.offsetX(@index - 1, @fluidGridColumnWidth, @fluidGridGutterWidth);
.offsetX (@index) when (@index > 0) {
.offset@{index} { .offset(@index); }
.offset@{index}:first-child { .offsetFirstChild(@index); }
.offsetX(@index - 1);
}
.offsetX (0, @fluidGridColumnWidth, @fluidGridGutterWidth) {}
.offsetX (0) {}

.offset (@columns) {
margin-left: (@fluidGridColumnWidth * @columns) + (@fluidGridGutterWidth * (@columns - 1)) + (@fluidGridGutterWidth*2);
Expand Down Expand Up @@ -666,16 +666,16 @@
}

// generate .spanX and .offsetX
.spanX (@gridColumns, @fluidGridColumnWidth, @fluidGridGutterWidth);
.offsetX (@gridColumns, @fluidGridColumnWidth, @fluidGridGutterWidth);
.spanX (@gridColumns);
.offsetX (@gridColumns);
}

}

.input(@gridColumnWidth, @gridGutterWidth) {

.spanX (@index) when (@index > 0) {
(~"input.span@{index}, textarea.span@{index}, .uneditable-input.span@{index}") { .span(@index); }
input.span@{index}, textarea.span@{index}, .uneditable-input.span@{index} { .span(@index); }
.spanX(@index - 1);
}
.spanX (0) {}
Expand Down
Expand Up @@ -171,14 +171,6 @@
padding-right: 10px;
}

// T3 Added: Fixed Bootstrap Navigation bugs on responsive
// -------------------------------------------------------
.navbar-static-top .container,
.navbar-fixed-top .container,
.navbar-fixed-bottom .container {
width: auto;
}


}

Expand Down
2 changes: 1 addition & 1 deletion source/plg_system_t3/base/bootstrap/less/responsive.less
@@ -1,5 +1,5 @@
/*!
* Bootstrap Responsive v2.3.1
* Bootstrap Responsive v2.3.2
*
* Copyright 2012 Twitter, Inc
* Licensed under the Apache License v2.0
Expand Down

0 comments on commit 16729bf

Please sign in to comment.