X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=resources%2Ftools%2Fdash%2Fapp%2Fpal%2Fstatic%2Fsass%2Fbootstrap%2F_progress.scss;fp=resources%2Ftools%2Fdash%2Fapp%2Fpal%2Fstatic%2Fsass%2Fbootstrap%2F_progress.scss;h=0000000000000000000000000000000000000000;hb=d6a60b5043c6f7c3dfc45853feb68d0aca5a4a5f;hp=1bfafb58fa44b26d256089e0c46f4daeb43f99ef;hpb=d2ef7bc01df66f6a27f25d061db064cf4a463267;p=csit.git diff --git a/resources/tools/dash/app/pal/static/sass/bootstrap/_progress.scss b/resources/tools/dash/app/pal/static/sass/bootstrap/_progress.scss deleted file mode 100644 index 1bfafb58fa..0000000000 --- a/resources/tools/dash/app/pal/static/sass/bootstrap/_progress.scss +++ /dev/null @@ -1,59 +0,0 @@ -// Disable animation if transitions are disabled - -// scss-docs-start progress-keyframes -@if $enable-transitions { - @keyframes progress-bar-stripes { - 0% { background-position-x: $progress-height; } - } -} -// scss-docs-end progress-keyframes - -.progress { - // scss-docs-start progress-css-vars - --#{$prefix}progress-height: #{$progress-height}; - @include rfs($progress-font-size, --#{$prefix}progress-font-size); - --#{$prefix}progress-bg: #{$progress-bg}; - --#{$prefix}progress-border-radius: #{$progress-border-radius}; - --#{$prefix}progress-box-shadow: #{$progress-box-shadow}; - --#{$prefix}progress-bar-color: #{$progress-bar-color}; - --#{$prefix}progress-bar-bg: #{$progress-bar-bg}; - --#{$prefix}progress-bar-transition: #{$progress-bar-transition}; - // scss-docs-end progress-css-vars - - display: flex; - height: var(--#{$prefix}progress-height); - overflow: hidden; // force rounded corners by cropping it - @include font-size(var(--#{$prefix}progress-font-size)); - background-color: var(--#{$prefix}progress-bg); - @include border-radius(var(--#{$prefix}progress-border-radius)); - @include box-shadow(var(--#{$prefix}progress-box-shadow)); -} - -.progress-bar { - display: flex; - flex-direction: column; - justify-content: center; - overflow: hidden; - color: var(--#{$prefix}progress-bar-color); - text-align: center; - white-space: nowrap; - background-color: var(--#{$prefix}progress-bar-bg); - @include transition(var(--#{$prefix}progress-bar-transition)); -} - -.progress-bar-striped { - @include gradient-striped(); - background-size: var(--#{$prefix}progress-height) var(--#{$prefix}progress-height); -} - -@if $enable-transitions { - .progress-bar-animated { - animation: $progress-bar-animation-timing progress-bar-stripes; - - @if $enable-reduced-motion { - @media (prefers-reduced-motion: reduce) { - animation: none; - } - } - } -}