From 6c402a6c7c7c6e01cab03fcaa750d8980432a774 Mon Sep 17 00:00:00 2001 From: Ben Hayward Date: Mon, 4 Sep 2017 23:34:10 +0100 Subject: Add correct button-variant mixin hover color (#23657) --- scss/mixins/_buttons.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scss') diff --git a/scss/mixins/_buttons.scss b/scss/mixins/_buttons.scss index 312a18f1d..44ce4f72e 100644 --- a/scss/mixins/_buttons.scss +++ b/scss/mixins/_buttons.scss @@ -10,7 +10,7 @@ @include box-shadow($btn-box-shadow); @include hover { - @include color-yiq($background); + @include color-yiq($active-background); background-color: $active-background; border-color: $active-border; } -- cgit v1.2.3 From bd8ab1070bb1a8e0f4afd17ceeb280ff056e2775 Mon Sep 17 00:00:00 2001 From: Andres Galante Date: Mon, 4 Sep 2017 19:36:12 -0300 Subject: changes floats to flex on breadcrumbs (#23683) --- scss/_breadcrumb.scss | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'scss') diff --git a/scss/_breadcrumb.scss b/scss/_breadcrumb.scss index 52fadec69..5d77eeab6 100644 --- a/scss/_breadcrumb.scss +++ b/scss/_breadcrumb.scss @@ -1,15 +1,14 @@ .breadcrumb { + display: flex; + flex-wrap: wrap; padding: $breadcrumb-padding-y $breadcrumb-padding-x; margin-bottom: $breadcrumb-margin-bottom; list-style: none; background-color: $breadcrumb-bg; @include border-radius($border-radius); - @include clearfix; } .breadcrumb-item { - float: left; - // The separator between breadcrumbs (by default, a forward-slash: "/") + .breadcrumb-item::before { display: inline-block; // Suppress underlining of the separator in modern browsers -- cgit v1.2.3 From 782ee6f60ec6aca0efd6b95865a521cabc607342 Mon Sep 17 00:00:00 2001 From: Andres Galante Date: Wed, 6 Sep 2017 17:02:57 -0300 Subject: Removes background from form-control-plaintext --- scss/_forms.scss | 1 + 1 file changed, 1 insertion(+) (limited to 'scss') diff --git a/scss/_forms.scss b/scss/_forms.scss index 33163a052..fb3dc5599 100644 --- a/scss/_forms.scss +++ b/scss/_forms.scss @@ -130,6 +130,7 @@ select.form-control { padding-bottom: $input-btn-padding-y; margin-bottom: 0; // match inputs if this class comes on inputs with default margins line-height: $input-btn-line-height; + background-color: transparent; border: solid transparent; border-width: $input-btn-border-width 0; -- cgit v1.2.3 From aa5e97da044d774e4d1b5c54234cc8bf1ce862f5 Mon Sep 17 00:00:00 2001 From: Andres Galante Date: Thu, 7 Sep 2017 14:36:01 -0300 Subject: adds missing important on utility classs --- scss/utilities/_borders.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scss') diff --git a/scss/utilities/_borders.scss b/scss/utilities/_borders.scss index b7e91c260..3ff603c32 100644 --- a/scss/utilities/_borders.scss +++ b/scss/utilities/_borders.scss @@ -44,9 +44,9 @@ } .rounded-circle { - border-radius: 50%; + border-radius: 50% !important; } .rounded-0 { - border-radius: 0; + border-radius: 0 !important; } -- cgit v1.2.3 From 0ccb1e8d9ac5736480b8b5cf0c5e8f0e2c0163cd Mon Sep 17 00:00:00 2001 From: Martijn Cuppens Date: Tue, 12 Sep 2017 10:32:43 +0200 Subject: Fix navbar IE (#23652) --- scss/_navbar.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scss') diff --git a/scss/_navbar.scss b/scss/_navbar.scss index ed49b76b9..45c1e05d4 100644 --- a/scss/_navbar.scss +++ b/scss/_navbar.scss @@ -97,7 +97,7 @@ // the default flexbox row orienation. Requires the use of `flex-wrap: wrap` // on the `.navbar` parent. .navbar-collapse { - flex-basis: 100%; + flex-grow: 1; // For always expanded or extra full navbars, ensure content aligns itself // properly vertically. Can be easily overridden with flex utilities. align-items: center; -- cgit v1.2.3 From 5becfa6fb1c04b57020737d7c352404e72766a0a Mon Sep 17 00:00:00 2001 From: Andres Galante Date: Tue, 12 Sep 2017 15:51:54 -0300 Subject: fixes #23926 responsive state on navbar --- scss/_navbar.scss | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'scss') diff --git a/scss/_navbar.scss b/scss/_navbar.scss index 45c1e05d4..15d218e87 100644 --- a/scss/_navbar.scss +++ b/scss/_navbar.scss @@ -97,6 +97,7 @@ // the default flexbox row orienation. Requires the use of `flex-wrap: wrap` // on the `.navbar` parent. .navbar-collapse { + flex-basis: 100%; flex-grow: 1; // For always expanded or extra full navbars, ensure content aligns itself // properly vertically. Can be easily overridden with flex utilities. @@ -177,6 +178,9 @@ // scss-lint:disable ImportantRule .navbar-collapse { display: flex !important; + + // Changes flex-bases to auto because of an IE10 bug + flex-basis: auto; } // scss-lint:enable ImportantRule -- cgit v1.2.3