aboutsummaryrefslogtreecommitdiffstats
path: root/assets/node_modules/bootstrap/scss/_nav.scss
diff options
context:
space:
mode:
authorMatt Rude <[email protected]>2018-02-11 16:18:12 -0600
committerMatt Rude <[email protected]>2018-02-11 16:18:12 -0600
commit49a482b86126cf0c0030344e3fc999fbe19bff28 (patch)
treef2b8b143823128f730cff2c17be35355c2bfc08b /assets/node_modules/bootstrap/scss/_nav.scss
parenteeda944e54797a58e58124e564d88934f5799644 (diff)
downloadxmpp-site-lite-49a482b86126cf0c0030344e3fc999fbe19bff28.tar.gz
xmpp-site-lite-49a482b86126cf0c0030344e3fc999fbe19bff28.tar.bz2
xmpp-site-lite-49a482b86126cf0c0030344e3fc999fbe19bff28.zip
Remove the rest of the unused bootstrap
Diffstat (limited to 'assets/node_modules/bootstrap/scss/_nav.scss')
-rw-r--r--assets/node_modules/bootstrap/scss/_nav.scss118
1 files changed, 0 insertions, 118 deletions
diff --git a/assets/node_modules/bootstrap/scss/_nav.scss b/assets/node_modules/bootstrap/scss/_nav.scss
deleted file mode 100644
index fc82161..0000000
--- a/assets/node_modules/bootstrap/scss/_nav.scss
+++ /dev/null
@@ -1,118 +0,0 @@
-// Base class
-//
-// Kickstart any navigation component with a set of style resets. Works with
-// `<nav>`s or `<ul>`s.
-
-.nav {
- display: flex;
- flex-wrap: wrap;
- padding-left: 0;
- margin-bottom: 0;
- list-style: none;
-}
-
-.nav-link {
- display: block;
- padding: $nav-link-padding-y $nav-link-padding-x;
-
- @include hover-focus {
- text-decoration: none;
- }
-
- // Disabled state lightens text
- &.disabled {
- color: $nav-link-disabled-color;
- }
-}
-
-//
-// Tabs
-//
-
-.nav-tabs {
- border-bottom: $nav-tabs-border-width solid $nav-tabs-border-color;
-
- .nav-item {
- margin-bottom: -$nav-tabs-border-width;
- }
-
- .nav-link {
- border: $nav-tabs-border-width solid transparent;
- @include border-top-radius($nav-tabs-border-radius);
-
- @include hover-focus {
- border-color: $nav-tabs-link-hover-border-color;
- }
-
- &.disabled {
- color: $nav-link-disabled-color;
- background-color: transparent;
- border-color: transparent;
- }
- }
-
- .nav-link.active,
- .nav-item.show .nav-link {
- color: $nav-tabs-link-active-color;
- background-color: $nav-tabs-link-active-bg;
- border-color: $nav-tabs-link-active-border-color;
- }
-
- .dropdown-menu {
- // Make dropdown border overlap tab border
- margin-top: -$nav-tabs-border-width;
- // Remove the top rounded corners here since there is a hard edge above the menu
- @include border-top-radius(0);
- }
-}
-
-
-//
-// Pills
-//
-
-.nav-pills {
- .nav-link {
- @include border-radius($nav-pills-border-radius);
- }
-
- .nav-link.active,
- .show > .nav-link {
- color: $nav-pills-link-active-color;
- background-color: $nav-pills-link-active-bg;
- }
-}
-
-
-//
-// Justified variants
-//
-
-.nav-fill {
- .nav-item {
- flex: 1 1 auto;
- text-align: center;
- }
-}
-
-.nav-justified {
- .nav-item {
- flex-basis: 0;
- flex-grow: 1;
- text-align: center;
- }
-}
-
-
-// Tabbable tabs
-//
-// Hide tabbable panes to start, show them when `.active`
-
-.tab-content {
- > .tab-pane {
- display: none;
- }
- > .active {
- display: block;
- }
-}