From d25ff2bddd44b9dac1ceb248424109d1782dd211 Mon Sep 17 00:00:00 2001 From: schneefux Date: Sat, 25 Mar 2017 13:13:57 +0100 Subject: add minionlivesmatter as submodule --- .../templates/assets/bootstrap/scss/_dropdown.scss | 156 --------------------- 1 file changed, 156 deletions(-) delete mode 100644 minionlivesmatter/templates/assets/bootstrap/scss/_dropdown.scss (limited to 'minionlivesmatter/templates/assets/bootstrap/scss/_dropdown.scss') diff --git a/minionlivesmatter/templates/assets/bootstrap/scss/_dropdown.scss b/minionlivesmatter/templates/assets/bootstrap/scss/_dropdown.scss deleted file mode 100644 index 404483e..0000000 --- a/minionlivesmatter/templates/assets/bootstrap/scss/_dropdown.scss +++ /dev/null @@ -1,156 +0,0 @@ -// The dropdown wrapper (`
`) -.dropup, -.dropdown { - position: relative; -} - -.dropdown-toggle { - // Generate the caret automatically - &::after { - display: inline-block; - width: 0; - height: 0; - margin-left: $caret-width; - vertical-align: middle; - content: ""; - border-top: $caret-width solid; - border-right: $caret-width solid transparent; - border-left: $caret-width solid transparent; - } -} - -.dropup { - .dropdown-toggle { - &::after { - border-top: 0; - border-bottom: $caret-width solid; - } - } -} - -// The dropdown menu -.dropdown-menu { - position: absolute; - top: 100%; - left: 0; - z-index: $zindex-dropdown; - display: none; // none by default, but block on "open" of the menu - float: left; - min-width: $dropdown-min-width; - padding: $dropdown-padding-y 0; - margin: $dropdown-margin-top 0 0; // override default ul - font-size: $font-size-base; // Redeclare because nesting can cause inheritance issues - color: $body-color; - text-align: left; // Ensures proper alignment if parent has it changed (e.g., modal footer) - list-style: none; - background-color: $dropdown-bg; - background-clip: padding-box; - border: $dropdown-border-width solid $dropdown-border-color; - @include border-radius($border-radius); - @include box-shadow($dropdown-box-shadow); -} - -// Dividers (basically an `
`) within the dropdown -.dropdown-divider { - @include nav-divider($dropdown-divider-bg); -} - -// Links, buttons, and more within the dropdown menu -// -// `