| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189 | 
							- /* 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;
 
- }
 
- :host {
 
-   display: block;
 
-   position: absolute;
 
-   z-index: 999;
 
-   transform: scale(0);
 
- }
 
- .calcite-popper-anim {
 
-   position: relative;
 
-   z-index: 1;
 
-   transition: var(--calcite-popper-transition);
 
-   visibility: hidden;
 
-   transition-property: transform, visibility, opacity;
 
-   opacity: 0;
 
-   box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.16);
 
-   border-radius: 0.25rem;
 
- }
 
- :host([data-popper-placement^=bottom]) .calcite-popper-anim {
 
-   transform: translateY(-5px);
 
- }
 
- :host([data-popper-placement^=top]) .calcite-popper-anim {
 
-   transform: translateY(5px);
 
- }
 
- :host([data-popper-placement^=left]) .calcite-popper-anim {
 
-   transform: translateX(5px);
 
- }
 
- :host([data-popper-placement^=right]) .calcite-popper-anim {
 
-   transform: translateX(-5px);
 
- }
 
- :host([data-popper-placement]) .calcite-popper-anim--active {
 
-   opacity: 1;
 
-   visibility: visible;
 
-   transform: translate(0);
 
- }
 
- :host([data-popper-placement][data-popper-reference-hidden]) {
 
-   pointer-events: none;
 
-   opacity: 0;
 
- }
 
- .arrow,
 
- .arrow::before {
 
-   position: absolute;
 
-   width: 8px;
 
-   height: 8px;
 
-   z-index: -1;
 
- }
 
- .arrow::before {
 
-   content: "";
 
-   --tw-shadow: 0 4px 8px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
 
-   --tw-shadow-colored: 0 4px 8px -1px var(--tw-shadow-color), 0 2px 4px -1px var(--tw-shadow-color);
 
-   box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
 
-   transform: rotate(45deg);
 
-   background: var(--calcite-ui-foreground-1);
 
- }
 
- :host([data-popper-placement^=top]) .arrow {
 
-   bottom: -4px;
 
- }
 
- :host([data-popper-placement^=bottom]) .arrow {
 
-   top: -4px;
 
- }
 
- :host([data-popper-placement^=left]) .arrow {
 
-   right: -4px;
 
- }
 
- :host([data-popper-placement^=right]) .arrow {
 
-   left: -4px;
 
- }
 
- .container {
 
-   position: relative;
 
-   display: flex;
 
-   flex-direction: column;
 
-   justify-content: flex-start;
 
-   overflow: hidden;
 
-   border-radius: 0.25rem;
 
-   background-color: var(--calcite-ui-foreground-1);
 
-   padding-top: 0.75rem;
 
-   padding-bottom: 0.75rem;
 
-   padding-left: 1rem;
 
-   padding-right: 1rem;
 
-   font-size: var(--calcite-font-size--2);
 
-   line-height: 1.375;
 
-   font-weight: var(--calcite-font-weight-medium);
 
-   color: var(--calcite-ui-text-1);
 
-   max-width: 20rem;
 
-   max-height: 20rem;
 
- }
 
- .calcite-popper-anim {
 
-   border-radius: 0.25rem;
 
-   border-width: 1px;
 
-   border-style: solid;
 
-   border-color: var(--calcite-ui-border-3);
 
-   background-color: var(--calcite-ui-foreground-1);
 
- }
 
- .arrow::before {
 
-   outline: 1px solid var(--calcite-ui-border-3);
 
- }
 
 
  |