aboutsummaryrefslogtreecommitdiffstats
path: root/assets/node_modules/bootstrap/scss/mixins/_caret.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/mixins/_caret.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/mixins/_caret.scss')
-rw-r--r--assets/node_modules/bootstrap/scss/mixins/_caret.scss65
1 files changed, 0 insertions, 65 deletions
diff --git a/assets/node_modules/bootstrap/scss/mixins/_caret.scss b/assets/node_modules/bootstrap/scss/mixins/_caret.scss
deleted file mode 100644
index 40478e4..0000000
--- a/assets/node_modules/bootstrap/scss/mixins/_caret.scss
+++ /dev/null
@@ -1,65 +0,0 @@
-@mixin caret-down {
- border-top: $caret-width solid;
- border-right: $caret-width solid transparent;
- border-bottom: 0;
- border-left: $caret-width solid transparent;
-}
-
-@mixin caret-up {
- border-top: 0;
- border-right: $caret-width solid transparent;
- border-bottom: $caret-width solid;
- border-left: $caret-width solid transparent;
-}
-
-@mixin caret-right {
- border-top: $caret-width solid transparent;
- border-bottom: $caret-width solid transparent;
- border-left: $caret-width solid;
-}
-
-@mixin caret-left {
- border-top: $caret-width solid transparent;
- border-right: $caret-width solid;
- border-bottom: $caret-width solid transparent;
-}
-
-@mixin caret($direction: down) {
- @if $enable-caret {
- &::after {
- display: inline-block;
- width: 0;
- height: 0;
- margin-left: $caret-width * .85;
- vertical-align: $caret-width * .85;
- content: "";
- @if $direction == down {
- @include caret-down;
- } @else if $direction == up {
- @include caret-up;
- } @else if $direction == right {
- @include caret-right;
- }
- }
-
- @if $direction == left {
- &::after {
- display: none;
- }
-
- &::before {
- display: inline-block;
- width: 0;
- height: 0;
- margin-right: $caret-width * .85;
- vertical-align: $caret-width * .85;
- content: "";
- @include caret-left;
- }
- }
-
- &:empty::after {
- margin-left: 0;
- }
- }
-}