From ba0ea92623a5079028b744d2fda1f42a1d37ac17 Mon Sep 17 00:00:00 2001 From: Richard Lindner Date: Tue, 7 Jul 2015 22:50:09 +0200 Subject: [PATCH 1/2] fixes https://github.com/twbs/bootstrap/issues/16779 --- less/jumbotron.less | 2 ++ 1 file changed, 2 insertions(+) diff --git a/less/jumbotron.less b/less/jumbotron.less index fa80a38c6..1d9b515b3 100644 --- a/less/jumbotron.less +++ b/less/jumbotron.less @@ -28,6 +28,8 @@ .container &, .container-fluid & { border-radius: @border-radius-large; // Only round corners at higher resolutions if contained in a container + padding-left: (@grid-gutter-width / 2); + padding-right: (@grid-gutter-width / 2); } .container { From 84919620218a4748eb7f69f8d6c2fa6de6fc43e8 Mon Sep 17 00:00:00 2001 From: Edwin Lin Date: Fri, 10 Jul 2015 21:10:19 -0700 Subject: [PATCH 2/2] Show active buttons when form disabled --- less/mixins/buttons.less | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/less/mixins/buttons.less b/less/mixins/buttons.less index 6875a97c8..b294d8c21 100644 --- a/less/mixins/buttons.less +++ b/less/mixins/buttons.less @@ -42,12 +42,9 @@ &.disabled, &[disabled], fieldset[disabled] & { - &, &:hover, &:focus, - &.focus, - &:active, - &.active { + &.focus { background-color: @background; border-color: @border; }