| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351 | 
							- @charset "UTF-8";
 
- /* mixins & extensions */
 
- @keyframes in {
 
-   0% {
 
-     opacity: 0;
 
-   }
 
-   100% {
 
-     opacity: 1;
 
-   }
 
- }
 
- @keyframes in-down {
 
-   0% {
 
-     opacity: 0;
 
-     transform: translate3D(0, -5px, 0);
 
-   }
 
-   100% {
 
-     opacity: 1;
 
-     transform: translate3D(0, 0, 0);
 
-   }
 
- }
 
- @keyframes in-up {
 
-   0% {
 
-     opacity: 0;
 
-     transform: translate3D(0, 5px, 0);
 
-   }
 
-   100% {
 
-     opacity: 1;
 
-     transform: translate3D(0, 0, 0);
 
-   }
 
- }
 
- @keyframes in-scale {
 
-   0% {
 
-     opacity: 0;
 
-     transform: scale3D(0.95, 0.95, 1);
 
-   }
 
-   100% {
 
-     opacity: 1;
 
-     transform: scale3D(1, 1, 1);
 
-   }
 
- }
 
- :root {
 
-   --calcite-animation-timing: calc(150ms * var(--calcite-internal-duration-factor));
 
-   --calcite-internal-duration-factor: var(--calcite-duration-factor, 1);
 
-   --calcite-internal-animation-timing-fast: calc(100ms * var(--calcite-internal-duration-factor));
 
-   --calcite-internal-animation-timing-medium: calc(200ms * var(--calcite-internal-duration-factor));
 
-   --calcite-internal-animation-timing-slow: calc(300ms * var(--calcite-internal-duration-factor));
 
- }
 
- .calcite-animate {
 
-   opacity: 0;
 
-   animation-fill-mode: both;
 
-   animation-duration: var(--calcite-animation-timing);
 
- }
 
- .calcite-animate__in {
 
-   animation-name: in;
 
- }
 
- .calcite-animate__in-down {
 
-   animation-name: in-down;
 
- }
 
- .calcite-animate__in-up {
 
-   animation-name: in-up;
 
- }
 
- .calcite-animate__in-scale {
 
-   animation-name: in-scale;
 
- }
 
- /**
 
- * Currently only used in Checkbox.
 
- */
 
- :root {
 
-   --calcite-popper-transition: var(--calcite-animation-timing);
 
- }
 
- :host([hidden]) {
 
-   display: none;
 
- }
 
- /**
 
- * CSS Custom Properties
 
- *
 
- * These properties can be overridden using the component's tag as selector.
 
- *
 
- * @prop --calcite-loader-font-size: when type is determinate, the font-size of the loader percentage
 
- * @prop --calcite-loader-size: the width and height of a non-inline loader
 
- * @prop --calcite-loader-size-inline: the width and height of an inline loader
 
- */
 
- :host{
 
-   position: relative;
 
-   margin-left: auto;
 
-   margin-right: auto;
 
-   display: none;
 
-   align-items: center;
 
-   justify-content: center;
 
-   padding-top: 4rem;
 
-   padding-bottom: 4rem;
 
-   opacity: 1;
 
-   min-height: var(--calcite-loader-size);
 
-   font-size: var(--calcite-loader-font-size);
 
-   stroke: var(--calcite-ui-brand);
 
-   stroke-width: 3;
 
-   fill: none;
 
-   transform: scale(1, 1);
 
-   animation: loader-color-shift 6s alternate-reverse infinite linear;
 
- }
 
- :host([scale=s]) {
 
-   --calcite-loader-font-size: var(--calcite-font-size--2);
 
-   --calcite-loader-size: 2rem;
 
-   --calcite-loader-size-inline: 0.75rem;
 
- }
 
- :host([scale=m]) {
 
-   --calcite-loader-font-size: var(--calcite-font-size-0);
 
-   --calcite-loader-size: 4rem;
 
-   --calcite-loader-size-inline: 1rem;
 
- }
 
