]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
fixes #23926 responsive state on navbar 23929/head
authorAndres Galante <agalante@gmail.com>
Tue, 12 Sep 2017 18:51:54 +0000 (15:51 -0300)
committerAndres Galante <agalante@gmail.com>
Wed, 13 Sep 2017 00:41:15 +0000 (21:41 -0300)
scss/_navbar.scss

index 45c1e05d4eee1314bf527b5a6a8b118cdc3651bd..15d218e8732a0656bbaddd3ba4a80ba6a98cab73 100644 (file)
@@ -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.
         // 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