]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Fix dropup in bottom navbar for all the breakpoints
authorJohann-S <johann.servoire@gmail.com>
Wed, 4 Oct 2017 13:24:10 +0000 (15:24 +0200)
committerJohann-S <johann.servoire@gmail.com>
Wed, 4 Oct 2017 14:22:55 +0000 (16:22 +0200)
scss/_navbar.scss

index a0ccc06fb7101078ff28a92a1ff6891d8b9996bc..6b023e82e4001979088b95a2f12366b0b80c3108 100644 (file)
     position: static;
     float: none;
   }
-
-  .dropdown-toggle {
-    &::after {
-      border-top: $caret-width solid;
-      border-bottom: 0;
-    }
-  }
 }
 
 
           padding-right: 0;
           padding-left: 0;
         }
-
-        .dropup {
-          .dropdown-menu {
-            position: absolute;
-            top: auto;
-            bottom: 100%;
-          }
-
-          .dropdown-toggle {
-            @include caret(up);
-          }
-        }
       }
 
       @include media-breakpoint-up($next) {
         .navbar-toggler {
           display: none;
         }
+
+        .dropup {
+          .dropdown-menu {
+            top: auto;
+            bottom: 100%;
+          }
+        }
       }
     }
   }