- :host([scale=l]) {
 
-   --calcite-loader-font-size: var(--calcite-font-size-2);
 
-   --calcite-loader-size: 6rem;
 
-   --calcite-loader-size-inline: 1.5rem;
 
- }
 
- :host([no-padding]){
 
-   padding-top: 0px;
 
-   padding-bottom: 0px;
 
- }
 
- :host{
 
-   display: none;
 
- }
 
- :host([active]){
 
-   display: flex;
 
- }
 
- .loader__text{
 
-   display: block;
 
-   text-align: center;
 
-   font-size: var(--calcite-font-size--2);
 
-   line-height: 1rem;
 
-   color: var(--calcite-ui-text-1);
 
-   margin-top: calc(var(--calcite-loader-size) + 1.5rem);
 
- }
 
- .loader__percentage{
 
-   position: absolute;
 
-   display: block;
 
-   text-align: center;
 
-   color: var(--calcite-ui-text-1);
 
-   font-size: var(--calcite-loader-font-size);
 
-   width: var(--calcite-loader-size);
 
-   left: 50%;
 
-   margin-left: calc(var(--calcite-loader-size) / 2 * -1);
 
-   line-height: 0.25;
 
-   transform: scale(1, 1);
 
- }
 
- .loader__svgs{
 
-   position: absolute;
 
-   overflow: visible;
 
-   opacity: 1;
 
-   width: var(--calcite-loader-size);
 
-   height: var(--calcite-loader-size);
 
-   left: 50%;
 
-   margin-left: calc(var(--calcite-loader-size) / 2 * -1);
 
-   transform: scale(1, 1);
 
- }
 
- .loader__svg{
 
-   position: absolute;
 
-   top: 0px;
 
-   left: 0px;
 
-   transform-origin: center;
 
-   overflow: visible;
 
-   width: var(--calcite-loader-size);
 
-   height: var(--calcite-loader-size);
 
-   animation-iteration-count: infinite;
 
-   animation-timing-function: linear;
 
-   animation-name: loader-clockwise;
 
- }
 
- @supports (display: grid) {
 
-   .loader__svg--1 {
 
-     animation-name: loader-offset-1;
 
-   }
 
-   .loader__svg--2 {
 
-     animation-name: loader-offset-2;
 
-   }
 
-   .loader__svg--3 {
 
-     animation-name: loader-offset-3;
 
-   }
 
- }
 
- :host([type=determinate]){
 
-   animation: none;
 
-   stroke: var(--calcite-ui-border-3);
 
- }
 
- :host([type=determinate]) .loader__svg--3{
 
-   animation: none;
 
-   stroke: var(--calcite-ui-brand);
 
-   stroke-dasharray: 150.79632;
 
-   transform: rotate(-90deg);
 
-   transition: all var(--calcite-internal-animation-timing-fast) linear;
 
- }
 
- :host([inline]){
 
-   position: relative;
 
-   margin: 0px;
 
-   animation: none;
 
-   stroke: currentColor;
 
-   stroke-width: 2;
 
-   padding-top: 0px;
 
-   padding-bottom: 0px;
 
-   height: var(--calcite-loader-size-inline);
 
-   min-height: var(--calcite-loader-size-inline);
 
-   width: var(--calcite-loader-size-inline);
 
-   margin-inline-end: calc(var(--calcite-loader-size-inline) * 0.5);
 
-   vertical-align: calc(var(--calcite-loader-size-inline) * -1 * 0.2);
 
- }
 
- :host([active][inline]){
 
-   display: inline-block;
 
- }
 
- :host([inline]) .loader__svgs{
 
-   top: 0px;
 
-   left: 0px;
 
-   margin: 0px;
 
-   width: var(--calcite-loader-size-inline);
 
-   height: var(--calcite-loader-size-inline);
 
- }
 
- :host([inline]) .loader__svg {
 
-   width: var(--calcite-loader-size-inline);
 
-   height: var(--calcite-loader-size-inline);
 
- }
 
