Skip to content

Commit c75e438

Browse files
Merge branch '2.0.4.1'
2 parents 3c9a476 + d58ad33 commit c75e438

File tree

8 files changed

+20
-19
lines changed

8 files changed

+20
-19
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 2.0.4.1
4+
* Fix `.row-fluid > spanX` nesting
5+
* Small Javascript fixes for those staying on the 2.0.4 release
6+
* Add `!default` to z-index variables.
7+
38
## 2.0.4.0
49
* Updated to Bootstrap 2.0.4
510
* Switched to Bootstrap 2.0.3+'s method of separating responsive files

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Updating your application to a new version of `bootstrap-sass`? See our [changel
1616
In your Gemfile:
1717

1818
gem 'sass-rails', '~> 3.1'
19-
gem 'bootstrap-sass', '~> 2.0.4.0'
19+
gem 'bootstrap-sass', '~> 2.0.4.1'
2020

2121
#### CSS
2222

bootstrap-sass.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Gem::Specification.new do |s|
22
s.name = "bootstrap-sass"
3-
s.version = '2.0.4.0'
3+
s.version = '2.0.4.1'
44
s.authors = ["Thomas McDonald"]
55
s.email = 'tom@conceptcoding.co.uk'
66
s.summary = "Twitter's Bootstrap, converted to Sass and ready to drop into Rails or Compass"

vendor/assets/javascripts/bootstrap-transition.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
, transEndEventNames = {
3737
'WebkitTransition' : 'webkitTransitionEnd'
3838
, 'MozTransition' : 'transitionend'
39-
, 'OTransition' : 'oTransitionEnd'
39+
, 'OTransition' : 'otransitionend'
4040
, 'msTransition' : 'MSTransitionEnd'
4141
, 'transition' : 'transitionend'
4242
}

vendor/assets/javascripts/bootstrap-typeahead.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@
168168
.on('keypress', $.proxy(this.keypress, this))
169169
.on('keyup', $.proxy(this.keyup, this))
170170

171-
if ($.browser.webkit || $.browser.msie) {
171+
if ($.browser.webkit || $.browser.msie || $.browser.mozilla) {
172172
this.$element.on('keydown', $.proxy(this.keypress, this))
173173
}
174174

vendor/assets/stylesheets/bootstrap/_forms.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ input:focus:required:invalid, textarea:focus:required:invalid, select:focus:requ
381381
// SEARCH FORM
382382
// -----------
383383

384-
.search-query {
384+
input.search-query { // input. fix the overwriting of the search-query and allow rounded corner for the search field
385385
padding-right: 14px;
386386
padding-right: 4px \9;
387387
padding-left: 14px;

vendor/assets/stylesheets/bootstrap/_mixins.scss

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -585,14 +585,10 @@
585585
[class*="span"]:first-child {
586586
margin-left: 0;
587587
}
588-
589-
// generate .spanX
590-
@include gridFluidSpanX($gridColumns, $columnWidth, $gutterWidth);
591588
}
592-
}
593-
@mixin gridFluidSpanX($cols, $columnWidth, $gutterWidth) {
594-
@for $i from 1 through $cols {
595-
.span#{$i} { @include gridFluidSpan($i, $columnWidth, $gutterWidth) };
589+
// generate .row-fluid > .spanX
590+
@for $i from 1 through $gridColumns {
591+
.row-fluid > .span#{$i} { @include gridFluidSpan($i, $columnWidth, $gutterWidth) };
596592
}
597593
}
598594
@mixin gridFluidSpan($columns, $columnWidth, $gutterWidth) {
@@ -622,4 +618,4 @@
622618
float: left;
623619
margin-left: $gutterWidth;
624620
@include gridFluidSpan($columns, $columnWidth, $gutterWidth);
625-
}
621+
}

vendor/assets/stylesheets/bootstrap/_variables.scss

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -114,12 +114,12 @@ $dropdownDividerBottom: $white !default;
114114
// -------------------------
115115
// Used for a bird's eye view of components dependent on the z-axis
116116
// Try to avoid customizing these :)
117-
$zindexDropdown: 1000;
118-
$zindexPopover: 1010;
119-
$zindexTooltip: 1020;
120-
$zindexFixedNavbar: 1030;
121-
$zindexModalBackdrop: 1040;
122-
$zindexModal: 1050;
117+
$zindexDropdown: 1000 !default;
118+
$zindexPopover: 1010 !default;
119+
$zindexTooltip: 1020 !default;
120+
$zindexFixedNavbar: 1030 !default;
121+
$zindexModalBackdrop: 1040 !default;
122+
$zindexModal: 1050 !default;
123123

124124

125125
// Sprite icons path

0 commit comments

Comments
 (0)