| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690 |
- /**
- * @license
- * Copyright Google LLC All Rights Reserved.
- *
- * Use of this source code is governed by an MIT-style license that can be
- * found in the LICENSE file at https://github.com/material-components/material-components-web/blob/master/LICENSE
- */
- @-webkit-keyframes mdc-linear-progress-primary-indeterminate-translate {
- 0% {
- -webkit-transform: translateX(0);
- transform: translateX(0);
- }
- 20% {
- -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
- animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
- -webkit-transform: translateX(0);
- transform: translateX(0);
- }
- 59.15% {
- -webkit-animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
- animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
- /* @noflip */
- /*rtl:ignore*/
- -webkit-transform: translateX(83.67142%);
- transform: translateX(83.67142%);
- /* @alternate */
- /* @noflip */
- /*rtl:ignore*/
- -webkit-transform: translateX(var(--mdc-linear-progress-primary-half, 83.67142%));
- transform: translateX(var(--mdc-linear-progress-primary-half, 83.67142%));
- }
- 100% {
- /* @noflip */
- /*rtl:ignore*/
- -webkit-transform: translateX(200.611057%);
- transform: translateX(200.611057%);
- /* @alternate */
- /* @noflip */
- /*rtl:ignore*/
- -webkit-transform: translateX(var(--mdc-linear-progress-primary-full, 200.611057%));
- transform: translateX(var(--mdc-linear-progress-primary-full, 200.611057%));
- }
- }
- @keyframes mdc-linear-progress-primary-indeterminate-translate {
- 0% {
- -webkit-transform: translateX(0);
- transform: translateX(0);
- }
- 20% {
- -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
- animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
- -webkit-transform: translateX(0);
- transform: translateX(0);
- }
- 59.15% {
- -webkit-animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
- animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
- /* @noflip */
- /*rtl:ignore*/
- -webkit-transform: translateX(83.67142%);
- transform: translateX(83.67142%);
- /* @alternate */
- /* @noflip */
- /*rtl:ignore*/
- -webkit-transform: translateX(var(--mdc-linear-progress-primary-half, 83.67142%));
- transform: translateX(var(--mdc-linear-progress-primary-half, 83.67142%));
- }
- 100% {
- /* @noflip */
- /*rtl:ignore*/
- -webkit-transform: translateX(200.611057%);
- transform: translateX(200.611057%);
- /* @alternate */
- /* @noflip */
- /*rtl:ignore*/
- -webkit-transform: translateX(var(--mdc-linear-progress-primary-full, 200.611057%));
- transform: translateX(var(--mdc-linear-progress-primary-full, 200.611057%));
- }
- }
- @-webkit-keyframes mdc-linear-progress-primary-indeterminate-scale {
- 0% {
- -webkit-transform: scaleX(0.08);
- transform: scaleX(0.08);
- }
- 36.65% {
- -webkit-animation-timing-function: cubic-bezier(0.334731, 0.12482, 0.785844, 1);
- animation-timing-function: cubic-bezier(0.334731, 0.12482, 0.785844, 1);
- -webkit-transform: scaleX(0.08);
- transform: scaleX(0.08);
- }
- 69.15% {
- -webkit-animation-timing-function: cubic-bezier(0.06, 0.11, 0.6, 1);
- animation-timing-function: cubic-bezier(0.06, 0.11, 0.6, 1);
- -webkit-transform: scaleX(0.661479);
- transform: scaleX(0.661479);
- }
- 100% {
- -webkit-transform: scaleX(0.08);
- transform: scaleX(0.08);
- }
- }
- @keyframes mdc-linear-progress-primary-indeterminate-scale {
- 0% {
- -webkit-transform: scaleX(0.08);
- transform: scaleX(0.08);
- }
- 36.65% {
- -webkit-animation-timing-function: cubic-bezier(0.334731, 0.12482, 0.785844, 1);
- animation-timing-function: cubic-bezier(0.334731, 0.12482, 0.785844, 1);
- -webkit-transform: scaleX(0.08);
- transform: scaleX(0.08);
- }
- 69.15% {
- -webkit-animation-timing-function: cubic-bezier(0.06, 0.11, 0.6, 1);
- animation-timing-function: cubic-bezier(0.06, 0.11, 0.6, 1);
- -webkit-transform: scaleX(0.661479);
- transform: scaleX(0.661479);
- }
- 100% {
- -webkit-transform: scaleX(0.08);
- transform: scaleX(0.08);
- }
- }
- @-webkit-keyframes mdc-linear-progress-secondary-indeterminate-translate {
- 0% {
- -webkit-animation-timing-function: cubic-bezier(0.15, 0, 0.515058, 0.409685);
- animation-timing-function: cubic-bezier(0.15, 0, 0.515058, 0.409685);
- -webkit-transform: translateX(0);
- transform: translateX(0);
- }
- 25% {
- -webkit-animation-timing-function: cubic-bezier(0.31033, 0.284058, 0.8, 0.733712);
- animation-timing-function: cubic-bezier(0.31033, 0.284058, 0.8, 0.733712);
- /* @noflip */
- /*rtl:ignore*/
- -webkit-transform: translateX(37.651913%);
- transform: translateX(37.651913%);
- /* @alternate */
- /* @noflip */
- /*rtl:ignore*/
- -webkit-transform: translateX(var(--mdc-linear-progress-secondary-quarter, 37.651913%));
- transform: translateX(var(--mdc-linear-progress-secondary-quarter, 37.651913%));
- }
- 48.35% {
- -webkit-animation-timing-function: cubic-bezier(0.4, 0.627035, 0.6, 0.902026);
- animation-timing-function: cubic-bezier(0.4, 0.627035, 0.6, 0.902026);
- /* @noflip */
- /*rtl:ignore*/
- -webkit-transform: translateX(84.386165%);
- transform: translateX(84.386165%);
- /* @alternate */
- /* @noflip */
- /*rtl:ignore*/
- -webkit-transform: translateX(var(--mdc-linear-progress-secondary-half, 84.386165%));
- transform: translateX(var(--mdc-linear-progress-secondary-half, 84.386165%));
- }
- 100% {
- /* @noflip */
- /*rtl:ignore*/
- -webkit-transform: translateX(160.277782%);
- transform: translateX(160.277782%);
- /* @alternate */
- /* @noflip */
- /*rtl:ignore*/
- -webkit-transform: translateX(var(--mdc-linear-progress-secondary-full, 160.277782%));
- transform: translateX(var(--mdc-linear-progress-secondary-full, 160.277782%));
- }
- }
- @keyframes mdc-linear-progress-secondary-indeterminate-translate {
- 0% {
- -webkit-animation-timing-function: cubic-bezier(0.15, 0, 0.515058, 0.409685);
- animation-timing-function: cubic-bezier(0.15, 0, 0.515058, 0.409685);
- -webkit-transform: translateX(0);
- transform: translateX(0);
- }
- 25% {
- -webkit-animation-timing-function: cubic-bezier(0.31033, 0.284058, 0.8, 0.733712);
- animation-timing-function: cubic-bezier(0.31033, 0.284058, 0.8, 0.733712);
- /* @noflip */
- /*rtl:ignore*/
- -webkit-transform: translateX(37.651913%);
- transform: translateX(37.651913%);
- /* @alternate */
- /* @noflip */
- /*rtl:ignore*/
- -webkit-transform: translateX(var(--mdc-linear-progress-secondary-quarter, 37.651913%));
- transform: translateX(var(--mdc-linear-progress-secondary-quarter, 37.651913%));
- }
- 48.35% {
- -webkit-animation-timing-function: cubic-bezier(0.4, 0.627035, 0.6, 0.902026);
- animation-timing-function: cubic-bezier(0.4, 0.627035, 0.6, 0.902026);
- /* @noflip */
- /*rtl:ignore*/
- -webkit-transform: translateX(84.386165%);
- transform: translateX(84.386165%);
- /* @alternate */
- /* @noflip */
- /*rtl:ignore*/
- -webkit-transform: translateX(var(--mdc-linear-progress-secondary-half, 84.386165%));
- transform: translateX(var(--mdc-linear-progress-secondary-half, 84.386165%));
- }
- 100% {
- /* @noflip */
- /*rtl:ignore*/
- -webkit-transform: translateX(160.277782%);
- transform: translateX(160.277782%);
- /* @alternate */
- /* @noflip */
- /*rtl:ignore*/
- -webkit-transform: translateX(var(--mdc-linear-progress-secondary-full, 160.277782%));
- transform: translateX(var(--mdc-linear-progress-secondary-full, 160.277782%));
- }
- }
- @-webkit-keyframes mdc-linear-progress-secondary-indeterminate-scale {
- 0% {
- -webkit-animation-timing-function: cubic-bezier(0.205028, 0.057051, 0.57661, 0.453971);
- animation-timing-function: cubic-bezier(0.205028, 0.057051, 0.57661, 0.453971);
- -webkit-transform: scaleX(0.08);
- transform: scaleX(0.08);
- }
- 19.15% {
- -webkit-animation-timing-function: cubic-bezier(0.152313, 0.196432, 0.648374, 1.004315);
- animation-timing-function: cubic-bezier(0.152313, 0.196432, 0.648374, 1.004315);
- -webkit-transform: scaleX(0.457104);
- transform: scaleX(0.457104);
- }
- 44.15% {
- -webkit-animation-timing-function: cubic-bezier(0.257759, -0.003163, 0.211762, 1.38179);
- animation-timing-function: cubic-bezier(0.257759, -0.003163, 0.211762, 1.38179);
- -webkit-transform: scaleX(0.72796);
- transform: scaleX(0.72796);
- }
- 100% {
- -webkit-transform: scaleX(0.08);
- transform: scaleX(0.08);
- }
- }
- @keyframes mdc-linear-progress-secondary-indeterminate-scale {
- 0% {
- -webkit-animation-timing-function: cubic-bezier(0.205028, 0.057051, 0.57661, 0.453971);
- animation-timing-function: cubic-bezier(0.205028, 0.057051, 0.57661, 0.453971);
- -webkit-transform: scaleX(0.08);
- transform: scaleX(0.08);
- }
- 19.15% {
- -webkit-animation-timing-function: cubic-bezier(0.152313, 0.196432, 0.648374, 1.004315);
- animation-timing-function: cubic-bezier(0.152313, 0.196432, 0.648374, 1.004315);
- -webkit-transform: scaleX(0.457104);
- transform: scaleX(0.457104);
- }
- 44.15% {
- -webkit-animation-timing-function: cubic-bezier(0.257759, -0.003163, 0.211762, 1.38179);
- animation-timing-function: cubic-bezier(0.257759, -0.003163, 0.211762, 1.38179);
- -webkit-transform: scaleX(0.72796);
- transform: scaleX(0.72796);
- }
- 100% {
- -webkit-transform: scaleX(0.08);
- transform: scaleX(0.08);
- }
- }
- @-webkit-keyframes mdc-linear-progress-primary-indeterminate-translate-reverse {
- 0% {
- -webkit-transform: translateX(0);
- transform: translateX(0);
- }
- 20% {
- -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
- animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
- -webkit-transform: translateX(0);
- transform: translateX(0);
- }
- 59.15% {
- -webkit-animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
- animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
- /* @noflip */
- /*rtl:ignore*/
- -webkit-transform: translateX(-83.67142%);
- transform: translateX(-83.67142%);
- /* @alternate */
- /* @noflip */
- /*rtl:ignore*/
- -webkit-transform: translateX(var(--mdc-linear-progress-primary-half-neg, -83.67142%));
- transform: translateX(var(--mdc-linear-progress-primary-half-neg, -83.67142%));
- }
- 100% {
- /* @noflip */
- /*rtl:ignore*/
- -webkit-transform: translateX(-200.611057%);
- transform: translateX(-200.611057%);
- /* @alternate */
- /* @noflip */
- /*rtl:ignore*/
- -webkit-transform: translateX(var(--mdc-linear-progress-primary-full-neg, -200.611057%));
- transform: translateX(var(--mdc-linear-progress-primary-full-neg, -200.611057%));
- }
- }
- @keyframes mdc-linear-progress-primary-indeterminate-translate-reverse {
- 0% {
- -webkit-transform: translateX(0);
- transform: translateX(0);
- }
- 20% {
- -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
- animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
- -webkit-transform: translateX(0);
- transform: translateX(0);
- }
- 59.15% {
- -webkit-animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
- animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
- /* @noflip */
- /*rtl:ignore*/
- -webkit-transform: translateX(-83.67142%);
- transform: translateX(-83.67142%);
- /* @alternate */
- /* @noflip */
- /*rtl:ignore*/
- -webkit-transform: translateX(var(--mdc-linear-progress-primary-half-neg, -83.67142%));
- transform: translateX(var(--mdc-linear-progress-primary-half-neg, -83.67142%));
- }
- 100% {
- /* @noflip */
- /*rtl:ignore*/
- -webkit-transform: translateX(-200.611057%);
- transform: translateX(-200.611057%);
- /* @alternate */
- /* @noflip */
- /*rtl:ignore*/
- -webkit-transform: translateX(var(--mdc-linear-progress-primary-full-neg, -200.611057%));
- transform: translateX(var(--mdc-linear-progress-primary-full-neg, -200.611057%));
- }
- }
- @-webkit-keyframes mdc-linear-progress-secondary-indeterminate-translate-reverse {
- 0% {
- -webkit-animation-timing-function: cubic-bezier(0.15, 0, 0.515058, 0.409685);
- animation-timing-function: cubic-bezier(0.15, 0, 0.515058, 0.409685);
- -webkit-transform: translateX(0);
- transform: translateX(0);
- }
- 25% {
- -webkit-animation-timing-function: cubic-bezier(0.31033, 0.284058, 0.8, 0.733712);
- animation-timing-function: cubic-bezier(0.31033, 0.284058, 0.8, 0.733712);
- /* @noflip */
- /*rtl:ignore*/
- -webkit-transform: translateX(-37.651913%);
- transform: translateX(-37.651913%);
- /* @alternate */
- /* @noflip */
- /*rtl:ignore*/
- -webkit-transform: translateX(var(--mdc-linear-progress-secondary-quarter-neg, -37.651913%));
- transform: translateX(var(--mdc-linear-progress-secondary-quarter-neg, -37.651913%));
- }
- 48.35% {
- -webkit-animation-timing-function: cubic-bezier(0.4, 0.627035, 0.6, 0.902026);
- animation-timing-function: cubic-bezier(0.4, 0.627035, 0.6, 0.902026);
- /* @noflip */
- /*rtl:ignore*/
- -webkit-transform: translateX(-84.386165%);
- transform: translateX(-84.386165%);
- /* @alternate */
- /* @noflip */
- /*rtl:ignore*/
- -webkit-transform: translateX(var(--mdc-linear-progress-secondary-half-neg, -84.386165%));
- transform: translateX(var(--mdc-linear-progress-secondary-half-neg, -84.386165%));
- }
- 100% {
- /* @noflip */
- /*rtl:ignore*/
- -webkit-transform: translateX(-160.277782%);
- transform: translateX(-160.277782%);
- /* @alternate */
- /* @noflip */
- /*rtl:ignore*/
- -webkit-transform: translateX(var(--mdc-linear-progress-secondary-full-neg, -160.277782%));
- transform: translateX(var(--mdc-linear-progress-secondary-full-neg, -160.277782%));
- }
- }
- @keyframes mdc-linear-progress-secondary-indeterminate-translate-reverse {
- 0% {
- -webkit-animation-timing-function: cubic-bezier(0.15, 0, 0.515058, 0.409685);
- animation-timing-function: cubic-bezier(0.15, 0, 0.515058, 0.409685);
- -webkit-transform: translateX(0);
- transform: translateX(0);
- }
- 25% {
- -webkit-animation-timing-function: cubic-bezier(0.31033, 0.284058, 0.8, 0.733712);
- animation-timing-function: cubic-bezier(0.31033, 0.284058, 0.8, 0.733712);
- /* @noflip */
- /*rtl:ignore*/
- -webkit-transform: translateX(-37.651913%);
- transform: translateX(-37.651913%);
- /* @alternate */
- /* @noflip */
- /*rtl:ignore*/
- -webkit-transform: translateX(var(--mdc-linear-progress-secondary-quarter-neg, -37.651913%));
- transform: translateX(var(--mdc-linear-progress-secondary-quarter-neg, -37.651913%));
- }
- 48.35% {
- -webkit-animation-timing-function: cubic-bezier(0.4, 0.627035, 0.6, 0.902026);
- animation-timing-function: cubic-bezier(0.4, 0.627035, 0.6, 0.902026);
- /* @noflip */
- /*rtl:ignore*/
- -webkit-transform: translateX(-84.386165%);
- transform: translateX(-84.386165%);
- /* @alternate */
- /* @noflip */
- /*rtl:ignore*/
- -webkit-transform: translateX(var(--mdc-linear-progress-secondary-half-neg, -84.386165%));
- transform: translateX(var(--mdc-linear-progress-secondary-half-neg, -84.386165%));
- }
- 100% {
- /* @noflip */
- /*rtl:ignore*/
- -webkit-transform: translateX(-160.277782%);
- transform: translateX(-160.277782%);
- /* @alternate */
- /* @noflip */
- /*rtl:ignore*/
- -webkit-transform: translateX(var(--mdc-linear-progress-secondary-full-neg, -160.277782%));
- transform: translateX(var(--mdc-linear-progress-secondary-full-neg, -160.277782%));
- }
- }
- @-webkit-keyframes mdc-linear-progress-buffering-reverse {
- from {
- /* @noflip */
- /*rtl:ignore*/
- -webkit-transform: translateX(-10px);
- transform: translateX(-10px);
- }
- }
- @keyframes mdc-linear-progress-buffering-reverse {
- from {
- /* @noflip */
- /*rtl:ignore*/
- -webkit-transform: translateX(-10px);
- transform: translateX(-10px);
- }
- }
- .mdc-linear-progress {
- position: relative;
- width: 100%;
- -webkit-transform: translateZ(0);
- transform: translateZ(0);
- outline: 1px solid transparent;
- overflow-x: hidden;
- transition: opacity 250ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
- }
- @media screen and (forced-colors: active) {
- .mdc-linear-progress {
- outline-color: CanvasText;
- }
- }
- .mdc-linear-progress__bar {
- position: absolute;
- top: 0;
- bottom: 0;
- margin: auto 0;
- width: 100%;
- -webkit-animation: none;
- animation: none;
- -webkit-transform-origin: top left;
- transform-origin: top left;
- transition: -webkit-transform 250ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
- transition: transform 250ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
- transition: transform 250ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 250ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
- }
- .mdc-linear-progress__bar-inner {
- display: inline-block;
- position: absolute;
- width: 100%;
- -webkit-animation: none;
- animation: none;
- border-top-style: solid;
- }
- .mdc-linear-progress__buffer {
- display: flex;
- position: absolute;
- top: 0;
- bottom: 0;
- margin: auto 0;
- width: 100%;
- overflow: hidden;
- }
- .mdc-linear-progress__buffer-dots {
- background-repeat: repeat-x;
- flex: auto;
- /* @noflip */
- /*rtl:ignore*/
- -webkit-transform: rotate(180deg);
- transform: rotate(180deg);
- -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='xMinYMin slice'%3E%3Ccircle cx='1' cy='1' r='1'/%3E%3C/svg%3E");
- mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='xMinYMin slice'%3E%3Ccircle cx='1' cy='1' r='1'/%3E%3C/svg%3E");
- -webkit-animation: mdc-linear-progress-buffering 250ms infinite linear;
- animation: mdc-linear-progress-buffering 250ms infinite linear;
- }
- .mdc-linear-progress__buffer-bar {
- flex: 0 1 100%;
- transition: flex-basis 250ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
- }
- .mdc-linear-progress__primary-bar {
- -webkit-transform: scaleX(0);
- transform: scaleX(0);
- }
- .mdc-linear-progress__secondary-bar {
- display: none;
- }
- .mdc-linear-progress--indeterminate .mdc-linear-progress__bar {
- transition: none;
- }
- .mdc-linear-progress--indeterminate .mdc-linear-progress__primary-bar {
- left: -145.166611%;
- }
- .mdc-linear-progress--indeterminate .mdc-linear-progress__secondary-bar {
- left: -54.888891%;
- display: block;
- }
- .mdc-linear-progress--indeterminate.mdc-linear-progress--animation-ready .mdc-linear-progress__primary-bar {
- -webkit-animation: mdc-linear-progress-primary-indeterminate-translate 2s infinite linear;
- animation: mdc-linear-progress-primary-indeterminate-translate 2s infinite linear;
- }
- .mdc-linear-progress--indeterminate.mdc-linear-progress--animation-ready .mdc-linear-progress__primary-bar > .mdc-linear-progress__bar-inner {
- -webkit-animation: mdc-linear-progress-primary-indeterminate-scale 2s infinite linear;
- animation: mdc-linear-progress-primary-indeterminate-scale 2s infinite linear;
- }
- .mdc-linear-progress--indeterminate.mdc-linear-progress--animation-ready .mdc-linear-progress__secondary-bar {
- -webkit-animation: mdc-linear-progress-secondary-indeterminate-translate 2s infinite linear;
- animation: mdc-linear-progress-secondary-indeterminate-translate 2s infinite linear;
- }
- .mdc-linear-progress--indeterminate.mdc-linear-progress--animation-ready .mdc-linear-progress__secondary-bar > .mdc-linear-progress__bar-inner {
- -webkit-animation: mdc-linear-progress-secondary-indeterminate-scale 2s infinite linear;
- animation: mdc-linear-progress-secondary-indeterminate-scale 2s infinite linear;
- }
- [dir=rtl] .mdc-linear-progress, .mdc-linear-progress[dir=rtl] {
- /*rtl:begin:ignore*/
- /*rtl:end:ignore*/
- }
- [dir=rtl] .mdc-linear-progress:not([dir=ltr]) .mdc-linear-progress__bar, .mdc-linear-progress[dir=rtl]:not([dir=ltr]) .mdc-linear-progress__bar {
- /* @noflip */
- /*rtl:ignore*/
- right: 0;
- /* @noflip */
- /*rtl:ignore*/
- -webkit-transform-origin: center right;
- /* @noflip */
- /*rtl:ignore*/
- transform-origin: center right;
- }
- [dir=rtl] .mdc-linear-progress:not([dir=ltr]).mdc-linear-progress--animation-ready .mdc-linear-progress__primary-bar, .mdc-linear-progress[dir=rtl]:not([dir=ltr]).mdc-linear-progress--animation-ready .mdc-linear-progress__primary-bar {
- -webkit-animation-name: mdc-linear-progress-primary-indeterminate-translate-reverse;
- animation-name: mdc-linear-progress-primary-indeterminate-translate-reverse;
- }
- [dir=rtl] .mdc-linear-progress:not([dir=ltr]).mdc-linear-progress--animation-ready .mdc-linear-progress__secondary-bar, .mdc-linear-progress[dir=rtl]:not([dir=ltr]).mdc-linear-progress--animation-ready .mdc-linear-progress__secondary-bar {
- -webkit-animation-name: mdc-linear-progress-secondary-indeterminate-translate-reverse;
- animation-name: mdc-linear-progress-secondary-indeterminate-translate-reverse;
- }
- [dir=rtl] .mdc-linear-progress:not([dir=ltr]) .mdc-linear-progress__buffer-dots, .mdc-linear-progress[dir=rtl]:not([dir=ltr]) .mdc-linear-progress__buffer-dots {
- -webkit-animation: mdc-linear-progress-buffering-reverse 250ms infinite linear;
- animation: mdc-linear-progress-buffering-reverse 250ms infinite linear;
- /* @noflip */
- /*rtl:ignore*/
- -webkit-transform: rotate(0);
- transform: rotate(0);
- }
- [dir=rtl] .mdc-linear-progress:not([dir=ltr]).mdc-linear-progress--indeterminate .mdc-linear-progress__primary-bar, .mdc-linear-progress[dir=rtl]:not([dir=ltr]).mdc-linear-progress--indeterminate .mdc-linear-progress__primary-bar {
- /* @noflip */
- /*rtl:ignore*/
- right: -145.166611%;
- /* @noflip */
- /*rtl:ignore*/
- left: auto;
- }
- [dir=rtl] .mdc-linear-progress:not([dir=ltr]).mdc-linear-progress--indeterminate .mdc-linear-progress__secondary-bar, .mdc-linear-progress[dir=rtl]:not([dir=ltr]).mdc-linear-progress--indeterminate .mdc-linear-progress__secondary-bar {
- /* @noflip */
- /*rtl:ignore*/
- right: -54.888891%;
- /* @noflip */
- /*rtl:ignore*/
- left: auto;
- }
- .mdc-linear-progress--closed {
- opacity: 0;
- }
- .mdc-linear-progress--closed-animation-off .mdc-linear-progress__buffer-dots {
- -webkit-animation: none;
- animation: none;
- }
- .mdc-linear-progress--closed-animation-off.mdc-linear-progress--indeterminate .mdc-linear-progress__bar,
- .mdc-linear-progress--closed-animation-off.mdc-linear-progress--indeterminate .mdc-linear-progress__bar .mdc-linear-progress__bar-inner {
- -webkit-animation: none;
- animation: none;
- }
- @-webkit-keyframes mdc-linear-progress-buffering {
- from {
- /* @noflip */
- /*rtl:ignore*/
- -webkit-transform: rotate(180deg) translateX(calc(4px * -2.5));
- transform: rotate(180deg) translateX(calc(4px * -2.5));
- /* @alternate */
- -webkit-transform: rotate(180deg) translateX(calc(var(--mdc-linear-progress-track-height, 4px) * -2.5));
- transform: rotate(180deg) translateX(calc(var(--mdc-linear-progress-track-height, 4px) * -2.5));
- }
- }
- @keyframes mdc-linear-progress-buffering {
- from {
- /* @noflip */
- /*rtl:ignore*/
- -webkit-transform: rotate(180deg) translateX(calc(4px * -2.5));
- transform: rotate(180deg) translateX(calc(4px * -2.5));
- /* @alternate */
- -webkit-transform: rotate(180deg) translateX(calc(var(--mdc-linear-progress-track-height, 4px) * -2.5));
- transform: rotate(180deg) translateX(calc(var(--mdc-linear-progress-track-height, 4px) * -2.5));
- }
- }
- .mdc-linear-progress__bar-inner {
- border-color: #6200ee;
- /* @alternate */
- border-color: var(--mdc-linear-progress-active-indicator-color, #6200ee);
- }
- .mdc-linear-progress__buffer-dots {
- background-color: #e6e6e6;
- /* @alternate */
- background-color: var(--mdc-linear-progress-track-color, #e6e6e6);
- }
- @media (forced-colors: active) {
- .mdc-linear-progress__buffer-dots {
- background-color: ButtonBorder;
- }
- }
- @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
- .mdc-linear-progress__buffer-dots {
- background-color: transparent;
- background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='%23e6e6e6'/%3E%3C/svg%3E");
- }
- }
- .mdc-linear-progress__buffer-bar {
- background-color: #e6e6e6;
- /* @alternate */
- background-color: var(--mdc-linear-progress-track-color, #e6e6e6);
- }
- .mdc-linear-progress {
- height: max(4px, 4px);
- /* @alternate */
- height: max(var(--mdc-linear-progress-track-height, 4px), var(--mdc-linear-progress-active-indicator-height, 4px));
- }
- @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
- .mdc-linear-progress {
- height: 4px;
- }
- }
- .mdc-linear-progress__bar {
- height: 4px;
- /* @alternate */
- height: var(--mdc-linear-progress-active-indicator-height, 4px);
- }
- .mdc-linear-progress__bar-inner {
- border-top-width: 4px;
- /* @alternate */
- border-top-width: var(--mdc-linear-progress-active-indicator-height, 4px);
- }
- .mdc-linear-progress__buffer {
- height: 4px;
- /* @alternate */
- height: var(--mdc-linear-progress-track-height, 4px);
- }
- @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
- .mdc-linear-progress__buffer-dots {
- background-size: 10px 4px;
- /* @alternate */
- background-size: 10px var(--mdc-linear-progress-track-height, 4px);
- }
- }
- .mdc-linear-progress__buffer {
- border-radius: 0px;
- /* @alternate */
- border-radius: var(--mdc-linear-progress-track-shape, 0px);
- }
- /*# sourceMappingURL=mdc.linear-progress.css.map*/
|