- :host([complete]){
 
-   opacity: 0;
 
-   transform: scale(0.75, 0.75);
 
-   transform-origin: center;
 
-   transition: opacity var(--calcite-internal-animation-timing-medium) linear 1000ms, transform var(--calcite-internal-animation-timing-medium) linear 1000ms;
 
- }
 
- :host([complete]) .loader__svgs{
 
-   opacity: 0;
 
-   transform: scale(0.75, 0.75);
 
-   transform-origin: center;
 
-   transition: opacity calc(180ms * var(--calcite-internal-duration-factor)) linear 800ms, transform calc(180ms * var(--calcite-internal-duration-factor)) linear 800ms;
 
- }
 
- :host([complete]) .loader__percentage {
 
-   color: var(--calcite-ui-brand);
 
-   transform: scale(1.05, 1.05);
 
-   transform-origin: center;
 
-   transition: color var(--calcite-internal-animation-timing-medium) linear, transform var(--calcite-internal-animation-timing-medium) linear;
 
- }
 
- /**
 
-   Segment variables
 
-   - i         index (1-3)
 
-   - size      length of the segment (0 - 100)
 
-   - growth    how much the segment grows during the animation
 
-               (size + growth should not exceed 100)
 
-   - duration  how long the segment takes to rotate 360° (seconds)
 
- */
 
- .loader__svg--1 {
 
-   stroke-dasharray: 27.9252444444% 139.6262222222%;
 
-   animation-duration: 0.72s;
 
- }
 
- @keyframes loader-offset-1 {
 
-   0% {
 
-     stroke-dasharray: 27.9252444444% 251.3272%;
 
-     stroke-dashoffset: 0;
 
-   }
 
-   50% {
 
-     stroke-dasharray: 139.6262222222% 139.6262222222%;
 
-     stroke-dashoffset: -83.7757333333%;
 
-   }
 
-   100% {
 
-     stroke-dasharray: 27.9252444444% 251.3272%;
 
-     stroke-dashoffset: -279.2524444444%;
 
-   }
 
- }
 
- .loader__svg--2 {
 
-   stroke-dasharray: 55.8504888889% 139.6262222222%;
 
-   animation-duration: 0.96s;
 
- }
 
- @keyframes loader-offset-2 {
 
-   0% {
 
-     stroke-dasharray: 55.8504888889% 223.4019555556%;
 
-     stroke-dashoffset: 0;
 
-   }
 
-   50% {
 
-     stroke-dasharray: 139.6262222222% 139.6262222222%;
 
-     stroke-dashoffset: -97.7383555556%;
 
-   }
 
-   100% {
 
-     stroke-dasharray: 55.8504888889% 223.4019555556%;
 
-     stroke-dashoffset: -279.2524444444%;
 
-   }
 
- }
 
- .loader__svg--3 {
 
-   stroke-dasharray: 13.9626222222% 139.6262222222%;
 
-   animation-duration: 1.16s;
 
- }
 
- @keyframes loader-offset-3 {
 
-   0% {
 
-     stroke-dasharray: 13.9626222222% 265.2898222222%;
 
-     stroke-dashoffset: 0;
 
-   }
 
-   50% {
 
-     stroke-dasharray: 139.6262222222% 139.6262222222%;
 
-     stroke-dashoffset: -76.7944222222%;
 
-   }
 
-   100% {
 
-     stroke-dasharray: 13.9626222222% 265.2898222222%;
 
-     stroke-dashoffset: -279.2524444444%;
 
-   }
 
- }
 
- @keyframes loader-color-shift {
 
-   0% {
 
-     stroke: var(--calcite-ui-brand);
 
-   }
 
-   33% {
 
-     stroke: var(--calcite-ui-brand-press);
 
-   }
 
-   66% {
 
-     stroke: var(--calcite-ui-brand-hover);
 
-   }
 
-   100% {
 
-     stroke: var(--calcite-ui-brand);
 
-   }
 
- }
 
- @keyframes loader-clockwise {
 
-   0% {
 
-     transform: rotate(0deg);
 
-   }
 
-   100% {
 
-     transform: rotate(360deg);
 
-   }
 
- }
 
 
  |