X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=blobdiff_plain;f=resources%2Ftools%2Fdash%2Fapp%2Fpal%2Fstatic%2Fsass%2Fbootstrap%2Fmixins%2F_caret.scss;fp=resources%2Ftools%2Fdash%2Fapp%2Fpal%2Fstatic%2Fsass%2Fbootstrap%2Fmixins%2F_caret.scss;h=0000000000000000000000000000000000000000;hp=4b0f0360ba21f25b85ea5ec4f7c78e1abd7344e7;hb=d6a60b5043c6f7c3dfc45853feb68d0aca5a4a5f;hpb=d2ef7bc01df66f6a27f25d061db064cf4a463267 diff --git a/resources/tools/dash/app/pal/static/sass/bootstrap/mixins/_caret.scss b/resources/tools/dash/app/pal/static/sass/bootstrap/mixins/_caret.scss deleted file mode 100644 index 4b0f0360ba..0000000000 --- a/resources/tools/dash/app/pal/static/sass/bootstrap/mixins/_caret.scss +++ /dev/null @@ -1,64 +0,0 @@ -// scss-docs-start caret-mixins -@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-end { - border-top: $caret-width solid transparent; - border-right: 0; - border-bottom: $caret-width solid transparent; - border-left: $caret-width solid; -} - -@mixin caret-start { - 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; - margin-left: $caret-spacing; - vertical-align: $caret-vertical-align; - content: ""; - @if $direction == down { - @include caret-down(); - } @else if $direction == up { - @include caret-up(); - } @else if $direction == end { - @include caret-end(); - } - } - - @if $direction == start { - &::after { - display: none; - } - - &::before { - display: inline-block; - margin-right: $caret-spacing; - vertical-align: $caret-vertical-align; - content: ""; - @include caret-start(); - } - } - - &:empty::after { - margin-left: 0; - } - } -} -// scss-docs-end caret-mixins