Skip to content

Commit

Permalink
Merge branch '2.0.4.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-mcdonald committed Aug 28, 2012
2 parents 3c9a476 + d58ad33 commit c75e438
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 19 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,10 @@
# Changelog

## 2.0.4.1
* Fix `.row-fluid > spanX` nesting
* Small Javascript fixes for those staying on the 2.0.4 release
* Add `!default` to z-index variables.

## 2.0.4.0
* Updated to Bootstrap 2.0.4
* Switched to Bootstrap 2.0.3+'s method of separating responsive files
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -16,7 +16,7 @@ Updating your application to a new version of `bootstrap-sass`? See our [changel
In your Gemfile:

gem 'sass-rails', '~> 3.1'
gem 'bootstrap-sass', '~> 2.0.4.0'
gem 'bootstrap-sass', '~> 2.0.4.1'

#### CSS

Expand Down
2 changes: 1 addition & 1 deletion bootstrap-sass.gemspec
@@ -1,6 +1,6 @@
Gem::Specification.new do |s|
s.name = "bootstrap-sass"
s.version = '2.0.4.0'
s.version = '2.0.4.1'
s.authors = ["Thomas McDonald"]
s.email = 'tom@conceptcoding.co.uk'
s.summary = "Twitter's Bootstrap, converted to Sass and ready to drop into Rails or Compass"
Expand Down
2 changes: 1 addition & 1 deletion vendor/assets/javascripts/bootstrap-transition.js
Expand Up @@ -36,7 +36,7 @@
, transEndEventNames = {
'WebkitTransition' : 'webkitTransitionEnd'
, 'MozTransition' : 'transitionend'
, 'OTransition' : 'oTransitionEnd'
, 'OTransition' : 'otransitionend'
, 'msTransition' : 'MSTransitionEnd'
, 'transition' : 'transitionend'
}
Expand Down
2 changes: 1 addition & 1 deletion vendor/assets/javascripts/bootstrap-typeahead.js
Expand Up @@ -168,7 +168,7 @@
.on('keypress', $.proxy(this.keypress, this))
.on('keyup', $.proxy(this.keyup, this))

if ($.browser.webkit || $.browser.msie) {
if ($.browser.webkit || $.browser.msie || $.browser.mozilla) {
this.$element.on('keydown', $.proxy(this.keypress, this))
}

Expand Down
2 changes: 1 addition & 1 deletion vendor/assets/stylesheets/bootstrap/_forms.scss
Expand Up @@ -381,7 +381,7 @@ input:focus:required:invalid, textarea:focus:required:invalid, select:focus:requ
// SEARCH FORM
// -----------

.search-query {
input.search-query { // input. fix the overwriting of the search-query and allow rounded corner for the search field
padding-right: 14px;
padding-right: 4px \9;
padding-left: 14px;
Expand Down
12 changes: 4 additions & 8 deletions vendor/assets/stylesheets/bootstrap/_mixins.scss
Expand Up @@ -585,14 +585,10 @@
[class*="span"]:first-child {
margin-left: 0;
}

// generate .spanX
@include gridFluidSpanX($gridColumns, $columnWidth, $gutterWidth);
}
}
@mixin gridFluidSpanX($cols, $columnWidth, $gutterWidth) {
@for $i from 1 through $cols {
.span#{$i} { @include gridFluidSpan($i, $columnWidth, $gutterWidth) };
// generate .row-fluid > .spanX
@for $i from 1 through $gridColumns {
.row-fluid > .span#{$i} { @include gridFluidSpan($i, $columnWidth, $gutterWidth) };
}
}
@mixin gridFluidSpan($columns, $columnWidth, $gutterWidth) {
Expand Down Expand Up @@ -622,4 +618,4 @@
float: left;
margin-left: $gutterWidth;
@include gridFluidSpan($columns, $columnWidth, $gutterWidth);
}
}
12 changes: 6 additions & 6 deletions vendor/assets/stylesheets/bootstrap/_variables.scss
Expand Up @@ -114,12 +114,12 @@ $dropdownDividerBottom: $white !default;
// -------------------------
// Used for a bird's eye view of components dependent on the z-axis
// Try to avoid customizing these :)
$zindexDropdown: 1000;
$zindexPopover: 1010;
$zindexTooltip: 1020;
$zindexFixedNavbar: 1030;
$zindexModalBackdrop: 1040;
$zindexModal: 1050;
$zindexDropdown: 1000 !default;
$zindexPopover: 1010 !default;
$zindexTooltip: 1020 !default;
$zindexFixedNavbar: 1030 !default;
$zindexModalBackdrop: 1040 !default;
$zindexModal: 1050 !default;


// Sprite icons path
Expand Down

0 comments on commit c75e438

Please sign in to comment.