vendor/twitter/bootstrap/less/theme.less in bootstrap-generators-3.1.1.3 vs vendor/twitter/bootstrap/less/theme.less in bootstrap-generators-3.2.0

- old
+ new

@@ -46,10 +46,16 @@ &:active, &.active { background-color: darken(@btn-color, 12%); border-color: darken(@btn-color, 14%); } + + &:disabled, + &[disabled] { + background-color: darken(@btn-color, 12%); + background-image: none; + } } // Common styles .btn { // Remove the gradient for the pressed/active state @@ -189,9 +195,14 @@ .progress-bar-success { .progress-bar-styles(@progress-bar-success-bg); } .progress-bar-info { .progress-bar-styles(@progress-bar-info-bg); } .progress-bar-warning { .progress-bar-styles(@progress-bar-warning-bg); } .progress-bar-danger { .progress-bar-styles(@progress-bar-danger-bg); } +// Reset the striped class because our mixins don't do multiple gradients and +// the above custom styles override the new `.progress-bar-striped` in v3.2.0. +.progress-bar-striped { + #gradient > .striped(); +} // // List groups // --------------------------------------------------