mirror of
https://github.com/Threnklyn/wg-ui.git
synced 2026-05-28 09:38:27 +02:00
b471f3dff5
* Github actions & clean up to be able to do linting * renamed user * pushing images to github packages * Fixed tags
3919 lines
132 KiB
CSS
3919 lines
132 KiB
CSS
.mdc-fab {
|
|
box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14),
|
|
0px 1px 18px 0px rgba(0, 0, 0, 0.12);
|
|
display: inline-flex;
|
|
position: relative;
|
|
align-items: center;
|
|
justify-content: center;
|
|
box-sizing: border-box;
|
|
width: 56px;
|
|
height: 56px;
|
|
padding: 0;
|
|
border: none;
|
|
fill: currentColor;
|
|
text-decoration: none;
|
|
cursor: pointer;
|
|
user-select: none;
|
|
-moz-appearance: none;
|
|
-webkit-appearance: none;
|
|
overflow: hidden;
|
|
transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), opacity 15ms linear 30ms,
|
|
transform 270ms 0ms cubic-bezier(0, 0, 0.2, 1);
|
|
background-color: #018786;
|
|
color: #fff;
|
|
color: var(--mdc-theme-on-secondary, #fff);
|
|
}
|
|
.mdc-fab:not(.mdc-fab--extended) {
|
|
border-radius: 50%;
|
|
}
|
|
.mdc-fab::-moz-focus-inner {
|
|
padding: 0;
|
|
border: 0;
|
|
}
|
|
.mdc-fab:hover,
|
|
.mdc-fab:focus {
|
|
box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14),
|
|
0px 3px 14px 2px rgba(0, 0, 0, 0.12);
|
|
}
|
|
.mdc-fab:active {
|
|
box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14),
|
|
0px 5px 22px 4px rgba(0, 0, 0, 0.12);
|
|
}
|
|
.mdc-fab:active,
|
|
.mdc-fab:focus {
|
|
outline: none;
|
|
}
|
|
.mdc-fab:hover {
|
|
cursor: pointer;
|
|
}
|
|
.mdc-fab > svg {
|
|
width: 100%;
|
|
}
|
|
@supports not (-ms-ime-align: auto) {
|
|
.mdc-fab {
|
|
background-color: var(--mdc-theme-secondary, #018786);
|
|
}
|
|
}
|
|
.mdc-fab .mdc-fab__icon {
|
|
width: 24px;
|
|
height: 24px;
|
|
font-size: 24px;
|
|
}
|
|
.mdc-fab--mini {
|
|
width: 40px;
|
|
height: 40px;
|
|
}
|
|
.mdc-fab--extended {
|
|
font-family: Roboto, sans-serif;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
-webkit-font-smoothing: antialiased;
|
|
font-size: 0.875rem;
|
|
line-height: 2.25rem;
|
|
font-weight: 500;
|
|
letter-spacing: 0.08929em;
|
|
text-decoration: none;
|
|
text-transform: uppercase;
|
|
border-radius: 24px;
|
|
padding: 0 20px;
|
|
width: auto;
|
|
max-width: 100%;
|
|
height: 48px;
|
|
}
|
|
.mdc-fab--extended .mdc-fab__icon {
|
|
margin-left: -8px;
|
|
margin-right: 12px;
|
|
}
|
|
[dir="rtl"] .mdc-fab--extended .mdc-fab__icon,
|
|
.mdc-fab--extended .mdc-fab__icon[dir="rtl"] {
|
|
margin-left: 12px;
|
|
margin-right: -8px;
|
|
}
|
|
.mdc-fab--extended .mdc-fab__label + .mdc-fab__icon {
|
|
margin-left: 12px;
|
|
margin-right: -8px;
|
|
}
|
|
[dir="rtl"] .mdc-fab--extended .mdc-fab__label + .mdc-fab__icon,
|
|
.mdc-fab--extended .mdc-fab__label + .mdc-fab__icon[dir="rtl"] {
|
|
margin-left: -8px;
|
|
margin-right: 12px;
|
|
}
|
|
.mdc-fab__label {
|
|
justify-content: flex-start;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
}
|
|
.mdc-fab__icon {
|
|
transition: transform 180ms 90ms cubic-bezier(0, 0, 0.2, 1);
|
|
fill: currentColor;
|
|
will-change: transform;
|
|
}
|
|
.mdc-fab .mdc-fab__icon {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.mdc-fab--exited {
|
|
transform: scale(0);
|
|
opacity: 0;
|
|
transition: opacity 15ms linear 150ms, transform 180ms 0ms cubic-bezier(0.4, 0, 1, 1);
|
|
}
|
|
.mdc-fab--exited .mdc-fab__icon {
|
|
transform: scale(0);
|
|
transition: transform 135ms 0ms cubic-bezier(0.4, 0, 1, 1);
|
|
}
|
|
@keyframes mdc-ripple-fg-radius-in {
|
|
from {
|
|
animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
transform: translate(var(--mdc-ripple-fg-translate-start, 0)) scale(1);
|
|
}
|
|
to {
|
|
transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
|
|
}
|
|
}
|
|
@keyframes mdc-ripple-fg-opacity-in {
|
|
from {
|
|
animation-timing-function: linear;
|
|
opacity: 0;
|
|
}
|
|
to {
|
|
opacity: var(--mdc-ripple-fg-opacity, 0);
|
|
}
|
|
}
|
|
@keyframes mdc-ripple-fg-opacity-out {
|
|
from {
|
|
animation-timing-function: linear;
|
|
opacity: var(--mdc-ripple-fg-opacity, 0);
|
|
}
|
|
to {
|
|
opacity: 0;
|
|
}
|
|
}
|
|
.mdc-ripple-surface--test-edge-var-bug {
|
|
--mdc-ripple-surface-test-edge-var: 1px solid #000;
|
|
visibility: hidden;
|
|
}
|
|
.mdc-ripple-surface--test-edge-var-bug::before {
|
|
border: var(--mdc-ripple-surface-test-edge-var);
|
|
}
|
|
.mdc-fab {
|
|
--mdc-ripple-fg-size: 0;
|
|
--mdc-ripple-left: 0;
|
|
--mdc-ripple-top: 0;
|
|
--mdc-ripple-fg-scale: 1;
|
|
--mdc-ripple-fg-translate-end: 0;
|
|
--mdc-ripple-fg-translate-start: 0;
|
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
}
|
|
.mdc-fab::before,
|
|
.mdc-fab::after {
|
|
position: absolute;
|
|
border-radius: 50%;
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
content: "";
|
|
}
|
|
.mdc-fab::before {
|
|
transition: opacity 15ms linear, background-color 15ms linear;
|
|
z-index: 1;
|
|
}
|
|
.mdc-fab.mdc-ripple-upgraded::before {
|
|
transform: scale(var(--mdc-ripple-fg-scale, 1));
|
|
}
|
|
.mdc-fab.mdc-ripple-upgraded::after {
|
|
top: 0;
|
|
left: 0;
|
|
transform: scale(0);
|
|
transform-origin: center center;
|
|
}
|
|
.mdc-fab.mdc-ripple-upgraded--unbounded::after {
|
|
top: var(--mdc-ripple-top, 0);
|
|
left: var(--mdc-ripple-left, 0);
|
|
}
|
|
.mdc-fab.mdc-ripple-upgraded--foreground-activation::after {
|
|
animation: mdc-ripple-fg-radius-in 225ms forwards, mdc-ripple-fg-opacity-in 75ms forwards;
|
|
}
|
|
.mdc-fab.mdc-ripple-upgraded--foreground-deactivation::after {
|
|
animation: mdc-ripple-fg-opacity-out 150ms;
|
|
transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
|
|
}
|
|
.mdc-fab::before,
|
|
.mdc-fab::after {
|
|
top: calc(50% - 100%);
|
|
left: calc(50% - 100%);
|
|
width: 200%;
|
|
height: 200%;
|
|
}
|
|
.mdc-fab.mdc-ripple-upgraded::after {
|
|
width: var(--mdc-ripple-fg-size, 100%);
|
|
height: var(--mdc-ripple-fg-size, 100%);
|
|
}
|
|
.mdc-fab::before,
|
|
.mdc-fab::after {
|
|
background-color: #fff;
|
|
}
|
|
@supports not (-ms-ime-align: auto) {
|
|
.mdc-fab::before,
|
|
.mdc-fab::after {
|
|
background-color: var(--mdc-theme-on-secondary, #fff);
|
|
}
|
|
}
|
|
.mdc-fab:hover::before {
|
|
opacity: 0.08;
|
|
}
|
|
.mdc-fab:not(.mdc-ripple-upgraded):focus::before,
|
|
.mdc-fab.mdc-ripple-upgraded--background-focused::before {
|
|
transition-duration: 75ms;
|
|
opacity: 0.24;
|
|
}
|
|
.mdc-fab:not(.mdc-ripple-upgraded)::after {
|
|
transition: opacity 150ms linear;
|
|
}
|
|
.mdc-fab:not(.mdc-ripple-upgraded):active::after {
|
|
transition-duration: 75ms;
|
|
opacity: 0.24;
|
|
}
|
|
.mdc-fab.mdc-ripple-upgraded {
|
|
--mdc-ripple-fg-opacity: 0.24;
|
|
}
|
|
.mdc-ripple-surface {
|
|
--mdc-ripple-fg-size: 0;
|
|
--mdc-ripple-left: 0;
|
|
--mdc-ripple-top: 0;
|
|
--mdc-ripple-fg-scale: 1;
|
|
--mdc-ripple-fg-translate-end: 0;
|
|
--mdc-ripple-fg-translate-start: 0;
|
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
position: relative;
|
|
outline: none;
|
|
overflow: hidden;
|
|
}
|
|
.mdc-ripple-surface::before,
|
|
.mdc-ripple-surface::after {
|
|
position: absolute;
|
|
border-radius: 50%;
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
content: "";
|
|
}
|
|
.mdc-ripple-surface::before {
|
|
transition: opacity 15ms linear, background-color 15ms linear;
|
|
z-index: 1;
|
|
}
|
|
.mdc-ripple-surface.mdc-ripple-upgraded::before {
|
|
transform: scale(var(--mdc-ripple-fg-scale, 1));
|
|
}
|
|
.mdc-ripple-surface.mdc-ripple-upgraded::after {
|
|
top: 0;
|
|
left: 0;
|
|
transform: scale(0);
|
|
transform-origin: center center;
|
|
}
|
|
.mdc-ripple-surface.mdc-ripple-upgraded--unbounded::after {
|
|
top: var(--mdc-ripple-top, 0);
|
|
left: var(--mdc-ripple-left, 0);
|
|
}
|
|
.mdc-ripple-surface.mdc-ripple-upgraded--foreground-activation::after {
|
|
animation: mdc-ripple-fg-radius-in 225ms forwards, mdc-ripple-fg-opacity-in 75ms forwards;
|
|
}
|
|
.mdc-ripple-surface.mdc-ripple-upgraded--foreground-deactivation::after {
|
|
animation: mdc-ripple-fg-opacity-out 150ms;
|
|
transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
|
|
}
|
|
.mdc-ripple-surface::before,
|
|
.mdc-ripple-surface::after {
|
|
background-color: #000;
|
|
}
|
|
.mdc-ripple-surface:hover::before {
|
|
opacity: 0.04;
|
|
}
|
|
.mdc-ripple-surface:not(.mdc-ripple-upgraded):focus::before,
|
|
.mdc-ripple-surface.mdc-ripple-upgraded--background-focused::before {
|
|
transition-duration: 75ms;
|
|
opacity: 0.12;
|
|
}
|
|
.mdc-ripple-surface:not(.mdc-ripple-upgraded)::after {
|
|
transition: opacity 150ms linear;
|
|
}
|
|
.mdc-ripple-surface:not(.mdc-ripple-upgraded):active::after {
|
|
transition-duration: 75ms;
|
|
opacity: 0.12;
|
|
}
|
|
.mdc-ripple-surface.mdc-ripple-upgraded {
|
|
--mdc-ripple-fg-opacity: 0.12;
|
|
}
|
|
.mdc-ripple-surface::before,
|
|
.mdc-ripple-surface::after {
|
|
top: calc(50% - 100%);
|
|
left: calc(50% - 100%);
|
|
width: 200%;
|
|
height: 200%;
|
|
}
|
|
.mdc-ripple-surface.mdc-ripple-upgraded::after {
|
|
width: var(--mdc-ripple-fg-size, 100%);
|
|
height: var(--mdc-ripple-fg-size, 100%);
|
|
}
|
|
.mdc-ripple-surface[data-mdc-ripple-is-unbounded] {
|
|
overflow: visible;
|
|
}
|
|
.mdc-ripple-surface[data-mdc-ripple-is-unbounded]::before,
|
|
.mdc-ripple-surface[data-mdc-ripple-is-unbounded]::after {
|
|
top: calc(50% - 50%);
|
|
left: calc(50% - 50%);
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
.mdc-ripple-surface[data-mdc-ripple-is-unbounded].mdc-ripple-upgraded::before,
|
|
.mdc-ripple-surface[data-mdc-ripple-is-unbounded].mdc-ripple-upgraded::after {
|
|
top: var(--mdc-ripple-top, calc(50% - 50%));
|
|
left: var(--mdc-ripple-left, calc(50% - 50%));
|
|
width: var(--mdc-ripple-fg-size, 100%);
|
|
height: var(--mdc-ripple-fg-size, 100%);
|
|
}
|
|
.mdc-ripple-surface[data-mdc-ripple-is-unbounded].mdc-ripple-upgraded::after {
|
|
width: var(--mdc-ripple-fg-size, 100%);
|
|
height: var(--mdc-ripple-fg-size, 100%);
|
|
}
|
|
.mdc-ripple-surface--primary::before,
|
|
.mdc-ripple-surface--primary::after {
|
|
background-color: #6200ee;
|
|
}
|
|
@supports not (-ms-ime-align: auto) {
|
|
.mdc-ripple-surface--primary::before,
|
|
.mdc-ripple-surface--primary::after {
|
|
background-color: var(--mdc-theme-primary, #6200ee);
|
|
}
|
|
}
|
|
.mdc-ripple-surface--primary:hover::before {
|
|
opacity: 0.04;
|
|
}
|
|
.mdc-ripple-surface--primary:not(.mdc-ripple-upgraded):focus::before,
|
|
.mdc-ripple-surface--primary.mdc-ripple-upgraded--background-focused::before {
|
|
transition-duration: 75ms;
|
|
opacity: 0.12;
|
|
}
|
|
.mdc-ripple-surface--primary:not(.mdc-ripple-upgraded)::after {
|
|
transition: opacity 150ms linear;
|
|
}
|
|
.mdc-ripple-surface--primary:not(.mdc-ripple-upgraded):active::after {
|
|
transition-duration: 75ms;
|
|
opacity: 0.12;
|
|
}
|
|
.mdc-ripple-surface--primary.mdc-ripple-upgraded {
|
|
--mdc-ripple-fg-opacity: 0.12;
|
|
}
|
|
.mdc-ripple-surface--accent::before,
|
|
.mdc-ripple-surface--accent::after {
|
|
background-color: #018786;
|
|
}
|
|
@supports not (-ms-ime-align: auto) {
|
|
.mdc-ripple-surface--accent::before,
|
|
.mdc-ripple-surface--accent::after {
|
|
background-color: var(--mdc-theme-secondary, #018786);
|
|
}
|
|
}
|
|
.mdc-ripple-surface--accent:hover::before {
|
|
opacity: 0.04;
|
|
}
|
|
.mdc-ripple-surface--accent:not(.mdc-ripple-upgraded):focus::before,
|
|
.mdc-ripple-surface--accent.mdc-ripple-upgraded--background-focused::before {
|
|
transition-duration: 75ms;
|
|
opacity: 0.12;
|
|
}
|
|
.mdc-ripple-surface--accent:not(.mdc-ripple-upgraded)::after {
|
|
transition: opacity 150ms linear;
|
|
}
|
|
.mdc-ripple-surface--accent:not(.mdc-ripple-upgraded):active::after {
|
|
transition-duration: 75ms;
|
|
opacity: 0.12;
|
|
}
|
|
.mdc-ripple-surface--accent.mdc-ripple-upgraded {
|
|
--mdc-ripple-fg-opacity: 0.12;
|
|
}
|
|
.smui-fab--color-primary {
|
|
background-color: #6200ee;
|
|
color: #fff;
|
|
color: var(--mdc-theme-on-primary, #fff);
|
|
}
|
|
@supports not (-ms-ime-align: auto) {
|
|
.smui-fab--color-primary {
|
|
background-color: var(--mdc-theme-primary, #6200ee);
|
|
}
|
|
}
|
|
.smui-fab--color-primary::before,
|
|
.smui-fab--color-primary::after {
|
|
background-color: #fff;
|
|
}
|
|
@supports not (-ms-ime-align: auto) {
|
|
.smui-fab--color-primary::before,
|
|
.smui-fab--color-primary::after {
|
|
background-color: var(--mdc-theme-on-primary, #fff);
|
|
}
|
|
}
|
|
.smui-fab--color-primary:hover::before {
|
|
opacity: 0.08;
|
|
}
|
|
.smui-fab--color-primary:not(.mdc-ripple-upgraded):focus::before,
|
|
.smui-fab--color-primary.mdc-ripple-upgraded--background-focused::before {
|
|
transition-duration: 75ms;
|
|
opacity: 0.24;
|
|
}
|
|
.smui-fab--color-primary:not(.mdc-ripple-upgraded)::after {
|
|
transition: opacity 150ms linear;
|
|
}
|
|
.smui-fab--color-primary:not(.mdc-ripple-upgraded):active::after {
|
|
transition-duration: 75ms;
|
|
opacity: 0.24;
|
|
}
|
|
.smui-fab--color-primary.mdc-ripple-upgraded {
|
|
--mdc-ripple-fg-opacity: 0.24;
|
|
}
|
|
|
|
.mdc-button {
|
|
font-family: Roboto, sans-serif;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
-webkit-font-smoothing: antialiased;
|
|
font-size: 0.875rem;
|
|
line-height: 2.25rem;
|
|
font-weight: 500;
|
|
letter-spacing: 0.08929em;
|
|
text-decoration: none;
|
|
text-transform: uppercase;
|
|
padding: 0 8px 0 8px;
|
|
display: inline-flex;
|
|
position: relative;
|
|
align-items: center;
|
|
justify-content: center;
|
|
box-sizing: border-box;
|
|
min-width: 64px;
|
|
height: 36px;
|
|
border: none;
|
|
outline: none;
|
|
line-height: inherit;
|
|
user-select: none;
|
|
-webkit-appearance: none;
|
|
overflow: hidden;
|
|
vertical-align: middle;
|
|
border-radius: 4px;
|
|
}
|
|
.mdc-button::-moz-focus-inner {
|
|
padding: 0;
|
|
border: 0;
|
|
}
|
|
.mdc-button:active {
|
|
outline: none;
|
|
}
|
|
.mdc-button:hover {
|
|
cursor: pointer;
|
|
}
|
|
.mdc-button:disabled {
|
|
background-color: rgba(0, 0, 0, 0);
|
|
color: rgba(0, 0, 0, 0.37);
|
|
cursor: default;
|
|
pointer-events: none;
|
|
}
|
|
.mdc-button.mdc-button--dense {
|
|
border-radius: 4px;
|
|
}
|
|
.mdc-button:not(:disabled) {
|
|
background-color: rgba(0, 0, 0, 0);
|
|
}
|
|
.mdc-button .mdc-button__icon {
|
|
margin-left: 0;
|
|
margin-right: 8px;
|
|
display: inline-block;
|
|
width: 18px;
|
|
height: 18px;
|
|
font-size: 18px;
|
|
vertical-align: top;
|
|
}
|
|
[dir="rtl"] .mdc-button .mdc-button__icon,
|
|
.mdc-button .mdc-button__icon[dir="rtl"] {
|
|
margin-left: 8px;
|
|
margin-right: 0;
|
|
}
|
|
.mdc-button:not(:disabled) {
|
|
color: #6200ee;
|
|
color: var(--mdc-theme-primary, #6200ee);
|
|
}
|
|
.mdc-button__label + .mdc-button__icon {
|
|
margin-left: 8px;
|
|
margin-right: 0;
|
|
}
|
|
[dir="rtl"] .mdc-button__label + .mdc-button__icon,
|
|
.mdc-button__label + .mdc-button__icon[dir="rtl"] {
|
|
margin-left: 0;
|
|
margin-right: 8px;
|
|
}
|
|
svg.mdc-button__icon {
|
|
fill: currentColor;
|
|
}
|
|
.mdc-button--raised .mdc-button__icon,
|
|
.mdc-button--unelevated .mdc-button__icon,
|
|
.mdc-button--outlined .mdc-button__icon {
|
|
margin-left: -4px;
|
|
margin-right: 8px;
|
|
}
|
|
[dir="rtl"] .mdc-button--raised .mdc-button__icon,
|
|
.mdc-button--raised .mdc-button__icon[dir="rtl"],
|
|
[dir="rtl"] .mdc-button--unelevated .mdc-button__icon,
|
|
.mdc-button--unelevated .mdc-button__icon[dir="rtl"],
|
|
[dir="rtl"] .mdc-button--outlined .mdc-button__icon,
|
|
.mdc-button--outlined .mdc-button__icon[dir="rtl"] {
|
|
margin-left: 8px;
|
|
margin-right: -4px;
|
|
}
|
|
.mdc-button--raised .mdc-button__label + .mdc-button__icon,
|
|
.mdc-button--unelevated .mdc-button__label + .mdc-button__icon,
|
|
.mdc-button--outlined .mdc-button__label + .mdc-button__icon {
|
|
margin-left: 8px;
|
|
margin-right: -4px;
|
|
}
|
|
[dir="rtl"] .mdc-button--raised .mdc-button__label + .mdc-button__icon,
|
|
.mdc-button--raised .mdc-button__label + .mdc-button__icon[dir="rtl"],
|
|
[dir="rtl"] .mdc-button--unelevated .mdc-button__label + .mdc-button__icon,
|
|
.mdc-button--unelevated .mdc-button__label + .mdc-button__icon[dir="rtl"],
|
|
[dir="rtl"] .mdc-button--outlined .mdc-button__label + .mdc-button__icon,
|
|
.mdc-button--outlined .mdc-button__label + .mdc-button__icon[dir="rtl"] {
|
|
margin-left: -4px;
|
|
margin-right: 8px;
|
|
}
|
|
.mdc-button--raised,
|
|
.mdc-button--unelevated {
|
|
padding: 0 16px 0 16px;
|
|
}
|
|
.mdc-button--raised:disabled,
|
|
.mdc-button--unelevated:disabled {
|
|
background-color: rgba(0, 0, 0, 0.12);
|
|
color: rgba(0, 0, 0, 0.37);
|
|
}
|
|
.mdc-button--raised:not(:disabled),
|
|
.mdc-button--unelevated:not(:disabled) {
|
|
background-color: #6200ee;
|
|
}
|
|
@supports not (-ms-ime-align: auto) {
|
|
.mdc-button--raised:not(:disabled),
|
|
.mdc-button--unelevated:not(:disabled) {
|
|
background-color: var(--mdc-theme-primary, #6200ee);
|
|
}
|
|
}
|
|
.mdc-button--raised:not(:disabled),
|
|
.mdc-button--unelevated:not(:disabled) {
|
|
color: #fff;
|
|
color: var(--mdc-theme-on-primary, #fff);
|
|
}
|
|
.mdc-button--raised {
|
|
box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14),
|
|
0px 1px 5px 0px rgba(0, 0, 0, 0.12);
|
|
transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
}
|
|
.mdc-button--raised:hover,
|
|
.mdc-button--raised:focus {
|
|
box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14),
|
|
0px 1px 10px 0px rgba(0, 0, 0, 0.12);
|
|
}
|
|
.mdc-button--raised:active {
|
|
box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14),
|
|
0px 3px 14px 2px rgba(0, 0, 0, 0.12);
|
|
}
|
|
.mdc-button--raised:disabled {
|
|
box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14),
|
|
0px 0px 0px 0px rgba(0, 0, 0, 0.12);
|
|
}
|
|
.mdc-button--outlined {
|
|
border-style: solid;
|
|
padding: 0 15px 0 15px;
|
|
border-width: 1px;
|
|
}
|
|
.mdc-button--outlined:disabled {
|
|
border-color: rgba(0, 0, 0, 0.37);
|
|
}
|
|
.mdc-button--outlined:not(:disabled) {
|
|
border-color: #6200ee;
|
|
border-color: var(--mdc-theme-primary, #6200ee);
|
|
}
|
|
.mdc-button--dense {
|
|
height: 32px;
|
|
font-size: 0.8125rem;
|
|
}
|
|
@keyframes mdc-ripple-fg-radius-in {
|
|
from {
|
|
animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
transform: translate(var(--mdc-ripple-fg-translate-start, 0)) scale(1);
|
|
}
|
|
to {
|
|
transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
|
|
}
|
|
}
|
|
@keyframes mdc-ripple-fg-opacity-in {
|
|
from {
|
|
animation-timing-function: linear;
|
|
opacity: 0;
|
|
}
|
|
to {
|
|
opacity: var(--mdc-ripple-fg-opacity, 0);
|
|
}
|
|
}
|
|
@keyframes mdc-ripple-fg-opacity-out {
|
|
from {
|
|
animation-timing-function: linear;
|
|
opacity: var(--mdc-ripple-fg-opacity, 0);
|
|
}
|
|
to {
|
|
opacity: 0;
|
|
}
|
|
}
|
|
.mdc-ripple-surface--test-edge-var-bug {
|
|
--mdc-ripple-surface-test-edge-var: 1px solid #000;
|
|
visibility: hidden;
|
|
}
|
|
.mdc-ripple-surface--test-edge-var-bug::before {
|
|
border: var(--mdc-ripple-surface-test-edge-var);
|
|
}
|
|
.mdc-button {
|
|
--mdc-ripple-fg-size: 0;
|
|
--mdc-ripple-left: 0;
|
|
--mdc-ripple-top: 0;
|
|
--mdc-ripple-fg-scale: 1;
|
|
--mdc-ripple-fg-translate-end: 0;
|
|
--mdc-ripple-fg-translate-start: 0;
|
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
}
|
|
.mdc-button::before,
|
|
.mdc-button::after {
|
|
position: absolute;
|
|
border-radius: 50%;
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
content: "";
|
|
}
|
|
.mdc-button::before {
|
|
transition: opacity 15ms linear, background-color 15ms linear;
|
|
z-index: 1;
|
|
}
|
|
.mdc-button.mdc-ripple-upgraded::before {
|
|
transform: scale(var(--mdc-ripple-fg-scale, 1));
|
|
}
|
|
.mdc-button.mdc-ripple-upgraded::after {
|
|
top: 0;
|
|
left: 0;
|
|
transform: scale(0);
|
|
transform-origin: center center;
|
|
}
|
|
.mdc-button.mdc-ripple-upgraded--unbounded::after {
|
|
top: var(--mdc-ripple-top, 0);
|
|
left: var(--mdc-ripple-left, 0);
|
|
}
|
|
.mdc-button.mdc-ripple-upgraded--foreground-activation::after {
|
|
animation: mdc-ripple-fg-radius-in 225ms forwards, mdc-ripple-fg-opacity-in 75ms forwards;
|
|
}
|
|
.mdc-button.mdc-ripple-upgraded--foreground-deactivation::after {
|
|
animation: mdc-ripple-fg-opacity-out 150ms;
|
|
transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
|
|
}
|
|
.mdc-button::before,
|
|
.mdc-button::after {
|
|
top: calc(50% - 100%);
|
|
left: calc(50% - 100%);
|
|
width: 200%;
|
|
height: 200%;
|
|
}
|
|
.mdc-button.mdc-ripple-upgraded::after {
|
|
width: var(--mdc-ripple-fg-size, 100%);
|
|
height: var(--mdc-ripple-fg-size, 100%);
|
|
}
|
|
.mdc-button::before,
|
|
.mdc-button::after {
|
|
background-color: #6200ee;
|
|
}
|
|
@supports not (-ms-ime-align: auto) {
|
|
.mdc-button::before,
|
|
.mdc-button::after {
|
|
background-color: var(--mdc-theme-primary, #6200ee);
|
|
}
|
|
}
|
|
.mdc-button:hover::before {
|
|
opacity: 0.04;
|
|
}
|
|
.mdc-button:not(.mdc-ripple-upgraded):focus::before,
|
|
.mdc-button.mdc-ripple-upgraded--background-focused::before {
|
|
transition-duration: 75ms;
|
|
opacity: 0.12;
|
|
}
|
|
.mdc-button:not(.mdc-ripple-upgraded)::after {
|
|
transition: opacity 150ms linear;
|
|
}
|
|
.mdc-button:not(.mdc-ripple-upgraded):active::after {
|
|
transition-duration: 75ms;
|
|
opacity: 0.12;
|
|
}
|
|
.mdc-button.mdc-ripple-upgraded {
|
|
--mdc-ripple-fg-opacity: 0.12;
|
|
}
|
|
.mdc-button--raised::before,
|
|
.mdc-button--raised::after,
|
|
.mdc-button--unelevated::before,
|
|
.mdc-button--unelevated::after {
|
|
background-color: #fff;
|
|
}
|
|
@supports not (-ms-ime-align: auto) {
|
|
.mdc-button--raised::before,
|
|
.mdc-button--raised::after,
|
|
.mdc-button--unelevated::before,
|
|
.mdc-button--unelevated::after {
|
|
background-color: var(--mdc-theme-on-primary, #fff);
|
|
}
|
|
}
|
|
.mdc-button--raised:hover::before,
|
|
.mdc-button--unelevated:hover::before {
|
|
opacity: 0.08;
|
|
}
|
|
.mdc-button--raised:not(.mdc-ripple-upgraded):focus::before,
|
|
.mdc-button--raised.mdc-ripple-upgraded--background-focused::before,
|
|
.mdc-button--unelevated:not(.mdc-ripple-upgraded):focus::before,
|
|
.mdc-button--unelevated.mdc-ripple-upgraded--background-focused::before {
|
|
transition-duration: 75ms;
|
|
opacity: 0.24;
|
|
}
|
|
.mdc-button--raised:not(.mdc-ripple-upgraded)::after,
|
|
.mdc-button--unelevated:not(.mdc-ripple-upgraded)::after {
|
|
transition: opacity 150ms linear;
|
|
}
|
|
.mdc-button--raised:not(.mdc-ripple-upgraded):active::after,
|
|
.mdc-button--unelevated:not(.mdc-ripple-upgraded):active::after {
|
|
transition-duration: 75ms;
|
|
opacity: 0.24;
|
|
}
|
|
.mdc-button--raised.mdc-ripple-upgraded,
|
|
.mdc-button--unelevated.mdc-ripple-upgraded {
|
|
--mdc-ripple-fg-opacity: 0.24;
|
|
}
|
|
.mdc-ripple-surface {
|
|
--mdc-ripple-fg-size: 0;
|
|
--mdc-ripple-left: 0;
|
|
--mdc-ripple-top: 0;
|
|
--mdc-ripple-fg-scale: 1;
|
|
--mdc-ripple-fg-translate-end: 0;
|
|
--mdc-ripple-fg-translate-start: 0;
|
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
position: relative;
|
|
outline: none;
|
|
overflow: hidden;
|
|
}
|
|
.mdc-ripple-surface::before,
|
|
.mdc-ripple-surface::after {
|
|
position: absolute;
|
|
border-radius: 50%;
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
content: "";
|
|
}
|
|
.mdc-ripple-surface::before {
|
|
transition: opacity 15ms linear, background-color 15ms linear;
|
|
z-index: 1;
|
|
}
|
|
.mdc-ripple-surface.mdc-ripple-upgraded::before {
|
|
transform: scale(var(--mdc-ripple-fg-scale, 1));
|
|
}
|
|
.mdc-ripple-surface.mdc-ripple-upgraded::after {
|
|
top: 0;
|
|
left: 0;
|
|
transform: scale(0);
|
|
transform-origin: center center;
|
|
}
|
|
.mdc-ripple-surface.mdc-ripple-upgraded--unbounded::after {
|
|
top: var(--mdc-ripple-top, 0);
|
|
left: var(--mdc-ripple-left, 0);
|
|
}
|
|
.mdc-ripple-surface.mdc-ripple-upgraded--foreground-activation::after {
|
|
animation: mdc-ripple-fg-radius-in 225ms forwards, mdc-ripple-fg-opacity-in 75ms forwards;
|
|
}
|
|
.mdc-ripple-surface.mdc-ripple-upgraded--foreground-deactivation::after {
|
|
animation: mdc-ripple-fg-opacity-out 150ms;
|
|
transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
|
|
}
|
|
.mdc-ripple-surface::before,
|
|
.mdc-ripple-surface::after {
|
|
background-color: #000;
|
|
}
|
|
.mdc-ripple-surface:hover::before {
|
|
opacity: 0.04;
|
|
}
|
|
.mdc-ripple-surface:not(.mdc-ripple-upgraded):focus::before,
|
|
.mdc-ripple-surface.mdc-ripple-upgraded--background-focused::before {
|
|
transition-duration: 75ms;
|
|
opacity: 0.12;
|
|
}
|
|
.mdc-ripple-surface:not(.mdc-ripple-upgraded)::after {
|
|
transition: opacity 150ms linear;
|
|
}
|
|
.mdc-ripple-surface:not(.mdc-ripple-upgraded):active::after {
|
|
transition-duration: 75ms;
|
|
opacity: 0.12;
|
|
}
|
|
.mdc-ripple-surface.mdc-ripple-upgraded {
|
|
--mdc-ripple-fg-opacity: 0.12;
|
|
}
|
|
.mdc-ripple-surface::before,
|
|
.mdc-ripple-surface::after {
|
|
top: calc(50% - 100%);
|
|
left: calc(50% - 100%);
|
|
width: 200%;
|
|
height: 200%;
|
|
}
|
|
.mdc-ripple-surface.mdc-ripple-upgraded::after {
|
|
width: var(--mdc-ripple-fg-size, 100%);
|
|
height: var(--mdc-ripple-fg-size, 100%);
|
|
}
|
|
.mdc-ripple-surface[data-mdc-ripple-is-unbounded] {
|
|
overflow: visible;
|
|
}
|
|
.mdc-ripple-surface[data-mdc-ripple-is-unbounded]::before,
|
|
.mdc-ripple-surface[data-mdc-ripple-is-unbounded]::after {
|
|
top: calc(50% - 50%);
|
|
left: calc(50% - 50%);
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
.mdc-ripple-surface[data-mdc-ripple-is-unbounded].mdc-ripple-upgraded::before,
|
|
.mdc-ripple-surface[data-mdc-ripple-is-unbounded].mdc-ripple-upgraded::after {
|
|
top: var(--mdc-ripple-top, calc(50% - 50%));
|
|
left: var(--mdc-ripple-left, calc(50% - 50%));
|
|
width: var(--mdc-ripple-fg-size, 100%);
|
|
height: var(--mdc-ripple-fg-size, 100%);
|
|
}
|
|
.mdc-ripple-surface[data-mdc-ripple-is-unbounded].mdc-ripple-upgraded::after {
|
|
width: var(--mdc-ripple-fg-size, 100%);
|
|
height: var(--mdc-ripple-fg-size, 100%);
|
|
}
|
|
.mdc-ripple-surface--primary::before,
|
|
.mdc-ripple-surface--primary::after {
|
|
background-color: #6200ee;
|
|
}
|
|
@supports not (-ms-ime-align: auto) {
|
|
.mdc-ripple-surface--primary::before,
|
|
.mdc-ripple-surface--primary::after {
|
|
background-color: var(--mdc-theme-primary, #6200ee);
|
|
}
|
|
}
|
|
.mdc-ripple-surface--primary:hover::before {
|
|
opacity: 0.04;
|
|
}
|
|
.mdc-ripple-surface--primary:not(.mdc-ripple-upgraded):focus::before,
|
|
.mdc-ripple-surface--primary.mdc-ripple-upgraded--background-focused::before {
|
|
transition-duration: 75ms;
|
|
opacity: 0.12;
|
|
}
|
|
.mdc-ripple-surface--primary:not(.mdc-ripple-upgraded)::after {
|
|
transition: opacity 150ms linear;
|
|
}
|
|
.mdc-ripple-surface--primary:not(.mdc-ripple-upgraded):active::after {
|
|
transition-duration: 75ms;
|
|
opacity: 0.12;
|
|
}
|
|
.mdc-ripple-surface--primary.mdc-ripple-upgraded {
|
|
--mdc-ripple-fg-opacity: 0.12;
|
|
}
|
|
.mdc-ripple-surface--accent::before,
|
|
.mdc-ripple-surface--accent::after {
|
|
background-color: #018786;
|
|
}
|
|
@supports not (-ms-ime-align: auto) {
|
|
.mdc-ripple-surface--accent::before,
|
|
.mdc-ripple-surface--accent::after {
|
|
background-color: var(--mdc-theme-secondary, #018786);
|
|
}
|
|
}
|
|
.mdc-ripple-surface--accent:hover::before {
|
|
opacity: 0.04;
|
|
}
|
|
.mdc-ripple-surface--accent:not(.mdc-ripple-upgraded):focus::before,
|
|
.mdc-ripple-surface--accent.mdc-ripple-upgraded--background-focused::before {
|
|
transition-duration: 75ms;
|
|
opacity: 0.12;
|
|
}
|
|
.mdc-ripple-surface--accent:not(.mdc-ripple-upgraded)::after {
|
|
transition: opacity 150ms linear;
|
|
}
|
|
.mdc-ripple-surface--accent:not(.mdc-ripple-upgraded):active::after {
|
|
transition-duration: 75ms;
|
|
opacity: 0.12;
|
|
}
|
|
.mdc-ripple-surface--accent.mdc-ripple-upgraded {
|
|
--mdc-ripple-fg-opacity: 0.12;
|
|
}
|
|
.smui-button--color-secondary:not(:disabled) {
|
|
color: #018786;
|
|
color: var(--mdc-theme-secondary, #018786);
|
|
}
|
|
.smui-button--color-secondary.mdc-button--raised:not(:disabled),
|
|
.smui-button--color-secondary.mdc-button--unelevated:not(:disabled) {
|
|
background-color: #018786;
|
|
}
|
|
@supports not (-ms-ime-align: auto) {
|
|
.smui-button--color-secondary.mdc-button--raised:not(:disabled),
|
|
.smui-button--color-secondary.mdc-button--unelevated:not(:disabled) {
|
|
background-color: var(--mdc-theme-secondary, #018786);
|
|
}
|
|
}
|
|
.smui-button--color-secondary.mdc-button--raised:not(:disabled),
|
|
.smui-button--color-secondary.mdc-button--unelevated:not(:disabled) {
|
|
color: #fff;
|
|
color: var(--mdc-theme-on-secondary, #fff);
|
|
}
|
|
.smui-button--color-secondary.mdc-button--outlined:not(:disabled) {
|
|
border-color: #018786;
|
|
border-color: var(--mdc-theme-secondary, #018786);
|
|
}
|
|
.smui-button--color-secondary::before,
|
|
.smui-button--color-secondary::after {
|
|
background-color: #018786;
|
|
}
|
|
@supports not (-ms-ime-align: auto) {
|
|
.smui-button--color-secondary::before,
|
|
.smui-button--color-secondary::after {
|
|
background-color: var(--mdc-theme-secondary, #018786);
|
|
}
|
|
}
|
|
.smui-button--color-secondary:hover::before {
|
|
opacity: 0.04;
|
|
}
|
|
.smui-button--color-secondary:not(.mdc-ripple-upgraded):focus::before,
|
|
.smui-button--color-secondary.mdc-ripple-upgraded--background-focused::before {
|
|
transition-duration: 75ms;
|
|
opacity: 0.12;
|
|
}
|
|
.smui-button--color-secondary:not(.mdc-ripple-upgraded)::after {
|
|
transition: opacity 150ms linear;
|
|
}
|
|
.smui-button--color-secondary:not(.mdc-ripple-upgraded):active::after {
|
|
transition-duration: 75ms;
|
|
opacity: 0.12;
|
|
}
|
|
.smui-button--color-secondary.mdc-ripple-upgraded {
|
|
--mdc-ripple-fg-opacity: 0.12;
|
|
}
|
|
.smui-button--color-secondary.mdc-button--raised::before,
|
|
.smui-button--color-secondary.mdc-button--raised::after,
|
|
.smui-button--color-secondary.mdc-button--unelevated::before,
|
|
.smui-button--color-secondary.mdc-button--unelevated::after {
|
|
background-color: #fff;
|
|
}
|
|
@supports not (-ms-ime-align: auto) {
|
|
.smui-button--color-secondary.mdc-button--raised::before,
|
|
.smui-button--color-secondary.mdc-button--raised::after,
|
|
.smui-button--color-secondary.mdc-button--unelevated::before,
|
|
.smui-button--color-secondary.mdc-button--unelevated::after {
|
|
background-color: var(--mdc-theme-on-secondary, #fff);
|
|
}
|
|
}
|
|
.smui-button--color-secondary.mdc-button--raised:hover::before,
|
|
.smui-button--color-secondary.mdc-button--unelevated:hover::before {
|
|
opacity: 0.08;
|
|
}
|
|
.smui-button--color-secondary.mdc-button--raised:not(.mdc-ripple-upgraded):focus::before,
|
|
.smui-button--color-secondary.mdc-button--raised.mdc-ripple-upgraded--background-focused::before,
|
|
.smui-button--color-secondary.mdc-button--unelevated:not(.mdc-ripple-upgraded):focus::before,
|
|
.smui-button--color-secondary.mdc-button--unelevated.mdc-ripple-upgraded--background-focused::before {
|
|
transition-duration: 75ms;
|
|
opacity: 0.24;
|
|
}
|
|
.smui-button--color-secondary.mdc-button--raised:not(.mdc-ripple-upgraded)::after,
|
|
.smui-button--color-secondary.mdc-button--unelevated:not(.mdc-ripple-upgraded)::after {
|
|
transition: opacity 150ms linear;
|
|
}
|
|
.smui-button--color-secondary.mdc-button--raised:not(.mdc-ripple-upgraded):active::after,
|
|
.smui-button--color-secondary.mdc-button--unelevated:not(.mdc-ripple-upgraded):active::after {
|
|
transition-duration: 75ms;
|
|
opacity: 0.24;
|
|
}
|
|
.smui-button--color-secondary.mdc-button--raised.mdc-ripple-upgraded,
|
|
.smui-button--color-secondary.mdc-button--unelevated.mdc-ripple-upgraded {
|
|
--mdc-ripple-fg-opacity: 0.24;
|
|
}
|
|
.smui-button__group {
|
|
display: inline-flex;
|
|
}
|
|
.smui-button__group > .mdc-button:not(:last-child),
|
|
.smui-button__group > .smui-button__group-item:not(:last-child) > .mdc-button {
|
|
border-top-right-radius: 0;
|
|
border-bottom-right-radius: 0;
|
|
}
|
|
.smui-button__group > .mdc-button:not(:first-child),
|
|
.smui-button__group > .smui-button__group-item:not(:first-child) > .mdc-button {
|
|
border-top-left-radius: 0;
|
|
border-bottom-left-radius: 0;
|
|
}
|
|
.smui-button__group.smui-button__group--raised {
|
|
box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14),
|
|
0px 1px 5px 0px rgba(0, 0, 0, 0.12);
|
|
}
|
|
.smui-button__group > .mdc-button--raised,
|
|
.smui-button__group > .smui-button__group-item > .mdc-button--raised {
|
|
box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14),
|
|
0px 0px 0px 0px rgba(0, 0, 0, 0.12);
|
|
}
|
|
.smui-button__group > .mdc-button--raised:hover,
|
|
.smui-button__group > .mdc-button--raised:focus,
|
|
.smui-button__group > .smui-button__group-item > .mdc-button--raised:hover,
|
|
.smui-button__group > .smui-button__group-item > .mdc-button--raised:focus {
|
|
box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14),
|
|
0px 0px 0px 0px rgba(0, 0, 0, 0.12);
|
|
}
|
|
.smui-button__group > .mdc-button--raised:active,
|
|
.smui-button__group > .smui-button__group-item > .mdc-button--raised:active {
|
|
box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14),
|
|
0px 0px 0px 0px rgba(0, 0, 0, 0.12);
|
|
}
|
|
.smui-button__group > .mdc-button--raised:disabled,
|
|
.smui-button__group > .smui-button__group-item > .mdc-button--raised:disabled {
|
|
box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14),
|
|
0px 0px 0px 0px rgba(0, 0, 0, 0.12);
|
|
}
|
|
.smui-button__group > .mdc-button--outlined:not(:last-child),
|
|
.smui-button__group > .smui-button__group-item:not(:last-child) > .mdc-button--outlined {
|
|
border-right-width: 0;
|
|
}
|
|
|
|
.mdc-icon-button {
|
|
width: 48px;
|
|
height: 48px;
|
|
padding: 12px;
|
|
font-size: 24px;
|
|
display: inline-block;
|
|
position: relative;
|
|
box-sizing: border-box;
|
|
border: none;
|
|
outline: none;
|
|
background-color: transparent;
|
|
fill: currentColor;
|
|
color: inherit;
|
|
text-decoration: none;
|
|
cursor: pointer;
|
|
user-select: none;
|
|
}
|
|
.mdc-icon-button svg,
|
|
.mdc-icon-button img {
|
|
width: 24px;
|
|
height: 24px;
|
|
}
|
|
.mdc-icon-button:disabled {
|
|
color: rgba(0, 0, 0, 0.38);
|
|
color: var(--mdc-theme-text-disabled-on-light, rgba(0, 0, 0, 0.38));
|
|
cursor: default;
|
|
pointer-events: none;
|
|
}
|
|
.mdc-icon-button__icon {
|
|
display: inline-block;
|
|
}
|
|
.mdc-icon-button__icon.mdc-icon-button__icon--on {
|
|
display: none;
|
|
}
|
|
.mdc-icon-button--on .mdc-icon-button__icon {
|
|
display: none;
|
|
}
|
|
.mdc-icon-button--on .mdc-icon-button__icon.mdc-icon-button__icon--on {
|
|
display: inline-block;
|
|
}
|
|
@keyframes mdc-ripple-fg-radius-in {
|
|
from {
|
|
animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
transform: translate(var(--mdc-ripple-fg-translate-start, 0)) scale(1);
|
|
}
|
|
to {
|
|
transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
|
|
}
|
|
}
|
|
@keyframes mdc-ripple-fg-opacity-in {
|
|
from {
|
|
animation-timing-function: linear;
|
|
opacity: 0;
|
|
}
|
|
to {
|
|
opacity: var(--mdc-ripple-fg-opacity, 0);
|
|
}
|
|
}
|
|
@keyframes mdc-ripple-fg-opacity-out {
|
|
from {
|
|
animation-timing-function: linear;
|
|
opacity: var(--mdc-ripple-fg-opacity, 0);
|
|
}
|
|
to {
|
|
opacity: 0;
|
|
}
|
|
}
|
|
.mdc-ripple-surface--test-edge-var-bug {
|
|
--mdc-ripple-surface-test-edge-var: 1px solid #000;
|
|
visibility: hidden;
|
|
}
|
|
.mdc-ripple-surface--test-edge-var-bug::before {
|
|
border: var(--mdc-ripple-surface-test-edge-var);
|
|
}
|
|
.mdc-icon-button {
|
|
--mdc-ripple-fg-size: 0;
|
|
--mdc-ripple-left: 0;
|
|
--mdc-ripple-top: 0;
|
|
--mdc-ripple-fg-scale: 1;
|
|
--mdc-ripple-fg-translate-end: 0;
|
|
--mdc-ripple-fg-translate-start: 0;
|
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
}
|
|
.mdc-icon-button::before,
|
|
.mdc-icon-button::after {
|
|
position: absolute;
|
|
border-radius: 50%;
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
content: "";
|
|
}
|
|
.mdc-icon-button::before {
|
|
transition: opacity 15ms linear, background-color 15ms linear;
|
|
z-index: 1;
|
|
}
|
|
.mdc-icon-button.mdc-ripple-upgraded::before {
|
|
transform: scale(var(--mdc-ripple-fg-scale, 1));
|
|
}
|
|
.mdc-icon-button.mdc-ripple-upgraded::after {
|
|
top: 0;
|
|
left: 0;
|
|
transform: scale(0);
|
|
transform-origin: center center;
|
|
}
|
|
.mdc-icon-button.mdc-ripple-upgraded--unbounded::after {
|
|
top: var(--mdc-ripple-top, 0);
|
|
left: var(--mdc-ripple-left, 0);
|
|
}
|
|
.mdc-icon-button.mdc-ripple-upgraded--foreground-activation::after {
|
|
animation: mdc-ripple-fg-radius-in 225ms forwards, mdc-ripple-fg-opacity-in 75ms forwards;
|
|
}
|
|
.mdc-icon-button.mdc-ripple-upgraded--foreground-deactivation::after {
|
|
animation: mdc-ripple-fg-opacity-out 150ms;
|
|
transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
|
|
}
|
|
.mdc-icon-button::before,
|
|
.mdc-icon-button::after {
|
|
top: calc(50% - 50%);
|
|
left: calc(50% - 50%);
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
.mdc-icon-button.mdc-ripple-upgraded::before,
|
|
.mdc-icon-button.mdc-ripple-upgraded::after {
|
|
top: var(--mdc-ripple-top, calc(50% - 50%));
|
|
left: var(--mdc-ripple-left, calc(50% - 50%));
|
|
width: var(--mdc-ripple-fg-size, 100%);
|
|
height: var(--mdc-ripple-fg-size, 100%);
|
|
}
|
|
.mdc-icon-button.mdc-ripple-upgraded::after {
|
|
width: var(--mdc-ripple-fg-size, 100%);
|
|
height: var(--mdc-ripple-fg-size, 100%);
|
|
}
|
|
.mdc-icon-button::before,
|
|
.mdc-icon-button::after {
|
|
background-color: #000;
|
|
}
|
|
.mdc-icon-button:hover::before {
|
|
opacity: 0.04;
|
|
}
|
|
.mdc-icon-button:not(.mdc-ripple-upgraded):focus::before,
|
|
.mdc-icon-button.mdc-ripple-upgraded--background-focused::before {
|
|
transition-duration: 75ms;
|
|
opacity: 0.12;
|
|
}
|
|
.mdc-icon-button:not(.mdc-ripple-upgraded)::after {
|
|
transition: opacity 150ms linear;
|
|
}
|
|
.mdc-icon-button:not(.mdc-ripple-upgraded):active::after {
|
|
transition-duration: 75ms;
|
|
opacity: 0.12;
|
|
}
|
|
.mdc-icon-button.mdc-ripple-upgraded {
|
|
--mdc-ripple-fg-opacity: 0.12;
|
|
}
|
|
.mdc-ripple-surface {
|
|
--mdc-ripple-fg-size: 0;
|
|
--mdc-ripple-left: 0;
|
|
--mdc-ripple-top: 0;
|
|
--mdc-ripple-fg-scale: 1;
|
|
--mdc-ripple-fg-translate-end: 0;
|
|
--mdc-ripple-fg-translate-start: 0;
|
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
position: relative;
|
|
outline: none;
|
|
overflow: hidden;
|
|
}
|
|
.mdc-ripple-surface::before,
|
|
.mdc-ripple-surface::after {
|
|
position: absolute;
|
|
border-radius: 50%;
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
content: "";
|
|
}
|
|
.mdc-ripple-surface::before {
|
|
transition: opacity 15ms linear, background-color 15ms linear;
|
|
z-index: 1;
|
|
}
|
|
.mdc-ripple-surface.mdc-ripple-upgraded::before {
|
|
transform: scale(var(--mdc-ripple-fg-scale, 1));
|
|
}
|
|
.mdc-ripple-surface.mdc-ripple-upgraded::after {
|
|
top: 0;
|
|
left: 0;
|
|
transform: scale(0);
|
|
transform-origin: center center;
|
|
}
|
|
.mdc-ripple-surface.mdc-ripple-upgraded--unbounded::after {
|
|
top: var(--mdc-ripple-top, 0);
|
|
left: var(--mdc-ripple-left, 0);
|
|
}
|
|
.mdc-ripple-surface.mdc-ripple-upgraded--foreground-activation::after {
|
|
animation: mdc-ripple-fg-radius-in 225ms forwards, mdc-ripple-fg-opacity-in 75ms forwards;
|
|
}
|
|
.mdc-ripple-surface.mdc-ripple-upgraded--foreground-deactivation::after {
|
|
animation: mdc-ripple-fg-opacity-out 150ms;
|
|
transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
|
|
}
|
|
.mdc-ripple-surface::before,
|
|
.mdc-ripple-surface::after {
|
|
background-color: #000;
|
|
}
|
|
.mdc-ripple-surface:hover::before {
|
|
opacity: 0.04;
|
|
}
|
|
.mdc-ripple-surface:not(.mdc-ripple-upgraded):focus::before,
|
|
.mdc-ripple-surface.mdc-ripple-upgraded--background-focused::before {
|
|
transition-duration: 75ms;
|
|
opacity: 0.12;
|
|
}
|
|
.mdc-ripple-surface:not(.mdc-ripple-upgraded)::after {
|
|
transition: opacity 150ms linear;
|
|
}
|
|
.mdc-ripple-surface:not(.mdc-ripple-upgraded):active::after {
|
|
transition-duration: 75ms;
|
|
opacity: 0.12;
|
|
}
|
|
.mdc-ripple-surface.mdc-ripple-upgraded {
|
|
--mdc-ripple-fg-opacity: 0.12;
|
|
}
|
|
.mdc-ripple-surface::before,
|
|
.mdc-ripple-surface::after {
|
|
top: calc(50% - 100%);
|
|
left: calc(50% - 100%);
|
|
width: 200%;
|
|
height: 200%;
|
|
}
|
|
.mdc-ripple-surface.mdc-ripple-upgraded::after {
|
|
width: var(--mdc-ripple-fg-size, 100%);
|
|
height: var(--mdc-ripple-fg-size, 100%);
|
|
}
|
|
.mdc-ripple-surface[data-mdc-ripple-is-unbounded] {
|
|
overflow: visible;
|
|
}
|
|
.mdc-ripple-surface[data-mdc-ripple-is-unbounded]::before,
|
|
.mdc-ripple-surface[data-mdc-ripple-is-unbounded]::after {
|
|
top: calc(50% - 50%);
|
|
left: calc(50% - 50%);
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
.mdc-ripple-surface[data-mdc-ripple-is-unbounded].mdc-ripple-upgraded::before,
|
|
.mdc-ripple-surface[data-mdc-ripple-is-unbounded].mdc-ripple-upgraded::after {
|
|
top: var(--mdc-ripple-top, calc(50% - 50%));
|
|
left: var(--mdc-ripple-left, calc(50% - 50%));
|
|
width: var(--mdc-ripple-fg-size, 100%);
|
|
height: var(--mdc-ripple-fg-size, 100%);
|
|
}
|
|
.mdc-ripple-surface[data-mdc-ripple-is-unbounded].mdc-ripple-upgraded::after {
|
|
width: var(--mdc-ripple-fg-size, 100%);
|
|
height: var(--mdc-ripple-fg-size, 100%);
|
|
}
|
|
.mdc-ripple-surface--primary::before,
|
|
.mdc-ripple-surface--primary::after {
|
|
background-color: #6200ee;
|
|
}
|
|
@supports not (-ms-ime-align: auto) {
|
|
.mdc-ripple-surface--primary::before,
|
|
.mdc-ripple-surface--primary::after {
|
|
background-color: var(--mdc-theme-primary, #6200ee);
|
|
}
|
|
}
|
|
.mdc-ripple-surface--primary:hover::before {
|
|
opacity: 0.04;
|
|
}
|
|
.mdc-ripple-surface--primary:not(.mdc-ripple-upgraded):focus::before,
|
|
.mdc-ripple-surface--primary.mdc-ripple-upgraded--background-focused::before {
|
|
transition-duration: 75ms;
|
|
opacity: 0.12;
|
|
}
|
|
.mdc-ripple-surface--primary:not(.mdc-ripple-upgraded)::after {
|
|
transition: opacity 150ms linear;
|
|
}
|
|
.mdc-ripple-surface--primary:not(.mdc-ripple-upgraded):active::after {
|
|
transition-duration: 75ms;
|
|
opacity: 0.12;
|
|
}
|
|
.mdc-ripple-surface--primary.mdc-ripple-upgraded {
|
|
--mdc-ripple-fg-opacity: 0.12;
|
|
}
|
|
.mdc-ripple-surface--accent::before,
|
|
.mdc-ripple-surface--accent::after {
|
|
background-color: #018786;
|
|
}
|
|
@supports not (-ms-ime-align: auto) {
|
|
.mdc-ripple-surface--accent::before,
|
|
.mdc-ripple-surface--accent::after {
|
|
background-color: var(--mdc-theme-secondary, #018786);
|
|
}
|
|
}
|
|
.mdc-ripple-surface--accent:hover::before {
|
|
opacity: 0.04;
|
|
}
|
|
.mdc-ripple-surface--accent:not(.mdc-ripple-upgraded):focus::before,
|
|
.mdc-ripple-surface--accent.mdc-ripple-upgraded--background-focused::before {
|
|
transition-duration: 75ms;
|
|
opacity: 0.12;
|
|
}
|
|
.mdc-ripple-surface--accent:not(.mdc-ripple-upgraded)::after {
|
|
transition: opacity 150ms linear;
|
|
}
|
|
.mdc-ripple-surface--accent:not(.mdc-ripple-upgraded):active::after {
|
|
transition-duration: 75ms;
|
|
opacity: 0.12;
|
|
}
|
|
.mdc-ripple-surface--accent.mdc-ripple-upgraded {
|
|
--mdc-ripple-fg-opacity: 0.12;
|
|
}
|
|
|
|
.mdc-elevation--z0 {
|
|
box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14),
|
|
0px 0px 0px 0px rgba(0, 0, 0, 0.12);
|
|
}
|
|
.mdc-elevation--z1 {
|
|
box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14),
|
|
0px 1px 3px 0px rgba(0, 0, 0, 0.12);
|
|
}
|
|
.mdc-elevation--z2 {
|
|
box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14),
|
|
0px 1px 5px 0px rgba(0, 0, 0, 0.12);
|
|
}
|
|
.mdc-elevation--z3 {
|
|
box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14),
|
|
0px 1px 8px 0px rgba(0, 0, 0, 0.12);
|
|
}
|
|
.mdc-elevation--z4 {
|
|
box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14),
|
|
0px 1px 10px 0px rgba(0, 0, 0, 0.12);
|
|
}
|
|
.mdc-elevation--z5 {
|
|
box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 5px 8px 0px rgba(0, 0, 0, 0.14),
|
|
0px 1px 14px 0px rgba(0, 0, 0, 0.12);
|
|
}
|
|
.mdc-elevation--z6 {
|
|
box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14),
|
|
0px 1px 18px 0px rgba(0, 0, 0, 0.12);
|
|
}
|
|
.mdc-elevation--z7 {
|
|
box-shadow: 0px 4px 5px -2px rgba(0, 0, 0, 0.2), 0px 7px 10px 1px rgba(0, 0, 0, 0.14),
|
|
0px 2px 16px 1px rgba(0, 0, 0, 0.12);
|
|
}
|
|
.mdc-elevation--z8 {
|
|
box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14),
|
|
0px 3px 14px 2px rgba(0, 0, 0, 0.12);
|
|
}
|
|
.mdc-elevation--z9 {
|
|
box-shadow: 0px 5px 6px -3px rgba(0, 0, 0, 0.2), 0px 9px 12px 1px rgba(0, 0, 0, 0.14),
|
|
0px 3px 16px 2px rgba(0, 0, 0, 0.12);
|
|
}
|
|
.mdc-elevation--z10 {
|
|
box-shadow: 0px 6px 6px -3px rgba(0, 0, 0, 0.2), 0px 10px 14px 1px rgba(0, 0, 0, 0.14),
|
|
0px 4px 18px 3px rgba(0, 0, 0, 0.12);
|
|
}
|
|
.mdc-elevation--z11 {
|
|
box-shadow: 0px 6px 7px -4px rgba(0, 0, 0, 0.2), 0px 11px 15px 1px rgba(0, 0, 0, 0.14),
|
|
0px 4px 20px 3px rgba(0, 0, 0, 0.12);
|
|
}
|
|
.mdc-elevation--z12 {
|
|
box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14),
|
|
0px 5px 22px 4px rgba(0, 0, 0, 0.12);
|
|
}
|
|
.mdc-elevation--z13 {
|
|
box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 13px 19px 2px rgba(0, 0, 0, 0.14),
|
|
0px 5px 24px 4px rgba(0, 0, 0, 0.12);
|
|
}
|
|
.mdc-elevation--z14 {
|
|
box-shadow: 0px 7px 9px -4px rgba(0, 0, 0, 0.2), 0px 14px 21px 2px rgba(0, 0, 0, 0.14),
|
|
0px 5px 26px 4px rgba(0, 0, 0, 0.12);
|
|
}
|
|
.mdc-elevation--z15 {
|
|
box-shadow: 0px 8px 9px -5px rgba(0, 0, 0, 0.2), 0px 15px 22px 2px rgba(0, 0, 0, 0.14),
|
|
0px 6px 28px 5px rgba(0, 0, 0, 0.12);
|
|
}
|
|
.mdc-elevation--z16 {
|
|
box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14),
|
|
0px 6px 30px 5px rgba(0, 0, 0, 0.12);
|
|
}
|
|
.mdc-elevation--z17 {
|
|
box-shadow: 0px 8px 11px -5px rgba(0, 0, 0, 0.2), 0px 17px 26px 2px rgba(0, 0, 0, 0.14),
|
|
0px 6px 32px 5px rgba(0, 0, 0, 0.12);
|
|
}
|
|
.mdc-elevation--z18 {
|
|
box-shadow: 0px 9px 11px -5px rgba(0, 0, 0, 0.2), 0px 18px 28px 2px rgba(0, 0, 0, 0.14),
|
|
0px 7px 34px 6px rgba(0, 0, 0, 0.12);
|
|
}
|
|
.mdc-elevation--z19 {
|
|
box-shadow: 0px 9px 12px -6px rgba(0, 0, 0, 0.2), 0px 19px 29px 2px rgba(0, 0, 0, 0.14),
|
|
0px 7px 36px 6px rgba(0, 0, 0, 0.12);
|
|
}
|
|
.mdc-elevation--z20 {
|
|
box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 20px 31px 3px rgba(0, 0, 0, 0.14),
|
|
0px 8px 38px 7px rgba(0, 0, 0, 0.12);
|
|
}
|
|
.mdc-elevation--z21 {
|
|
box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 21px 33px 3px rgba(0, 0, 0, 0.14),
|
|
0px 8px 40px 7px rgba(0, 0, 0, 0.12);
|
|
}
|
|
.mdc-elevation--z22 {
|
|
box-shadow: 0px 10px 14px -6px rgba(0, 0, 0, 0.2), 0px 22px 35px 3px rgba(0, 0, 0, 0.14),
|
|
0px 8px 42px 7px rgba(0, 0, 0, 0.12);
|
|
}
|
|
.mdc-elevation--z23 {
|
|
box-shadow: 0px 11px 14px -7px rgba(0, 0, 0, 0.2), 0px 23px 36px 3px rgba(0, 0, 0, 0.14),
|
|
0px 9px 44px 8px rgba(0, 0, 0, 0.12);
|
|
}
|
|
.mdc-elevation--z24 {
|
|
box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14),
|
|
0px 9px 46px 8px rgba(0, 0, 0, 0.12);
|
|
}
|
|
.mdc-elevation-transition {
|
|
transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
will-change: box-shadow;
|
|
}
|
|
.smui-paper {
|
|
background-color: #fff;
|
|
color: #000;
|
|
color: var(--mdc-theme-on-surface, #000);
|
|
padding: 24px 16px;
|
|
}
|
|
@supports not (-ms-ime-align: auto) {
|
|
.smui-paper {
|
|
background-color: var(--mdc-theme-surface, #fff);
|
|
}
|
|
}
|
|
.smui-paper.smui-paper--rounded {
|
|
border-radius: 4px;
|
|
}
|
|
.smui-paper.smui-paper--color-primary {
|
|
background-color: #6200ee;
|
|
color: #fff;
|
|
color: var(--mdc-theme-on-primary, #fff);
|
|
}
|
|
.smui-paper.smui-paper--color-primary.mdc-elevation--z0 {
|
|
box-shadow: 0px 0px 0px 0px rgba(98, 0, 238, 0.2), 0px 0px 0px 0px rgba(98, 0, 238, 0.14),
|
|
0px 0px 0px 0px rgba(98, 0, 238, 0.12);
|
|
}
|
|
.smui-paper.smui-paper--color-primary.mdc-elevation--z1 {
|
|
box-shadow: 0px 2px 1px -1px rgba(98, 0, 238, 0.2), 0px 1px 1px 0px rgba(98, 0, 238, 0.14),
|
|
0px 1px 3px 0px rgba(98, 0, 238, 0.12);
|
|
}
|
|
.smui-paper.smui-paper--color-primary.mdc-elevation--z2 {
|
|
box-shadow: 0px 3px 1px -2px rgba(98, 0, 238, 0.2), 0px 2px 2px 0px rgba(98, 0, 238, 0.14),
|
|
0px 1px 5px 0px rgba(98, 0, 238, 0.12);
|
|
}
|
|
.smui-paper.smui-paper--color-primary.mdc-elevation--z3 {
|
|
box-shadow: 0px 3px 3px -2px rgba(98, 0, 238, 0.2), 0px 3px 4px 0px rgba(98, 0, 238, 0.14),
|
|
0px 1px 8px 0px rgba(98, 0, 238, 0.12);
|
|
}
|
|
.smui-paper.smui-paper--color-primary.mdc-elevation--z4 {
|
|
box-shadow: 0px 2px 4px -1px rgba(98, 0, 238, 0.2), 0px 4px 5px 0px rgba(98, 0, 238, 0.14),
|
|
0px 1px 10px 0px rgba(98, 0, 238, 0.12);
|
|
}
|
|
.smui-paper.smui-paper--color-primary.mdc-elevation--z5 {
|
|
box-shadow: 0px 3px 5px -1px rgba(98, 0, 238, 0.2), 0px 5px 8px 0px rgba(98, 0, 238, 0.14),
|
|
0px 1px 14px 0px rgba(98, 0, 238, 0.12);
|
|
}
|
|
.smui-paper.smui-paper--color-primary.mdc-elevation--z6 {
|
|
box-shadow: 0px 3px 5px -1px rgba(98, 0, 238, 0.2), 0px 6px 10px 0px rgba(98, 0, 238, 0.14),
|
|
0px 1px 18px 0px rgba(98, 0, 238, 0.12);
|
|
}
|
|
.smui-paper.smui-paper--color-primary.mdc-elevation--z7 {
|
|
box-shadow: 0px 4px 5px -2px rgba(98, 0, 238, 0.2), 0px 7px 10px 1px rgba(98, 0, 238, 0.14),
|
|
0px 2px 16px 1px rgba(98, 0, 238, 0.12);
|
|
}
|
|
.smui-paper.smui-paper--color-primary.mdc-elevation--z8 {
|
|
box-shadow: 0px 5px 5px -3px rgba(98, 0, 238, 0.2), 0px 8px 10px 1px rgba(98, 0, 238, 0.14),
|
|
0px 3px 14px 2px rgba(98, 0, 238, 0.12);
|
|
}
|
|
.smui-paper.smui-paper--color-primary.mdc-elevation--z9 {
|
|
box-shadow: 0px 5px 6px -3px rgba(98, 0, 238, 0.2), 0px 9px 12px 1px rgba(98, 0, 238, 0.14),
|
|
0px 3px 16px 2px rgba(98, 0, 238, 0.12);
|
|
}
|
|
.smui-paper.smui-paper--color-primary.mdc-elevation--z10 {
|
|
box-shadow: 0px 6px 6px -3px rgba(98, 0, 238, 0.2), 0px 10px 14px 1px rgba(98, 0, 238, 0.14),
|
|
0px 4px 18px 3px rgba(98, 0, 238, 0.12);
|
|
}
|
|
.smui-paper.smui-paper--color-primary.mdc-elevation--z11 {
|
|
box-shadow: 0px 6px 7px -4px rgba(98, 0, 238, 0.2), 0px 11px 15px 1px rgba(98, 0, 238, 0.14),
|
|
0px 4px 20px 3px rgba(98, 0, 238, 0.12);
|
|
}
|
|
.smui-paper.smui-paper--color-primary.mdc-elevation--z12 {
|
|
box-shadow: 0px 7px 8px -4px rgba(98, 0, 238, 0.2), 0px 12px 17px 2px rgba(98, 0, 238, 0.14),
|
|
0px 5px 22px 4px rgba(98, 0, 238, 0.12);
|
|
}
|
|
.smui-paper.smui-paper--color-primary.mdc-elevation--z13 {
|
|
box-shadow: 0px 7px 8px -4px rgba(98, 0, 238, 0.2), 0px 13px 19px 2px rgba(98, 0, 238, 0.14),
|
|
0px 5px 24px 4px rgba(98, 0, 238, 0.12);
|
|
}
|
|
.smui-paper.smui-paper--color-primary.mdc-elevation--z14 {
|
|
box-shadow: 0px 7px 9px -4px rgba(98, 0, 238, 0.2), 0px 14px 21px 2px rgba(98, 0, 238, 0.14),
|
|
0px 5px 26px 4px rgba(98, 0, 238, 0.12);
|
|
}
|
|
.smui-paper.smui-paper--color-primary.mdc-elevation--z15 {
|
|
box-shadow: 0px 8px 9px -5px rgba(98, 0, 238, 0.2), 0px 15px 22px 2px rgba(98, 0, 238, 0.14),
|
|
0px 6px 28px 5px rgba(98, 0, 238, 0.12);
|
|
}
|
|
.smui-paper.smui-paper--color-primary.mdc-elevation--z16 {
|
|
box-shadow: 0px 8px 10px -5px rgba(98, 0, 238, 0.2), 0px 16px 24px 2px rgba(98, 0, 238, 0.14),
|
|
0px 6px 30px 5px rgba(98, 0, 238, 0.12);
|
|
}
|
|
.smui-paper.smui-paper--color-primary.mdc-elevation--z17 {
|
|
box-shadow: 0px 8px 11px -5px rgba(98, 0, 238, 0.2), 0px 17px 26px 2px rgba(98, 0, 238, 0.14),
|
|
0px 6px 32px 5px rgba(98, 0, 238, 0.12);
|
|
}
|
|
.smui-paper.smui-paper--color-primary.mdc-elevation--z18 {
|
|
box-shadow: 0px 9px 11px -5px rgba(98, 0, 238, 0.2), 0px 18px 28px 2px rgba(98, 0, 238, 0.14),
|
|
0px 7px 34px 6px rgba(98, 0, 238, 0.12);
|
|
}
|
|
.smui-paper.smui-paper--color-primary.mdc-elevation--z19 {
|
|
box-shadow: 0px 9px 12px -6px rgba(98, 0, 238, 0.2), 0px 19px 29px 2px rgba(98, 0, 238, 0.14),
|
|
0px 7px 36px 6px rgba(98, 0, 238, 0.12);
|
|
}
|
|
.smui-paper.smui-paper--color-primary.mdc-elevation--z20 {
|
|
box-shadow: 0px 10px 13px -6px rgba(98, 0, 238, 0.2), 0px 20px 31px 3px rgba(98, 0, 238, 0.14),
|
|
0px 8px 38px 7px rgba(98, 0, 238, 0.12);
|
|
}
|
|
.smui-paper.smui-paper--color-primary.mdc-elevation--z21 {
|
|
box-shadow: 0px 10px 13px -6px rgba(98, 0, 238, 0.2), 0px 21px 33px 3px rgba(98, 0, 238, 0.14),
|
|
0px 8px 40px 7px rgba(98, 0, 238, 0.12);
|
|
}
|
|
.smui-paper.smui-paper--color-primary.mdc-elevation--z22 {
|
|
box-shadow: 0px 10px 14px -6px rgba(98, 0, 238, 0.2), 0px 22px 35px 3px rgba(98, 0, 238, 0.14),
|
|
0px 8px 42px 7px rgba(98, 0, 238, 0.12);
|
|
}
|
|
.smui-paper.smui-paper--color-primary.mdc-elevation--z23 {
|
|
box-shadow: 0px 11px 14px -7px rgba(98, 0, 238, 0.2), 0px 23px 36px 3px rgba(98, 0, 238, 0.14),
|
|
0px 9px 44px 8px rgba(98, 0, 238, 0.12);
|
|
}
|
|
.smui-paper.smui-paper--color-primary.mdc-elevation--z24 {
|
|
box-shadow: 0px 11px 15px -7px rgba(98, 0, 238, 0.2), 0px 24px 38px 3px rgba(98, 0, 238, 0.14),
|
|
0px 9px 46px 8px rgba(98, 0, 238, 0.12);
|
|
}
|
|
@supports not (-ms-ime-align: auto) {
|
|
.smui-paper.smui-paper--color-primary {
|
|
background-color: var(--mdc-theme-primary, #6200ee);
|
|
}
|
|
}
|
|
.smui-paper.smui-paper--color-secondary {
|
|
background-color: #018786;
|
|
color: #fff;
|
|
color: var(--mdc-theme-on-secondary, #fff);
|
|
}
|
|
.smui-paper.smui-paper--color-secondary.mdc-elevation--z0 {
|
|
box-shadow: 0px 0px 0px 0px rgba(1, 135, 134, 0.2), 0px 0px 0px 0px rgba(1, 135, 134, 0.14),
|
|
0px 0px 0px 0px rgba(1, 135, 134, 0.12);
|
|
}
|
|
.smui-paper.smui-paper--color-secondary.mdc-elevation--z1 {
|
|
box-shadow: 0px 2px 1px -1px rgba(1, 135, 134, 0.2), 0px 1px 1px 0px rgba(1, 135, 134, 0.14),
|
|
0px 1px 3px 0px rgba(1, 135, 134, 0.12);
|
|
}
|
|
.smui-paper.smui-paper--color-secondary.mdc-elevation--z2 {
|
|
box-shadow: 0px 3px 1px -2px rgba(1, 135, 134, 0.2), 0px 2px 2px 0px rgba(1, 135, 134, 0.14),
|
|
0px 1px 5px 0px rgba(1, 135, 134, 0.12);
|
|
}
|
|
.smui-paper.smui-paper--color-secondary.mdc-elevation--z3 {
|
|
box-shadow: 0px 3px 3px -2px rgba(1, 135, 134, 0.2), 0px 3px 4px 0px rgba(1, 135, 134, 0.14),
|
|
0px 1px 8px 0px rgba(1, 135, 134, 0.12);
|
|
}
|
|
.smui-paper.smui-paper--color-secondary.mdc-elevation--z4 {
|
|
box-shadow: 0px 2px 4px -1px rgba(1, 135, 134, 0.2), 0px 4px 5px 0px rgba(1, 135, 134, 0.14),
|
|
0px 1px 10px 0px rgba(1, 135, 134, 0.12);
|
|
}
|
|
.smui-paper.smui-paper--color-secondary.mdc-elevation--z5 {
|
|
box-shadow: 0px 3px 5px -1px rgba(1, 135, 134, 0.2), 0px 5px 8px 0px rgba(1, 135, 134, 0.14),
|
|
0px 1px 14px 0px rgba(1, 135, 134, 0.12);
|
|
}
|
|
.smui-paper.smui-paper--color-secondary.mdc-elevation--z6 {
|
|
box-shadow: 0px 3px 5px -1px rgba(1, 135, 134, 0.2), 0px 6px 10px 0px rgba(1, 135, 134, 0.14),
|
|
0px 1px 18px 0px rgba(1, 135, 134, 0.12);
|
|
}
|
|
.smui-paper.smui-paper--color-secondary.mdc-elevation--z7 {
|
|
box-shadow: 0px 4px 5px -2px rgba(1, 135, 134, 0.2), 0px 7px 10px 1px rgba(1, 135, 134, 0.14),
|
|
0px 2px 16px 1px rgba(1, 135, 134, 0.12);
|
|
}
|
|
.smui-paper.smui-paper--color-secondary.mdc-elevation--z8 {
|
|
box-shadow: 0px 5px 5px -3px rgba(1, 135, 134, 0.2), 0px 8px 10px 1px rgba(1, 135, 134, 0.14),
|
|
0px 3px 14px 2px rgba(1, 135, 134, 0.12);
|
|
}
|
|
.smui-paper.smui-paper--color-secondary.mdc-elevation--z9 {
|
|
box-shadow: 0px 5px 6px -3px rgba(1, 135, 134, 0.2), 0px 9px 12px 1px rgba(1, 135, 134, 0.14),
|
|
0px 3px 16px 2px rgba(1, 135, 134, 0.12);
|
|
}
|
|
.smui-paper.smui-paper--color-secondary.mdc-elevation--z10 {
|
|
box-shadow: 0px 6px 6px -3px rgba(1, 135, 134, 0.2), 0px 10px 14px 1px rgba(1, 135, 134, 0.14),
|
|
0px 4px 18px 3px rgba(1, 135, 134, 0.12);
|
|
}
|
|
.smui-paper.smui-paper--color-secondary.mdc-elevation--z11 {
|
|
box-shadow: 0px 6px 7px -4px rgba(1, 135, 134, 0.2), 0px 11px 15px 1px rgba(1, 135, 134, 0.14),
|
|
0px 4px 20px 3px rgba(1, 135, 134, 0.12);
|
|
}
|
|
.smui-paper.smui-paper--color-secondary.mdc-elevation--z12 {
|
|
box-shadow: 0px 7px 8px -4px rgba(1, 135, 134, 0.2), 0px 12px 17px 2px rgba(1, 135, 134, 0.14),
|
|
0px 5px 22px 4px rgba(1, 135, 134, 0.12);
|
|
}
|
|
.smui-paper.smui-paper--color-secondary.mdc-elevation--z13 {
|
|
box-shadow: 0px 7px 8px -4px rgba(1, 135, 134, 0.2), 0px 13px 19px 2px rgba(1, 135, 134, 0.14),
|
|
0px 5px 24px 4px rgba(1, 135, 134, 0.12);
|
|
}
|
|
.smui-paper.smui-paper--color-secondary.mdc-elevation--z14 {
|
|
box-shadow: 0px 7px 9px -4px rgba(1, 135, 134, 0.2), 0px 14px 21px 2px rgba(1, 135, 134, 0.14),
|
|
0px 5px 26px 4px rgba(1, 135, 134, 0.12);
|
|
}
|
|
.smui-paper.smui-paper--color-secondary.mdc-elevation--z15 {
|
|
box-shadow: 0px 8px 9px -5px rgba(1, 135, 134, 0.2), 0px 15px 22px 2px rgba(1, 135, 134, 0.14),
|
|
0px 6px 28px 5px rgba(1, 135, 134, 0.12);
|
|
}
|
|
.smui-paper.smui-paper--color-secondary.mdc-elevation--z16 {
|
|
box-shadow: 0px 8px 10px -5px rgba(1, 135, 134, 0.2), 0px 16px 24px 2px rgba(1, 135, 134, 0.14),
|
|
0px 6px 30px 5px rgba(1, 135, 134, 0.12);
|
|
}
|
|
.smui-paper.smui-paper--color-secondary.mdc-elevation--z17 {
|
|
box-shadow: 0px 8px 11px -5px rgba(1, 135, 134, 0.2), 0px 17px 26px 2px rgba(1, 135, 134, 0.14),
|
|
0px 6px 32px 5px rgba(1, 135, 134, 0.12);
|
|
}
|
|
.smui-paper.smui-paper--color-secondary.mdc-elevation--z18 {
|
|
box-shadow: 0px 9px 11px -5px rgba(1, 135, 134, 0.2), 0px 18px 28px 2px rgba(1, 135, 134, 0.14),
|
|
0px 7px 34px 6px rgba(1, 135, 134, 0.12);
|
|
}
|
|
.smui-paper.smui-paper--color-secondary.mdc-elevation--z19 {
|
|
box-shadow: 0px 9px 12px -6px rgba(1, 135, 134, 0.2), 0px 19px 29px 2px rgba(1, 135, 134, 0.14),
|
|
0px 7px 36px 6px rgba(1, 135, 134, 0.12);
|
|
}
|
|
.smui-paper.smui-paper--color-secondary.mdc-elevation--z20 {
|
|
box-shadow: 0px 10px 13px -6px rgba(1, 135, 134, 0.2), 0px 20px 31px 3px rgba(1, 135, 134, 0.14),
|
|
0px 8px 38px 7px rgba(1, 135, 134, 0.12);
|
|
}
|
|
.smui-paper.smui-paper--color-secondary.mdc-elevation--z21 {
|
|
box-shadow: 0px 10px 13px -6px rgba(1, 135, 134, 0.2), 0px 21px 33px 3px rgba(1, 135, 134, 0.14),
|
|
0px 8px 40px 7px rgba(1, 135, 134, 0.12);
|
|
}
|
|
.smui-paper.smui-paper--color-secondary.mdc-elevation--z22 {
|
|
box-shadow: 0px 10px 14px -6px rgba(1, 135, 134, 0.2), 0px 22px 35px 3px rgba(1, 135, 134, 0.14),
|
|
0px 8px 42px 7px rgba(1, 135, 134, 0.12);
|
|
}
|
|
.smui-paper.smui-paper--color-secondary.mdc-elevation--z23 {
|
|
box-shadow: 0px 11px 14px -7px rgba(1, 135, 134, 0.2), 0px 23px 36px 3px rgba(1, 135, 134, 0.14),
|
|
0px 9px 44px 8px rgba(1, 135, 134, 0.12);
|
|
}
|
|
.smui-paper.smui-paper--color-secondary.mdc-elevation--z24 {
|
|
box-shadow: 0px 11px 15px -7px rgba(1, 135, 134, 0.2), 0px 24px 38px 3px rgba(1, 135, 134, 0.14),
|
|
0px 9px 46px 8px rgba(1, 135, 134, 0.12);
|
|
}
|
|
@supports not (-ms-ime-align: auto) {
|
|
.smui-paper.smui-paper--color-secondary {
|
|
background-color: var(--mdc-theme-secondary, #018786);
|
|
}
|
|
}
|
|
.smui-paper .smui-paper__title {
|
|
font-family: Roboto, sans-serif;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
-webkit-font-smoothing: antialiased;
|
|
font-size: 1.5rem;
|
|
line-height: 2rem;
|
|
font-weight: 400;
|
|
letter-spacing: normal;
|
|
text-decoration: inherit;
|
|
text-transform: inherit;
|
|
margin-top: 0;
|
|
margin-bottom: 0.4rem;
|
|
}
|
|
.smui-paper .smui-paper__subtitle {
|
|
font-family: Roboto, sans-serif;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
-webkit-font-smoothing: antialiased;
|
|
font-size: 1rem;
|
|
line-height: 1.75rem;
|
|
font-weight: 400;
|
|
letter-spacing: 0.00937em;
|
|
text-decoration: inherit;
|
|
text-transform: inherit;
|
|
margin-top: -0.2rem;
|
|
margin-bottom: 0.4rem;
|
|
}
|
|
.smui-paper .smui-paper__content {
|
|
font-family: Roboto, sans-serif;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
-webkit-font-smoothing: antialiased;
|
|
font-size: 1rem;
|
|
line-height: 1.5rem;
|
|
font-weight: 400;
|
|
letter-spacing: 0.03125em;
|
|
text-decoration: inherit;
|
|
text-transform: inherit;
|
|
}
|
|
|
|
.mdc-dialog,
|
|
.mdc-dialog__scrim {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
align-items: center;
|
|
justify-content: center;
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
.mdc-dialog {
|
|
display: none;
|
|
z-index: 7;
|
|
}
|
|
.mdc-dialog .mdc-dialog__surface {
|
|
background-color: #fff;
|
|
background-color: var(--mdc-theme-surface, #fff);
|
|
}
|
|
.mdc-dialog .mdc-dialog__scrim {
|
|
background-color: rgba(0, 0, 0, 0.32);
|
|
}
|
|
.mdc-dialog .mdc-dialog__title {
|
|
color: rgba(0, 0, 0, 0.87);
|
|
}
|
|
.mdc-dialog .mdc-dialog__content {
|
|
color: rgba(0, 0, 0, 0.6);
|
|
}
|
|
.mdc-dialog.mdc-dialog--scrollable .mdc-dialog__title,
|
|
.mdc-dialog.mdc-dialog--scrollable .mdc-dialog__actions {
|
|
border-color: rgba(0, 0, 0, 0.12);
|
|
}
|
|
.mdc-dialog .mdc-dialog__surface {
|
|
min-width: 280px;
|
|
}
|
|
@media (max-width: 592px) {
|
|
.mdc-dialog .mdc-dialog__surface {
|
|
max-width: calc(100vw - 32px);
|
|
}
|
|
}
|
|
@media (min-width: 592px) {
|
|
.mdc-dialog .mdc-dialog__surface {
|
|
max-width: 560px;
|
|
}
|
|
}
|
|
.mdc-dialog .mdc-dialog__surface {
|
|
max-height: calc(100% - 32px);
|
|
}
|
|
.mdc-dialog .mdc-dialog__surface {
|
|
border-radius: 4px;
|
|
}
|
|
.mdc-dialog__scrim {
|
|
opacity: 0;
|
|
z-index: -1;
|
|
}
|
|
.mdc-dialog__container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: space-around;
|
|
box-sizing: border-box;
|
|
height: 100%;
|
|
transform: scale(0.8);
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
}
|
|
.mdc-dialog__surface {
|
|
box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14),
|
|
0px 9px 46px 8px rgba(0, 0, 0, 0.12);
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-grow: 0;
|
|
flex-shrink: 0;
|
|
box-sizing: border-box;
|
|
max-width: 100%;
|
|
max-height: 100%;
|
|
pointer-events: auto;
|
|
overflow-y: auto;
|
|
}
|
|
.mdc-dialog[dir="rtl"] .mdc-dialog__surface,
|
|
[dir="rtl"] .mdc-dialog .mdc-dialog__surface {
|
|
text-align: right;
|
|
}
|
|
.mdc-dialog__title {
|
|
display: block;
|
|
margin-top: 0;
|
|
line-height: normal;
|
|
font-family: Roboto, sans-serif;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
-webkit-font-smoothing: antialiased;
|
|
font-size: 1.25rem;
|
|
line-height: 2rem;
|
|
font-weight: 500;
|
|
letter-spacing: 0.0125em;
|
|
text-decoration: inherit;
|
|
text-transform: inherit;
|
|
display: block;
|
|
position: relative;
|
|
flex-shrink: 0;
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0 24px 9px;
|
|
border-bottom: 1px solid transparent;
|
|
}
|
|
.mdc-dialog__title::before {
|
|
display: inline-block;
|
|
width: 0;
|
|
height: 40px;
|
|
content: "";
|
|
vertical-align: 0;
|
|
}
|
|
.mdc-dialog[dir="rtl"] .mdc-dialog__title,
|
|
[dir="rtl"] .mdc-dialog .mdc-dialog__title {
|
|
text-align: right;
|
|
}
|
|
.mdc-dialog--scrollable .mdc-dialog__title {
|
|
padding-bottom: 15px;
|
|
}
|
|
.mdc-dialog__content {
|
|
font-family: Roboto, sans-serif;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
-webkit-font-smoothing: antialiased;
|
|
font-size: 1rem;
|
|
line-height: 1.5rem;
|
|
font-weight: 400;
|
|
letter-spacing: 0.03125em;
|
|
text-decoration: inherit;
|
|
text-transform: inherit;
|
|
flex-grow: 1;
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 20px 24px;
|
|
overflow: auto;
|
|
-webkit-overflow-scrolling: touch;
|
|
}
|
|
.mdc-dialog__content > :first-child {
|
|
margin-top: 0;
|
|
}
|
|
.mdc-dialog__content > :last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
.mdc-dialog__title + .mdc-dialog__content {
|
|
padding-top: 0;
|
|
}
|
|
.mdc-dialog--scrollable .mdc-dialog__content {
|
|
padding-top: 8px;
|
|
padding-bottom: 8px;
|
|
}
|
|
.mdc-dialog__content .mdc-list:first-child:last-child {
|
|
padding: 6px 0 0;
|
|
}
|
|
.mdc-dialog--scrollable .mdc-dialog__content .mdc-list:first-child:last-child {
|
|
padding: 0;
|
|
}
|
|
.mdc-dialog__actions {
|
|
display: flex;
|
|
position: relative;
|
|
flex-shrink: 0;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
box-sizing: border-box;
|
|
min-height: 52px;
|
|
margin: 0;
|
|
padding: 8px;
|
|
border-top: 1px solid transparent;
|
|
}
|
|
.mdc-dialog--stacked .mdc-dialog__actions {
|
|
flex-direction: column;
|
|
align-items: flex-end;
|
|
}
|
|
.mdc-dialog__button {
|
|
margin-left: 8px;
|
|
margin-right: 0;
|
|
max-width: 100%;
|
|
text-align: right;
|
|
}
|
|
[dir="rtl"] .mdc-dialog__button,
|
|
.mdc-dialog__button[dir="rtl"] {
|
|
margin-left: 0;
|
|
margin-right: 8px;
|
|
}
|
|
.mdc-dialog__button:first-child {
|
|
margin-left: 0;
|
|
margin-right: 0;
|
|
}
|
|
[dir="rtl"] .mdc-dialog__button:first-child,
|
|
.mdc-dialog__button:first-child[dir="rtl"] {
|
|
margin-left: 0;
|
|
margin-right: 0;
|
|
}
|
|
.mdc-dialog[dir="rtl"] .mdc-dialog__button,
|
|
[dir="rtl"] .mdc-dialog .mdc-dialog__button {
|
|
text-align: left;
|
|
}
|
|
.mdc-dialog--stacked .mdc-dialog__button:not(:first-child) {
|
|
margin-top: 12px;
|
|
}
|
|
.mdc-dialog--open,
|
|
.mdc-dialog--opening,
|
|
.mdc-dialog--closing {
|
|
display: flex;
|
|
}
|
|
.mdc-dialog--opening .mdc-dialog__scrim {
|
|
transition: opacity 150ms linear;
|
|
}
|
|
.mdc-dialog--opening .mdc-dialog__container {
|
|
transition: opacity 75ms linear, transform 150ms 0ms cubic-bezier(0, 0, 0.2, 1);
|
|
}
|
|
.mdc-dialog--closing .mdc-dialog__scrim,
|
|
.mdc-dialog--closing .mdc-dialog__container {
|
|
transition: opacity 75ms linear;
|
|
}
|
|
.mdc-dialog--closing .mdc-dialog__container {
|
|
transform: scale(1);
|
|
}
|
|
.mdc-dialog--open .mdc-dialog__scrim {
|
|
opacity: 1;
|
|
}
|
|
.mdc-dialog--open .mdc-dialog__container {
|
|
transform: scale(1);
|
|
opacity: 1;
|
|
}
|
|
.mdc-dialog-scroll-lock {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.mdc-floating-label {
|
|
font-family: Roboto, sans-serif;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
-webkit-font-smoothing: antialiased;
|
|
font-size: 1rem;
|
|
line-height: 1.75rem;
|
|
font-weight: 400;
|
|
letter-spacing: 0.00937em;
|
|
text-decoration: inherit;
|
|
text-transform: inherit;
|
|
position: absolute;
|
|
left: 0;
|
|
transform-origin: left top;
|
|
transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1), color 150ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
line-height: 1.15rem;
|
|
text-align: left;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
cursor: text;
|
|
overflow: hidden;
|
|
will-change: transform;
|
|
}
|
|
[dir="rtl"] .mdc-floating-label,
|
|
.mdc-floating-label[dir="rtl"] {
|
|
right: 0;
|
|
left: auto;
|
|
transform-origin: right top;
|
|
text-align: right;
|
|
}
|
|
.mdc-floating-label--float-above {
|
|
cursor: auto;
|
|
}
|
|
.mdc-floating-label--float-above {
|
|
transform: translateY(-50%) scale(0.75);
|
|
}
|
|
.mdc-floating-label--shake {
|
|
animation: mdc-floating-label-shake-float-above-standard 250ms 1;
|
|
}
|
|
@keyframes mdc-floating-label-shake-float-above-standard {
|
|
0% {
|
|
transform: translateX(calc(0 - 0%)) translateY(-50%) scale(0.75);
|
|
}
|
|
33% {
|
|
animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
|
|
transform: translateX(calc(4% - 0%)) translateY(-50%) scale(0.75);
|
|
}
|
|
66% {
|
|
animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
|
|
transform: translateX(calc(-4% - 0%)) translateY(-50%) scale(0.75);
|
|
}
|
|
100% {
|
|
transform: translateX(calc(0 - 0%)) translateY(-50%) scale(0.75);
|
|
}
|
|
}
|
|
.mdc-line-ripple {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 2px;
|
|
transform: scaleX(0);
|
|
transition: transform 180ms cubic-bezier(0.4, 0, 0.2, 1), opacity 180ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
opacity: 0;
|
|
z-index: 2;
|
|
}
|
|
.mdc-line-ripple--active {
|
|
transform: scaleX(1);
|
|
opacity: 1;
|
|
}
|
|
.mdc-line-ripple--deactivating {
|
|
opacity: 0;
|
|
}
|
|
.mdc-notched-outline {
|
|
display: flex;
|
|
position: absolute;
|
|
right: 0;
|
|
left: 0;
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
max-width: 100%;
|
|
height: 100%;
|
|
text-align: left;
|
|
pointer-events: none;
|
|
}
|
|
[dir="rtl"] .mdc-notched-outline,
|
|
.mdc-notched-outline[dir="rtl"] {
|
|
text-align: right;
|
|
}
|
|
.mdc-notched-outline__leading,
|
|
.mdc-notched-outline__notch,
|
|
.mdc-notched-outline__trailing {
|
|
box-sizing: border-box;
|
|
height: 100%;
|
|
transition: border 150ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
border-top: 1px solid;
|
|
border-bottom: 1px solid;
|
|
pointer-events: none;
|
|
}
|
|
.mdc-notched-outline__leading {
|
|
border-left: 1px solid;
|
|
border-right: none;
|
|
width: 12px;
|
|
}
|
|
[dir="rtl"] .mdc-notched-outline__leading,
|
|
.mdc-notched-outline__leading[dir="rtl"] {
|
|
border-left: none;
|
|
border-right: 1px solid;
|
|
}
|
|
.mdc-notched-outline__trailing {
|
|
border-left: none;
|
|
border-right: 1px solid;
|
|
flex-grow: 1;
|
|
}
|
|
[dir="rtl"] .mdc-notched-outline__trailing,
|
|
.mdc-notched-outline__trailing[dir="rtl"] {
|
|
border-left: 1px solid;
|
|
border-right: none;
|
|
}
|
|
.mdc-notched-outline__notch {
|
|
flex: 0 0 auto;
|
|
width: auto;
|
|
max-width: calc(100% - 12px * 2);
|
|
}
|
|
.mdc-notched-outline .mdc-floating-label {
|
|
display: inline-block;
|
|
position: relative;
|
|
top: 17px;
|
|
bottom: auto;
|
|
max-width: 100%;
|
|
}
|
|
.mdc-notched-outline .mdc-floating-label--float-above {
|
|
text-overflow: clip;
|
|
}
|
|
.mdc-notched-outline--upgraded .mdc-floating-label--float-above {
|
|
max-width: calc(100% / 0.75);
|
|
}
|
|
.mdc-notched-outline--notched .mdc-notched-outline__notch {
|
|
padding-left: 0;
|
|
padding-right: 8px;
|
|
border-top: none;
|
|
}
|
|
[dir="rtl"] .mdc-notched-outline--notched .mdc-notched-outline__notch,
|
|
.mdc-notched-outline--notched .mdc-notched-outline__notch[dir="rtl"] {
|
|
padding-left: 8px;
|
|
padding-right: 0;
|
|
}
|
|
.mdc-notched-outline--no-label .mdc-notched-outline__notch {
|
|
padding: 0;
|
|
}
|
|
@keyframes mdc-ripple-fg-radius-in {
|
|
from {
|
|
animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
transform: translate(var(--mdc-ripple-fg-translate-start, 0)) scale(1);
|
|
}
|
|
to {
|
|
transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
|
|
}
|
|
}
|
|
@keyframes mdc-ripple-fg-opacity-in {
|
|
from {
|
|
animation-timing-function: linear;
|
|
opacity: 0;
|
|
}
|
|
to {
|
|
opacity: var(--mdc-ripple-fg-opacity, 0);
|
|
}
|
|
}
|
|
@keyframes mdc-ripple-fg-opacity-out {
|
|
from {
|
|
animation-timing-function: linear;
|
|
opacity: var(--mdc-ripple-fg-opacity, 0);
|
|
}
|
|
to {
|
|
opacity: 0;
|
|
}
|
|
}
|
|
.mdc-ripple-surface--test-edge-var-bug {
|
|
--mdc-ripple-surface-test-edge-var: 1px solid #000;
|
|
visibility: hidden;
|
|
}
|
|
.mdc-ripple-surface--test-edge-var-bug::before {
|
|
border: var(--mdc-ripple-surface-test-edge-var);
|
|
}
|
|
.mdc-text-field-helper-text {
|
|
font-family: Roboto, sans-serif;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
-webkit-font-smoothing: antialiased;
|
|
font-size: 0.75rem;
|
|
line-height: 1.25rem;
|
|
font-weight: 400;
|
|
letter-spacing: 0.03333em;
|
|
text-decoration: inherit;
|
|
text-transform: inherit;
|
|
display: block;
|
|
margin-top: 0;
|
|
line-height: normal;
|
|
margin: 0;
|
|
transition: opacity 150ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
opacity: 0;
|
|
will-change: opacity;
|
|
}
|
|
.mdc-text-field-helper-text::before {
|
|
display: inline-block;
|
|
width: 0;
|
|
height: 16px;
|
|
content: "";
|
|
vertical-align: 0;
|
|
}
|
|
.mdc-text-field-helper-text--persistent {
|
|
transition: none;
|
|
opacity: 1;
|
|
will-change: initial;
|
|
}
|
|
.mdc-text-field-character-counter {
|
|
font-family: Roboto, sans-serif;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
-webkit-font-smoothing: antialiased;
|
|
font-size: 0.75rem;
|
|
line-height: 1.25rem;
|
|
font-weight: 400;
|
|
letter-spacing: 0.03333em;
|
|
text-decoration: inherit;
|
|
text-transform: inherit;
|
|
display: block;
|
|
margin-top: 0;
|
|
line-height: normal;
|
|
margin-left: auto;
|
|
margin-right: 0;
|
|
padding-left: 16px;
|
|
padding-right: 0;
|
|
white-space: nowrap;
|
|
}
|
|
.mdc-text-field-character-counter::before {
|
|
display: inline-block;
|
|
width: 0;
|
|
height: 16px;
|
|
content: "";
|
|
vertical-align: 0;
|
|
}
|
|
[dir="rtl"] .mdc-text-field-character-counter,
|
|
.mdc-text-field-character-counter[dir="rtl"] {
|
|
margin-left: 0;
|
|
margin-right: auto;
|
|
}
|
|
[dir="rtl"] .mdc-text-field-character-counter,
|
|
.mdc-text-field-character-counter[dir="rtl"] {
|
|
padding-left: 0;
|
|
padding-right: 16px;
|
|
}
|
|
.mdc-text-field--with-leading-icon .mdc-text-field__icon,
|
|
.mdc-text-field--with-trailing-icon .mdc-text-field__icon {
|
|
position: absolute;
|
|
bottom: 16px;
|
|
cursor: pointer;
|
|
}
|
|
.mdc-text-field__icon:not([tabindex]),
|
|
.mdc-text-field__icon[tabindex="-1"] {
|
|
cursor: default;
|
|
pointer-events: none;
|
|
}
|
|
.mdc-text-field {
|
|
--mdc-ripple-fg-size: 0;
|
|
--mdc-ripple-left: 0;
|
|
--mdc-ripple-top: 0;
|
|
--mdc-ripple-fg-scale: 1;
|
|
--mdc-ripple-fg-translate-end: 0;
|
|
--mdc-ripple-fg-translate-start: 0;
|
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
border-radius: 4px 4px 0 0;
|
|
display: inline-flex;
|
|
position: relative;
|
|
box-sizing: border-box;
|
|
height: 56px;
|
|
overflow: hidden;
|
|
will-change: opacity, transform, color;
|
|
}
|
|
.mdc-text-field::before,
|
|
.mdc-text-field::after {
|
|
position: absolute;
|
|
border-radius: 50%;
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
content: "";
|
|
}
|
|
.mdc-text-field::before {
|
|
transition: opacity 15ms linear, background-color 15ms linear;
|
|
z-index: 1;
|
|
}
|
|
.mdc-text-field.mdc-ripple-upgraded::before {
|
|
transform: scale(var(--mdc-ripple-fg-scale, 1));
|
|
}
|
|
.mdc-text-field.mdc-ripple-upgraded::after {
|
|
top: 0;
|
|
left: 0;
|
|
transform: scale(0);
|
|
transform-origin: center center;
|
|
}
|
|
.mdc-text-field.mdc-ripple-upgraded--unbounded::after {
|
|
top: var(--mdc-ripple-top, 0);
|
|
left: var(--mdc-ripple-left, 0);
|
|
}
|
|
.mdc-text-field.mdc-ripple-upgraded--foreground-activation::after {
|
|
animation: mdc-ripple-fg-radius-in 225ms forwards, mdc-ripple-fg-opacity-in 75ms forwards;
|
|
}
|
|
.mdc-text-field.mdc-ripple-upgraded--foreground-deactivation::after {
|
|
animation: mdc-ripple-fg-opacity-out 150ms;
|
|
transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
|
|
}
|
|
.mdc-text-field::before,
|
|
.mdc-text-field::after {
|
|
background-color: rgba(0, 0, 0, 0.87);
|
|
}
|
|
.mdc-text-field:hover::before {
|
|
opacity: 0.04;
|
|
}
|
|
.mdc-text-field:not(.mdc-ripple-upgraded):focus::before,
|
|
.mdc-text-field.mdc-ripple-upgraded--background-focused::before {
|
|
transition-duration: 75ms;
|
|
opacity: 0.12;
|
|
}
|
|
.mdc-text-field::before,
|
|
.mdc-text-field::after {
|
|
top: calc(50% - 100%);
|
|
left: calc(50% - 100%);
|
|
width: 200%;
|
|
height: 200%;
|
|
}
|
|
.mdc-text-field.mdc-ripple-upgraded::after {
|
|
width: var(--mdc-ripple-fg-size, 100%);
|
|
height: var(--mdc-ripple-fg-size, 100%);
|
|
}
|
|
.mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label {
|
|
color: rgba(0, 0, 0, 0.6);
|
|
}
|
|
.mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input {
|
|
color: rgba(0, 0, 0, 0.87);
|
|
}
|
|
.mdc-text-field .mdc-text-field__input {
|
|
caret-color: #6200ee;
|
|
caret-color: var(--mdc-theme-primary, #6200ee);
|
|
}
|
|
.mdc-text-field:not(.mdc-text-field--disabled):not(.mdc-text-field--outlined):not(.mdc-text-field--textarea)
|
|
.mdc-text-field__input {
|
|
border-bottom-color: rgba(0, 0, 0, 0.42);
|
|
}
|
|
.mdc-text-field:not(.mdc-text-field--disabled):not(.mdc-text-field--outlined):not(.mdc-text-field--textarea)
|
|
.mdc-text-field__input:hover {
|
|
border-bottom-color: rgba(0, 0, 0, 0.87);
|
|
}
|
|
.mdc-text-field .mdc-line-ripple {
|
|
background-color: #6200ee;
|
|
background-color: var(--mdc-theme-primary, #6200ee);
|
|
}
|
|
.mdc-text-field:not(.mdc-text-field--disabled):not(.mdc-text-field--textarea) {
|
|
border-bottom-color: rgba(0, 0, 0, 0.12);
|
|
}
|
|
.mdc-text-field:not(.mdc-text-field--disabled) + .mdc-text-field-helper-line .mdc-text-field-helper-text {
|
|
color: rgba(0, 0, 0, 0.6);
|
|
}
|
|
.mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field-character-counter,
|
|
.mdc-text-field:not(.mdc-text-field--disabled) + .mdc-text-field-helper-line .mdc-text-field-character-counter {
|
|
color: rgba(0, 0, 0, 0.6);
|
|
}
|
|
.mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__icon {
|
|
color: rgba(0, 0, 0, 0.54);
|
|
}
|
|
.mdc-text-field:not(.mdc-text-field--disabled) {
|
|
background-color: #f5f5f5;
|
|
}
|
|
.mdc-text-field .mdc-floating-label {
|
|
left: 16px;
|
|
right: initial;
|
|
top: 18px;
|
|
pointer-events: none;
|
|
}
|
|
[dir="rtl"] .mdc-text-field .mdc-floating-label,
|
|
.mdc-text-field .mdc-floating-label[dir="rtl"] {
|
|
left: initial;
|
|
right: 16px;
|
|
}
|
|
.mdc-text-field--textarea .mdc-floating-label {
|
|
left: 4px;
|
|
right: initial;
|
|
}
|
|
[dir="rtl"] .mdc-text-field--textarea .mdc-floating-label,
|
|
.mdc-text-field--textarea .mdc-floating-label[dir="rtl"] {
|
|
left: initial;
|
|
right: 4px;
|
|
}
|
|
.mdc-text-field--outlined .mdc-floating-label {
|
|
left: 4px;
|
|
right: initial;
|
|
top: 17px;
|
|
}
|
|
[dir="rtl"] .mdc-text-field--outlined .mdc-floating-label,
|
|
.mdc-text-field--outlined .mdc-floating-label[dir="rtl"] {
|
|
left: initial;
|
|
right: 4px;
|
|
}
|
|
.mdc-text-field--outlined--with-leading-icon .mdc-floating-label {
|
|
left: 36px;
|
|
right: initial;
|
|
}
|
|
[dir="rtl"] .mdc-text-field--outlined--with-leading-icon .mdc-floating-label,
|
|
.mdc-text-field--outlined--with-leading-icon .mdc-floating-label[dir="rtl"] {
|
|
left: initial;
|
|
right: 36px;
|
|
}
|
|
.mdc-text-field--outlined--with-leading-icon .mdc-floating-label--float-above {
|
|
left: 40px;
|
|
right: initial;
|
|
}
|
|
[dir="rtl"] .mdc-text-field--outlined--with-leading-icon .mdc-floating-label--float-above,
|
|
.mdc-text-field--outlined--with-leading-icon .mdc-floating-label--float-above[dir="rtl"] {
|
|
left: initial;
|
|
right: 40px;
|
|
}
|
|
.mdc-text-field__input {
|
|
font-family: Roboto, sans-serif;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
-webkit-font-smoothing: antialiased;
|
|
font-size: 1rem;
|
|
line-height: 1.75rem;
|
|
font-weight: 400;
|
|
letter-spacing: 0.00937em;
|
|
text-decoration: inherit;
|
|
text-transform: inherit;
|
|
align-self: flex-end;
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
height: 100%;
|
|
padding: 20px 16px 6px;
|
|
transition: opacity 150ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
border: none;
|
|
border-bottom: 1px solid;
|
|
border-radius: 0;
|
|
background: none;
|
|
appearance: none;
|
|
}
|
|
.mdc-text-field__input::placeholder {
|
|
transition: opacity 67ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
opacity: 0;
|
|
color: rgba(0, 0, 0, 0.54);
|
|
}
|
|
.mdc-text-field__input:-ms-input-placeholder {
|
|
color: rgba(0, 0, 0, 0.54) !important;
|
|
}
|
|
.mdc-text-field--fullwidth .mdc-text-field__input::placeholder,
|
|
.mdc-text-field--no-label .mdc-text-field__input::placeholder,
|
|
.mdc-text-field--focused .mdc-text-field__input::placeholder {
|
|
transition-delay: 40ms;
|
|
transition-duration: 110ms;
|
|
opacity: 1;
|
|
}
|
|
.mdc-text-field__input:focus {
|
|
outline: none;
|
|
}
|
|
.mdc-text-field__input:invalid {
|
|
box-shadow: none;
|
|
}
|
|
.mdc-text-field__input:-webkit-autofill {
|
|
z-index: auto !important;
|
|
}
|
|
.mdc-text-field--no-label:not(.mdc-text-field--outlined):not(.mdc-text-field--textarea) .mdc-text-field__input {
|
|
padding-top: 16px;
|
|
padding-bottom: 16px;
|
|
}
|
|
.mdc-text-field__input:-webkit-autofill + .mdc-floating-label {
|
|
transform: translateY(-50%) scale(0.75);
|
|
cursor: auto;
|
|
}
|
|
.mdc-text-field--outlined {
|
|
border: none;
|
|
overflow: visible;
|
|
}
|
|
.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__leading,
|
|
.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__notch,
|
|
.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__trailing {
|
|
border-color: rgba(0, 0, 0, 0.38);
|
|
}
|
|
.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused)
|
|
.mdc-text-field__input:hover
|
|
~ .mdc-notched-outline
|
|
.mdc-notched-outline__leading,
|
|
.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused)
|
|
.mdc-text-field__input:hover
|
|
~ .mdc-notched-outline
|
|
.mdc-notched-outline__notch,
|
|
.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused)
|
|
.mdc-text-field__input:hover
|
|
~ .mdc-notched-outline
|
|
.mdc-notched-outline__trailing,
|
|
.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused)
|
|
.mdc-text-field__icon:hover
|
|
~ .mdc-notched-outline
|
|
.mdc-notched-outline__leading,
|
|
.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused)
|
|
.mdc-text-field__icon:hover
|
|
~ .mdc-notched-outline
|
|
.mdc-notched-outline__notch,
|
|
.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused)
|
|
.mdc-text-field__icon:hover
|
|
~ .mdc-notched-outline
|
|
.mdc-notched-outline__trailing {
|
|
border-color: rgba(0, 0, 0, 0.87);
|
|
}
|
|
.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__leading,
|
|
.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__notch,
|
|
.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__trailing {
|
|
border-color: #6200ee;
|
|
border-color: var(--mdc-theme-primary, #6200ee);
|
|
}
|
|
.mdc-text-field--outlined .mdc-floating-label--shake {
|
|
animation: mdc-floating-label-shake-float-above-text-field-outlined 250ms 1;
|
|
}
|
|
.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading {
|
|
border-radius: 4px 0 0 4px;
|
|
}
|
|
[dir="rtl"] .mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading,
|
|
.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading[dir="rtl"] {
|
|
border-radius: 0 4px 4px 0;
|
|
}
|
|
.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing {
|
|
border-radius: 0 4px 4px 0;
|
|
}
|
|
[dir="rtl"] .mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing,
|
|
.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing[dir="rtl"] {
|
|
border-radius: 4px 0 0 4px;
|
|
}
|
|
.mdc-text-field--outlined .mdc-floating-label--float-above {
|
|
transform: translateY(-144%) scale(1);
|
|
}
|
|
.mdc-text-field--outlined .mdc-floating-label--float-above {
|
|
font-size: 0.75rem;
|
|
}
|
|
.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,
|
|
.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above {
|
|
transform: translateY(-130%) scale(0.75);
|
|
}
|
|
.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,
|
|
.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above {
|
|
font-size: 1rem;
|
|
}
|
|
.mdc-text-field--outlined::before,
|
|
.mdc-text-field--outlined::after {
|
|
content: none;
|
|
}
|
|
.mdc-text-field--outlined:not(.mdc-text-field--disabled) {
|
|
background-color: rgba(0, 0, 0, 0);
|
|
}
|
|
.mdc-text-field--outlined .mdc-text-field__input {
|
|
display: flex;
|
|
padding: 12px 16px 14px;
|
|
border: none !important;
|
|
background-color: transparent;
|
|
z-index: 1;
|
|
}
|
|
.mdc-text-field--outlined .mdc-text-field__icon {
|
|
z-index: 2;
|
|
}
|
|
.mdc-text-field--outlined.mdc-text-field--focused .mdc-notched-outline__leading,
|
|
.mdc-text-field--outlined.mdc-text-field--focused .mdc-notched-outline__notch,
|
|
.mdc-text-field--outlined.mdc-text-field--focused .mdc-notched-outline__trailing {
|
|
border-width: 2px;
|
|
}
|
|
.mdc-text-field--outlined.mdc-text-field--disabled {
|
|
background-color: rgba(0, 0, 0, 0);
|
|
}
|
|
.mdc-text-field--outlined.mdc-text-field--disabled .mdc-notched-outline__leading,
|
|
.mdc-text-field--outlined.mdc-text-field--disabled .mdc-notched-outline__notch,
|
|
.mdc-text-field--outlined.mdc-text-field--disabled .mdc-notched-outline__trailing {
|
|
border-color: rgba(0, 0, 0, 0.06);
|
|
}
|
|
.mdc-text-field--outlined.mdc-text-field--disabled .mdc-text-field__input {
|
|
border-bottom: none;
|
|
}
|
|
.mdc-text-field--outlined.mdc-text-field--dense {
|
|
height: 48px;
|
|
}
|
|
.mdc-text-field--outlined.mdc-text-field--dense .mdc-floating-label--float-above {
|
|
transform: translateY(-134%) scale(1);
|
|
}
|
|
.mdc-text-field--outlined.mdc-text-field--dense .mdc-floating-label--float-above {
|
|
font-size: 0.8rem;
|
|
}
|
|
.mdc-text-field--outlined.mdc-text-field--dense.mdc-notched-outline--upgraded .mdc-floating-label--float-above,
|
|
.mdc-text-field--outlined.mdc-text-field--dense .mdc-notched-outline--upgraded .mdc-floating-label--float-above {
|
|
transform: translateY(-120%) scale(0.8);
|
|
}
|
|
.mdc-text-field--outlined.mdc-text-field--dense.mdc-notched-outline--upgraded .mdc-floating-label--float-above,
|
|
.mdc-text-field--outlined.mdc-text-field--dense .mdc-notched-outline--upgraded .mdc-floating-label--float-above {
|
|
font-size: 1rem;
|
|
}
|
|
.mdc-text-field--outlined.mdc-text-field--dense .mdc-floating-label--shake {
|
|
animation: mdc-floating-label-shake-float-above-text-field-outlined-dense 250ms 1;
|
|
}
|
|
.mdc-text-field--outlined.mdc-text-field--dense .mdc-text-field__input {
|
|
padding: 12px 12px 7px;
|
|
}
|
|
.mdc-text-field--outlined.mdc-text-field--dense .mdc-floating-label {
|
|
top: 14px;
|
|
}
|
|
.mdc-text-field--outlined.mdc-text-field--dense .mdc-text-field__icon {
|
|
top: 12px;
|
|
}
|
|
.mdc-text-field--with-leading-icon .mdc-text-field__icon {
|
|
left: 16px;
|
|
right: initial;
|
|
}
|
|
[dir="rtl"] .mdc-text-field--with-leading-icon .mdc-text-field__icon,
|
|
.mdc-text-field--with-leading-icon .mdc-text-field__icon[dir="rtl"] {
|
|
left: initial;
|
|
right: 16px;
|
|
}
|
|
.mdc-text-field--with-leading-icon .mdc-text-field__input {
|
|
padding-left: 48px;
|
|
padding-right: 16px;
|
|
}
|
|
[dir="rtl"] .mdc-text-field--with-leading-icon .mdc-text-field__input,
|
|
.mdc-text-field--with-leading-icon .mdc-text-field__input[dir="rtl"] {
|
|
padding-left: 16px;
|
|
padding-right: 48px;
|
|
}
|
|
.mdc-text-field--with-leading-icon .mdc-floating-label {
|
|
left: 48px;
|
|
right: initial;
|
|
}
|
|
[dir="rtl"] .mdc-text-field--with-leading-icon .mdc-floating-label,
|
|
.mdc-text-field--with-leading-icon .mdc-floating-label[dir="rtl"] {
|
|
left: initial;
|
|
right: 48px;
|
|
}
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-text-field__icon {
|
|
left: 16px;
|
|
right: initial;
|
|
}
|
|
[dir="rtl"] .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-text-field__icon,
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-text-field__icon[dir="rtl"] {
|
|
left: initial;
|
|
right: 16px;
|
|
}
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-text-field__input {
|
|
padding-left: 48px;
|
|
padding-right: 16px;
|
|
}
|
|
[dir="rtl"] .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-text-field__input,
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-text-field__input[dir="rtl"] {
|
|
padding-left: 16px;
|
|
padding-right: 48px;
|
|
}
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--float-above {
|
|
transform: translateY(-144%) translateX(-32px) scale(1);
|
|
}
|
|
[dir="rtl"] .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--float-above,
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--float-above[dir="rtl"] {
|
|
transform: translateY(-144%) translateX(32px) scale(1);
|
|
}
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--float-above {
|
|
font-size: 0.75rem;
|
|
}
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-notched-outline--upgraded
|
|
.mdc-floating-label--float-above,
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--outlined
|
|
.mdc-notched-outline--upgraded
|
|
.mdc-floating-label--float-above {
|
|
transform: translateY(-130%) translateX(-32px) scale(0.75);
|
|
}
|
|
[dir="rtl"]
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-notched-outline--upgraded
|
|
.mdc-floating-label--float-above,
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-notched-outline--upgraded
|
|
.mdc-floating-label--float-above[dir="rtl"],
|
|
[dir="rtl"]
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--outlined
|
|
.mdc-notched-outline--upgraded
|
|
.mdc-floating-label--float-above,
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--outlined
|
|
.mdc-notched-outline--upgraded
|
|
.mdc-floating-label--float-above[dir="rtl"] {
|
|
transform: translateY(-130%) translateX(32px) scale(0.75);
|
|
}
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-notched-outline--upgraded
|
|
.mdc-floating-label--float-above,
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--outlined
|
|
.mdc-notched-outline--upgraded
|
|
.mdc-floating-label--float-above {
|
|
font-size: 1rem;
|
|
}
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--shake {
|
|
animation: mdc-floating-label-shake-float-above-text-field-outlined-leading-icon 250ms 1;
|
|
}
|
|
[dir="rtl"] .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--shake,
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--outlined[dir="rtl"] .mdc-floating-label--shake {
|
|
animation: mdc-floating-label-shake-float-above-text-field-outlined-leading-icon-rtl 250ms 1;
|
|
}
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label {
|
|
left: 36px;
|
|
right: initial;
|
|
}
|
|
[dir="rtl"] .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label,
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label[dir="rtl"] {
|
|
left: initial;
|
|
right: 36px;
|
|
}
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-text-field--dense .mdc-floating-label--float-above {
|
|
transform: translateY(-134%) translateX(-21px) scale(1);
|
|
}
|
|
[dir="rtl"]
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-text-field--dense
|
|
.mdc-floating-label--float-above,
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-text-field--dense
|
|
.mdc-floating-label--float-above[dir="rtl"] {
|
|
transform: translateY(-134%) translateX(21px) scale(1);
|
|
}
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-text-field--dense .mdc-floating-label--float-above {
|
|
font-size: 0.8rem;
|
|
}
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-text-field--dense.mdc-notched-outline--upgraded
|
|
.mdc-floating-label--float-above,
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-text-field--dense
|
|
.mdc-notched-outline--upgraded
|
|
.mdc-floating-label--float-above {
|
|
transform: translateY(-120%) translateX(-21px) scale(0.8);
|
|
}
|
|
[dir="rtl"]
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-text-field--dense.mdc-notched-outline--upgraded
|
|
.mdc-floating-label--float-above,
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-text-field--dense.mdc-notched-outline--upgraded
|
|
.mdc-floating-label--float-above[dir="rtl"],
|
|
[dir="rtl"]
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-text-field--dense
|
|
.mdc-notched-outline--upgraded
|
|
.mdc-floating-label--float-above,
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-text-field--dense
|
|
.mdc-notched-outline--upgraded
|
|
.mdc-floating-label--float-above[dir="rtl"] {
|
|
transform: translateY(-120%) translateX(21px) scale(0.8);
|
|
}
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-text-field--dense.mdc-notched-outline--upgraded
|
|
.mdc-floating-label--float-above,
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-text-field--dense
|
|
.mdc-notched-outline--upgraded
|
|
.mdc-floating-label--float-above {
|
|
font-size: 1rem;
|
|
}
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-text-field--dense .mdc-floating-label--shake {
|
|
animation: mdc-floating-label-shake-float-above-text-field-outlined-leading-icon-dense 250ms 1;
|
|
}
|
|
[dir="rtl"]
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-text-field--dense
|
|
.mdc-floating-label--shake,
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-text-field--dense[dir="rtl"]
|
|
.mdc-floating-label--shake {
|
|
animation: mdc-floating-label-shake-float-above-text-field-outlined-leading-icon-dense-rtl 250ms 1;
|
|
}
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-text-field--dense .mdc-floating-label {
|
|
left: 32px;
|
|
right: initial;
|
|
}
|
|
[dir="rtl"] .mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-text-field--dense .mdc-floating-label,
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-text-field--dense .mdc-floating-label[dir="rtl"] {
|
|
left: initial;
|
|
right: 32px;
|
|
}
|
|
.mdc-text-field--with-trailing-icon .mdc-text-field__icon {
|
|
left: initial;
|
|
right: 12px;
|
|
}
|
|
[dir="rtl"] .mdc-text-field--with-trailing-icon .mdc-text-field__icon,
|
|
.mdc-text-field--with-trailing-icon .mdc-text-field__icon[dir="rtl"] {
|
|
left: 12px;
|
|
right: initial;
|
|
}
|
|
.mdc-text-field--with-trailing-icon .mdc-text-field__input {
|
|
padding-left: 16px;
|
|
padding-right: 48px;
|
|
}
|
|
[dir="rtl"] .mdc-text-field--with-trailing-icon .mdc-text-field__input,
|
|
.mdc-text-field--with-trailing-icon .mdc-text-field__input[dir="rtl"] {
|
|
padding-left: 48px;
|
|
padding-right: 16px;
|
|
}
|
|
.mdc-text-field--with-trailing-icon.mdc-text-field--outlined .mdc-text-field__icon {
|
|
left: initial;
|
|
right: 16px;
|
|
}
|
|
[dir="rtl"] .mdc-text-field--with-trailing-icon.mdc-text-field--outlined .mdc-text-field__icon,
|
|
.mdc-text-field--with-trailing-icon.mdc-text-field--outlined .mdc-text-field__icon[dir="rtl"] {
|
|
left: 16px;
|
|
right: initial;
|
|
}
|
|
.mdc-text-field--with-trailing-icon.mdc-text-field--outlined .mdc-text-field__input {
|
|
padding-left: 16px;
|
|
padding-right: 48px;
|
|
}
|
|
[dir="rtl"] .mdc-text-field--with-trailing-icon.mdc-text-field--outlined .mdc-text-field__input,
|
|
.mdc-text-field--with-trailing-icon.mdc-text-field--outlined .mdc-text-field__input[dir="rtl"] {
|
|
padding-left: 48px;
|
|
padding-right: 16px;
|
|
}
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon .mdc-text-field__icon {
|
|
left: 16px;
|
|
right: auto;
|
|
}
|
|
[dir="rtl"] .mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon .mdc-text-field__icon,
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon .mdc-text-field__icon[dir="rtl"] {
|
|
left: auto;
|
|
right: 16px;
|
|
}
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon .mdc-text-field__icon ~ .mdc-text-field__icon {
|
|
right: 12px;
|
|
left: auto;
|
|
}
|
|
[dir="rtl"]
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon
|
|
.mdc-text-field__icon
|
|
~ .mdc-text-field__icon,
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon
|
|
.mdc-text-field__icon
|
|
~ .mdc-text-field__icon[dir="rtl"] {
|
|
right: auto;
|
|
left: 12px;
|
|
}
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon .mdc-text-field__input {
|
|
padding-left: 48px;
|
|
padding-right: 48px;
|
|
}
|
|
[dir="rtl"] .mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon .mdc-text-field__input,
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon .mdc-text-field__input[dir="rtl"] {
|
|
padding-left: 48px;
|
|
padding-right: 48px;
|
|
}
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-text-field__icon,
|
|
.mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-text-field__icon {
|
|
bottom: 16px;
|
|
transform: scale(0.8);
|
|
}
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-text-field__icon {
|
|
left: 12px;
|
|
right: initial;
|
|
}
|
|
[dir="rtl"] .mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-text-field__icon,
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-text-field__icon[dir="rtl"] {
|
|
left: initial;
|
|
right: 12px;
|
|
}
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-text-field__input {
|
|
padding-left: 44px;
|
|
padding-right: 16px;
|
|
}
|
|
[dir="rtl"] .mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-text-field__input,
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-text-field__input[dir="rtl"] {
|
|
padding-left: 16px;
|
|
padding-right: 44px;
|
|
}
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-floating-label {
|
|
left: 44px;
|
|
right: initial;
|
|
}
|
|
[dir="rtl"] .mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-floating-label,
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-floating-label[dir="rtl"] {
|
|
left: initial;
|
|
right: 44px;
|
|
}
|
|
.mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-text-field__icon {
|
|
left: initial;
|
|
right: 12px;
|
|
}
|
|
[dir="rtl"] .mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-text-field__icon,
|
|
.mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-text-field__icon[dir="rtl"] {
|
|
left: 12px;
|
|
right: initial;
|
|
}
|
|
.mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-text-field__input {
|
|
padding-left: 16px;
|
|
padding-right: 44px;
|
|
}
|
|
[dir="rtl"] .mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-text-field__input,
|
|
.mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-text-field__input[dir="rtl"] {
|
|
padding-left: 44px;
|
|
padding-right: 16px;
|
|
}
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-text-field__icon {
|
|
left: 12px;
|
|
right: auto;
|
|
}
|
|
[dir="rtl"]
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.mdc-text-field--dense
|
|
.mdc-text-field__icon,
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.mdc-text-field--dense
|
|
.mdc-text-field__icon[dir="rtl"] {
|
|
left: auto;
|
|
right: 12px;
|
|
}
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.mdc-text-field--dense
|
|
.mdc-text-field__icon
|
|
~ .mdc-text-field__icon {
|
|
right: 12px;
|
|
left: auto;
|
|
}
|
|
[dir="rtl"]
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.mdc-text-field--dense
|
|
.mdc-text-field__icon
|
|
~ .mdc-text-field__icon,
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.mdc-text-field--dense
|
|
.mdc-text-field__icon
|
|
~ .mdc-text-field__icon[dir="rtl"] {
|
|
right: auto;
|
|
left: 12px;
|
|
}
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-text-field__input {
|
|
padding-left: 44px;
|
|
padding-right: 44px;
|
|
}
|
|
[dir="rtl"]
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.mdc-text-field--dense
|
|
.mdc-text-field__input,
|
|
.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.mdc-text-field--dense
|
|
.mdc-text-field__input[dir="rtl"] {
|
|
padding-left: 44px;
|
|
padding-right: 44px;
|
|
}
|
|
.mdc-text-field--dense .mdc-floating-label--float-above {
|
|
transform: translateY(-70%) scale(0.8);
|
|
}
|
|
.mdc-text-field--dense .mdc-floating-label--shake {
|
|
animation: mdc-floating-label-shake-float-above-text-field-dense 250ms 1;
|
|
}
|
|
.mdc-text-field--dense .mdc-text-field__input {
|
|
padding: 12px 12px 0;
|
|
}
|
|
.mdc-text-field--dense .mdc-floating-label {
|
|
font-size: 0.813rem;
|
|
}
|
|
.mdc-text-field--dense .mdc-floating-label--float-above {
|
|
font-size: 0.813rem;
|
|
}
|
|
.mdc-text-field__input:required ~ .mdc-floating-label::after,
|
|
.mdc-text-field__input:required ~ .mdc-notched-outline .mdc-floating-label::after {
|
|
margin-left: 1px;
|
|
content: "*";
|
|
}
|
|
.mdc-text-field--textarea {
|
|
display: inline-flex;
|
|
width: auto;
|
|
height: auto;
|
|
transition: none;
|
|
overflow: visible;
|
|
}
|
|
.mdc-text-field--textarea:not(.mdc-text-field--disabled) .mdc-notched-outline__leading,
|
|
.mdc-text-field--textarea:not(.mdc-text-field--disabled) .mdc-notched-outline__notch,
|
|
.mdc-text-field--textarea:not(.mdc-text-field--disabled) .mdc-notched-outline__trailing {
|
|
border-color: rgba(0, 0, 0, 0.38);
|
|
}
|
|
.mdc-text-field--textarea:not(.mdc-text-field--disabled):not(.mdc-text-field--focused)
|
|
.mdc-text-field__input:hover
|
|
~ .mdc-notched-outline
|
|
.mdc-notched-outline__leading,
|
|
.mdc-text-field--textarea:not(.mdc-text-field--disabled):not(.mdc-text-field--focused)
|
|
.mdc-text-field__input:hover
|
|
~ .mdc-notched-outline
|
|
.mdc-notched-outline__notch,
|
|
.mdc-text-field--textarea:not(.mdc-text-field--disabled):not(.mdc-text-field--focused)
|
|
.mdc-text-field__input:hover
|
|
~ .mdc-notched-outline
|
|
.mdc-notched-outline__trailing,
|
|
.mdc-text-field--textarea:not(.mdc-text-field--disabled):not(.mdc-text-field--focused)
|
|
.mdc-text-field__icon:hover
|
|
~ .mdc-notched-outline
|
|
.mdc-notched-outline__leading,
|
|
.mdc-text-field--textarea:not(.mdc-text-field--disabled):not(.mdc-text-field--focused)
|
|
.mdc-text-field__icon:hover
|
|
~ .mdc-notched-outline
|
|
.mdc-notched-outline__notch,
|
|
.mdc-text-field--textarea:not(.mdc-text-field--disabled):not(.mdc-text-field--focused)
|
|
.mdc-text-field__icon:hover
|
|
~ .mdc-notched-outline
|
|
.mdc-notched-outline__trailing {
|
|
border-color: rgba(0, 0, 0, 0.87);
|
|
}
|
|
.mdc-text-field--textarea:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__leading,
|
|
.mdc-text-field--textarea:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__notch,
|
|
.mdc-text-field--textarea:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__trailing {
|
|
border-color: #6200ee;
|
|
border-color: var(--mdc-theme-primary, #6200ee);
|
|
}
|
|
.mdc-text-field--textarea .mdc-floating-label--shake {
|
|
animation: mdc-floating-label-shake-float-above-text-field-outlined 250ms 1;
|
|
}
|
|
.mdc-text-field--textarea .mdc-notched-outline .mdc-notched-outline__leading {
|
|
border-radius: 4px 0 0 4px;
|
|
}
|
|
[dir="rtl"] .mdc-text-field--textarea .mdc-notched-outline .mdc-notched-outline__leading,
|
|
.mdc-text-field--textarea .mdc-notched-outline .mdc-notched-outline__leading[dir="rtl"] {
|
|
border-radius: 0 4px 4px 0;
|
|
}
|
|
.mdc-text-field--textarea .mdc-notched-outline .mdc-notched-outline__trailing {
|
|
border-radius: 0 4px 4px 0;
|
|
}
|
|
[dir="rtl"] .mdc-text-field--textarea .mdc-notched-outline .mdc-notched-outline__trailing,
|
|
.mdc-text-field--textarea .mdc-notched-outline .mdc-notched-outline__trailing[dir="rtl"] {
|
|
border-radius: 4px 0 0 4px;
|
|
}
|
|
.mdc-text-field--textarea::before,
|
|
.mdc-text-field--textarea::after {
|
|
content: none;
|
|
}
|
|
.mdc-text-field--textarea:not(.mdc-text-field--disabled) {
|
|
background-color: rgba(0, 0, 0, 0);
|
|
}
|
|
.mdc-text-field--textarea .mdc-floating-label--float-above {
|
|
transform: translateY(-144%) scale(1);
|
|
}
|
|
.mdc-text-field--textarea .mdc-floating-label--float-above {
|
|
font-size: 0.75rem;
|
|
}
|
|
.mdc-text-field--textarea.mdc-notched-outline--upgraded .mdc-floating-label--float-above,
|
|
.mdc-text-field--textarea .mdc-notched-outline--upgraded .mdc-floating-label--float-above {
|
|
transform: translateY(-130%) scale(0.75);
|
|
}
|
|
.mdc-text-field--textarea.mdc-notched-outline--upgraded .mdc-floating-label--float-above,
|
|
.mdc-text-field--textarea .mdc-notched-outline--upgraded .mdc-floating-label--float-above {
|
|
font-size: 1rem;
|
|
}
|
|
.mdc-text-field--textarea .mdc-text-field-character-counter {
|
|
left: initial;
|
|
right: 16px;
|
|
position: absolute;
|
|
bottom: 13px;
|
|
}
|
|
[dir="rtl"] .mdc-text-field--textarea .mdc-text-field-character-counter,
|
|
.mdc-text-field--textarea .mdc-text-field-character-counter[dir="rtl"] {
|
|
left: 16px;
|
|
right: initial;
|
|
}
|
|
.mdc-text-field--textarea .mdc-text-field__input {
|
|
align-self: auto;
|
|
box-sizing: border-box;
|
|
height: auto;
|
|
margin: 8px 1px 1px 0;
|
|
padding: 0 16px 16px;
|
|
border: none;
|
|
}
|
|
.mdc-text-field--textarea .mdc-text-field-character-counter + .mdc-text-field__input {
|
|
margin-bottom: 28px;
|
|
padding-bottom: 0;
|
|
}
|
|
.mdc-text-field--textarea .mdc-floating-label {
|
|
top: 17px;
|
|
bottom: auto;
|
|
width: auto;
|
|
pointer-events: none;
|
|
}
|
|
.mdc-text-field--textarea.mdc-text-field--focused .mdc-notched-outline__leading,
|
|
.mdc-text-field--textarea.mdc-text-field--focused .mdc-notched-outline__notch,
|
|
.mdc-text-field--textarea.mdc-text-field--focused .mdc-notched-outline__trailing {
|
|
border-width: 2px;
|
|
}
|
|
.mdc-text-field--fullwidth {
|
|
width: 100%;
|
|
}
|
|
.mdc-text-field--fullwidth:not(.mdc-text-field--textarea) {
|
|
display: block;
|
|
}
|
|
.mdc-text-field--fullwidth:not(.mdc-text-field--textarea)::before,
|
|
.mdc-text-field--fullwidth:not(.mdc-text-field--textarea)::after {
|
|
content: none;
|
|
}
|
|
.mdc-text-field--fullwidth:not(.mdc-text-field--textarea):not(.mdc-text-field--disabled) {
|
|
background-color: rgba(0, 0, 0, 0);
|
|
}
|
|
.mdc-text-field--fullwidth:not(.mdc-text-field--textarea) .mdc-text-field__input {
|
|
padding: 0;
|
|
}
|
|
.mdc-text-field--fullwidth.mdc-text-field--textarea .mdc-text-field__input {
|
|
resize: vertical;
|
|
}
|
|
.mdc-text-field--fullwidth.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--textarea) {
|
|
border-bottom-color: #b00020;
|
|
border-bottom-color: var(--mdc-theme-error, #b00020);
|
|
}
|
|
.mdc-text-field-helper-line {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
box-sizing: border-box;
|
|
}
|
|
.mdc-text-field--dense + .mdc-text-field-helper-line {
|
|
margin-bottom: 4px;
|
|
}
|
|
.mdc-text-field + .mdc-text-field-helper-line {
|
|
padding-right: 16px;
|
|
padding-left: 16px;
|
|
}
|
|
.mdc-form-field > .mdc-text-field + label {
|
|
align-self: flex-start;
|
|
}
|
|
.mdc-text-field--focused:not(.mdc-text-field--disabled) .mdc-floating-label {
|
|
color: rgba(98, 0, 238, 0.87);
|
|
}
|
|
.mdc-text-field--focused .mdc-text-field__input:required ~ .mdc-floating-label::after,
|
|
.mdc-text-field--focused .mdc-text-field__input:required ~ .mdc-notched-outline .mdc-floating-label::after {
|
|
color: rgba(98, 0, 238, 0.87);
|
|
}
|
|
.mdc-text-field--focused
|
|
+ .mdc-text-field-helper-line
|
|
.mdc-text-field-helper-text:not(.mdc-text-field-helper-text--validation-msg) {
|
|
opacity: 1;
|
|
}
|
|
.mdc-text-field--textarea.mdc-text-field--focused:not(.mdc-text-field--disabled) .mdc-notched-outline__leading,
|
|
.mdc-text-field--textarea.mdc-text-field--focused:not(.mdc-text-field--disabled) .mdc-notched-outline__notch,
|
|
.mdc-text-field--textarea.mdc-text-field--focused:not(.mdc-text-field--disabled) .mdc-notched-outline__trailing {
|
|
border-color: #6200ee;
|
|
border-color: var(--mdc-theme-primary, #6200ee);
|
|
}
|
|
.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--outlined):not(.mdc-text-field--textarea)
|
|
.mdc-text-field__input {
|
|
border-bottom-color: #b00020;
|
|
border-bottom-color: var(--mdc-theme-error, #b00020);
|
|
}
|
|
.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--outlined):not(.mdc-text-field--textarea)
|
|
.mdc-text-field__input:hover {
|
|
border-bottom-color: #b00020;
|
|
border-bottom-color: var(--mdc-theme-error, #b00020);
|
|
}
|
|
.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-line-ripple {
|
|
background-color: #b00020;
|
|
background-color: var(--mdc-theme-error, #b00020);
|
|
}
|
|
.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-floating-label {
|
|
color: #b00020;
|
|
color: var(--mdc-theme-error, #b00020);
|
|
}
|
|
.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--invalid
|
|
+ .mdc-text-field-helper-line
|
|
.mdc-text-field-helper-text--validation-msg {
|
|
color: #b00020;
|
|
color: var(--mdc-theme-error, #b00020);
|
|
}
|
|
.mdc-text-field--invalid .mdc-text-field__input {
|
|
caret-color: #b00020;
|
|
caret-color: var(--mdc-theme-error, #b00020);
|
|
}
|
|
.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-text-field__input:required ~ .mdc-floating-label::after,
|
|
.mdc-text-field--invalid:not(.mdc-text-field--disabled)
|
|
.mdc-text-field__input:required
|
|
~ .mdc-notched-outline
|
|
.mdc-floating-label::after {
|
|
color: #b00020;
|
|
color: var(--mdc-theme-error, #b00020);
|
|
}
|
|
.mdc-text-field--invalid.mdc-text-field--with-trailing-icon:not(.mdc-text-field--with-leading-icon):not(.mdc-text-field--disabled)
|
|
.mdc-text-field__icon {
|
|
color: #b00020;
|
|
color: var(--mdc-theme-error, #b00020);
|
|
}
|
|
.mdc-text-field--invalid.mdc-text-field--with-trailing-icon.mdc-text-field--with-leading-icon:not(.mdc-text-field--disabled)
|
|
.mdc-text-field__icon
|
|
~ .mdc-text-field__icon {
|
|
color: #b00020;
|
|
color: var(--mdc-theme-error, #b00020);
|
|
}
|
|
.mdc-text-field--invalid + .mdc-text-field-helper-line .mdc-text-field-helper-text--validation-msg {
|
|
opacity: 1;
|
|
}
|
|
.mdc-text-field--textarea.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-notched-outline__leading,
|
|
.mdc-text-field--textarea.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-notched-outline__notch,
|
|
.mdc-text-field--textarea.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-notched-outline__trailing {
|
|
border-color: #b00020;
|
|
border-color: var(--mdc-theme-error, #b00020);
|
|
}
|
|
.mdc-text-field--textarea.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused)
|
|
.mdc-text-field__input:hover
|
|
~ .mdc-notched-outline
|
|
.mdc-notched-outline__leading,
|
|
.mdc-text-field--textarea.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused)
|
|
.mdc-text-field__input:hover
|
|
~ .mdc-notched-outline
|
|
.mdc-notched-outline__notch,
|
|
.mdc-text-field--textarea.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused)
|
|
.mdc-text-field__input:hover
|
|
~ .mdc-notched-outline
|
|
.mdc-notched-outline__trailing,
|
|
.mdc-text-field--textarea.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused)
|
|
.mdc-text-field__icon:hover
|
|
~ .mdc-notched-outline
|
|
.mdc-notched-outline__leading,
|
|
.mdc-text-field--textarea.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused)
|
|
.mdc-text-field__icon:hover
|
|
~ .mdc-notched-outline
|
|
.mdc-notched-outline__notch,
|
|
.mdc-text-field--textarea.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused)
|
|
.mdc-text-field__icon:hover
|
|
~ .mdc-notched-outline
|
|
.mdc-notched-outline__trailing {
|
|
border-color: #b00020;
|
|
border-color: var(--mdc-theme-error, #b00020);
|
|
}
|
|
.mdc-text-field--textarea.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused
|
|
.mdc-notched-outline__leading,
|
|
.mdc-text-field--textarea.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused
|
|
.mdc-notched-outline__notch,
|
|
.mdc-text-field--textarea.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused
|
|
.mdc-notched-outline__trailing {
|
|
border-color: #b00020;
|
|
border-color: var(--mdc-theme-error, #b00020);
|
|
}
|
|
.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-notched-outline__leading,
|
|
.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-notched-outline__notch,
|
|
.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-notched-outline__trailing {
|
|
border-color: #b00020;
|
|
border-color: var(--mdc-theme-error, #b00020);
|
|
}
|
|
.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused)
|
|
.mdc-text-field__input:hover
|
|
~ .mdc-notched-outline
|
|
.mdc-notched-outline__leading,
|
|
.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused)
|
|
.mdc-text-field__input:hover
|
|
~ .mdc-notched-outline
|
|
.mdc-notched-outline__notch,
|
|
.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused)
|
|
.mdc-text-field__input:hover
|
|
~ .mdc-notched-outline
|
|
.mdc-notched-outline__trailing,
|
|
.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused)
|
|
.mdc-text-field__icon:hover
|
|
~ .mdc-notched-outline
|
|
.mdc-notched-outline__leading,
|
|
.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused)
|
|
.mdc-text-field__icon:hover
|
|
~ .mdc-notched-outline
|
|
.mdc-notched-outline__notch,
|
|
.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused)
|
|
.mdc-text-field__icon:hover
|
|
~ .mdc-notched-outline
|
|
.mdc-notched-outline__trailing {
|
|
border-color: #b00020;
|
|
border-color: var(--mdc-theme-error, #b00020);
|
|
}
|
|
.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused
|
|
.mdc-notched-outline__leading,
|
|
.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused
|
|
.mdc-notched-outline__notch,
|
|
.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused
|
|
.mdc-notched-outline__trailing {
|
|
border-color: #b00020;
|
|
border-color: var(--mdc-theme-error, #b00020);
|
|
}
|
|
.mdc-text-field--disabled {
|
|
background-color: #fafafa;
|
|
border-bottom: none;
|
|
pointer-events: none;
|
|
}
|
|
.mdc-text-field--disabled .mdc-text-field__input {
|
|
border-bottom-color: rgba(0, 0, 0, 0.06);
|
|
}
|
|
.mdc-text-field--disabled .mdc-text-field__input {
|
|
color: rgba(0, 0, 0, 0.37);
|
|
}
|
|
.mdc-text-field--disabled .mdc-floating-label {
|
|
color: rgba(0, 0, 0, 0.37);
|
|
}
|
|
.mdc-text-field--disabled + .mdc-text-field-helper-line .mdc-text-field-helper-text {
|
|
color: rgba(0, 0, 0, 0.37);
|
|
}
|
|
.mdc-text-field--disabled .mdc-text-field-character-counter,
|
|
.mdc-text-field--disabled + .mdc-text-field-helper-line .mdc-text-field-character-counter {
|
|
color: rgba(0, 0, 0, 0.37);
|
|
}
|
|
.mdc-text-field--disabled .mdc-text-field__icon {
|
|
color: rgba(0, 0, 0, 0.3);
|
|
}
|
|
.mdc-text-field--disabled:not(.mdc-text-field--textarea) {
|
|
border-bottom-color: rgba(0, 0, 0, 0.12);
|
|
}
|
|
.mdc-text-field--disabled .mdc-floating-label {
|
|
cursor: default;
|
|
}
|
|
.mdc-text-field--textarea.mdc-text-field--disabled {
|
|
background-color: rgba(0, 0, 0, 0);
|
|
background-color: #f9f9f9;
|
|
}
|
|
.mdc-text-field--textarea.mdc-text-field--disabled .mdc-notched-outline__leading,
|
|
.mdc-text-field--textarea.mdc-text-field--disabled .mdc-notched-outline__notch,
|
|
.mdc-text-field--textarea.mdc-text-field--disabled .mdc-notched-outline__trailing {
|
|
border-color: rgba(0, 0, 0, 0.06);
|
|
}
|
|
.mdc-text-field--textarea.mdc-text-field--disabled .mdc-text-field__input {
|
|
border-bottom: none;
|
|
}
|
|
@keyframes mdc-floating-label-shake-float-above-text-field-dense {
|
|
0% {
|
|
transform: translateX(calc(0 - 0%)) translateY(-70%) scale(0.8);
|
|
}
|
|
33% {
|
|
animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
|
|
transform: translateX(calc(4% - 0%)) translateY(-70%) scale(0.8);
|
|
}
|
|
66% {
|
|
animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
|
|
transform: translateX(calc(-4% - 0%)) translateY(-70%) scale(0.8);
|
|
}
|
|
100% {
|
|
transform: translateX(calc(0 - 0%)) translateY(-70%) scale(0.8);
|
|
}
|
|
}
|
|
@keyframes mdc-floating-label-shake-float-above-text-field-outlined {
|
|
0% {
|
|
transform: translateX(calc(0 - 0%)) translateY(-130%) scale(0.75);
|
|
}
|
|
33% {
|
|
animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
|
|
transform: translateX(calc(4% - 0%)) translateY(-130%) scale(0.75);
|
|
}
|
|
66% {
|
|
animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
|
|
transform: translateX(calc(-4% - 0%)) translateY(-130%) scale(0.75);
|
|
}
|
|
100% {
|
|
transform: translateX(calc(0 - 0%)) translateY(-130%) scale(0.75);
|
|
}
|
|
}
|
|
@keyframes mdc-floating-label-shake-float-above-text-field-outlined-dense {
|
|
0% {
|
|
transform: translateX(calc(0 - 0%)) translateY(-120%) scale(0.8);
|
|
}
|
|
33% {
|
|
animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
|
|
transform: translateX(calc(4% - 0%)) translateY(-120%) scale(0.8);
|
|
}
|
|
66% {
|
|
animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
|
|
transform: translateX(calc(-4% - 0%)) translateY(-120%) scale(0.8);
|
|
}
|
|
100% {
|
|
transform: translateX(calc(0 - 0%)) translateY(-120%) scale(0.8);
|
|
}
|
|
}
|
|
@keyframes mdc-floating-label-shake-float-above-text-field-outlined-leading-icon {
|
|
0% {
|
|
transform: translateX(calc(0 - 0)) translateY(-130%) scale(0.75);
|
|
}
|
|
33% {
|
|
animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
|
|
transform: translateX(calc(4% - 0)) translateY(-130%) scale(0.75);
|
|
}
|
|
66% {
|
|
animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
|
|
transform: translateX(calc(-4% - 0)) translateY(-130%) scale(0.75);
|
|
}
|
|
100% {
|
|
transform: translateX(calc(0 - 0)) translateY(-130%) scale(0.75);
|
|
}
|
|
}
|
|
@keyframes mdc-floating-label-shake-float-above-text-field-outlined-leading-icon-dense {
|
|
0% {
|
|
transform: translateX(calc(0 - 21px)) translateY(-120%) scale(0.8);
|
|
}
|
|
33% {
|
|
animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
|
|
transform: translateX(calc(4% - 21px)) translateY(-120%) scale(0.8);
|
|
}
|
|
66% {
|
|
animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
|
|
transform: translateX(calc(-4% - 21px)) translateY(-120%) scale(0.8);
|
|
}
|
|
100% {
|
|
transform: translateX(calc(0 - 21px)) translateY(-120%) scale(0.8);
|
|
}
|
|
}
|
|
@keyframes mdc-floating-label-shake-float-above-text-field-outlined-leading-icon-rtl {
|
|
0% {
|
|
transform: translateX(calc(0 - 0)) translateY(-130%) scale(0.75);
|
|
}
|
|
33% {
|
|
animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
|
|
transform: translateX(calc(4% - 0)) translateY(-130%) scale(0.75);
|
|
}
|
|
66% {
|
|
animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
|
|
transform: translateX(calc(-4% - 0)) translateY(-130%) scale(0.75);
|
|
}
|
|
100% {
|
|
transform: translateX(calc(0 - 0)) translateY(-130%) scale(0.75);
|
|
}
|
|
}
|
|
@keyframes mdc-floating-label-shake-float-above-text-field-outlined-leading-icon-dense-rtl {
|
|
0% {
|
|
transform: translateX(calc(0 - -21px)) translateY(-120%) scale(0.8);
|
|
}
|
|
33% {
|
|
animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
|
|
transform: translateX(calc(4% - -21px)) translateY(-120%) scale(0.8);
|
|
}
|
|
66% {
|
|
animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
|
|
transform: translateX(calc(-4% - -21px)) translateY(-120%) scale(0.8);
|
|
}
|
|
100% {
|
|
transform: translateX(calc(0 - -21px)) translateY(-120%) scale(0.8);
|
|
}
|
|
}
|
|
@keyframes mdc-floating-label-shake-float-above-textarea {
|
|
0% {
|
|
transform: translateX(calc(0 - 0%)) translateY(-130%) scale(0.75);
|
|
}
|
|
33% {
|
|
animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
|
|
transform: translateX(calc(4% - 0%)) translateY(-130%) scale(0.75);
|
|
}
|
|
66% {
|
|
animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
|
|
transform: translateX(calc(-4% - 0%)) translateY(-130%) scale(0.75);
|
|
}
|
|
100% {
|
|
transform: translateX(calc(0 - 0%)) translateY(-130%) scale(0.75);
|
|
}
|
|
}
|
|
.smui-text-field--standard::before,
|
|
.smui-text-field--standard::after {
|
|
content: none;
|
|
}
|
|
.smui-text-field--standard:not(.mdc-text-field--disabled) {
|
|
background-color: rgba(0, 0, 0, 0);
|
|
}
|
|
.smui-text-field--standard.mdc-text-field--disabled {
|
|
background-color: rgba(0, 0, 0, 0);
|
|
}
|
|
.smui-text-field--standard .mdc-text-field__input {
|
|
padding-left: 0;
|
|
padding-right: 0;
|
|
}
|
|
.smui-text-field--standard .mdc-floating-label {
|
|
left: 0;
|
|
right: initial;
|
|
}
|
|
[dir="rtl"] .smui-text-field--standard .mdc-floating-label,
|
|
.smui-text-field--standard .mdc-floating-label[dir="rtl"] {
|
|
left: initial;
|
|
right: 0;
|
|
}
|
|
.smui-text-field--standard.mdc-text-field--with-leading-icon .mdc-text-field__icon {
|
|
left: 0;
|
|
right: initial;
|
|
}
|
|
[dir="rtl"] .smui-text-field--standard.mdc-text-field--with-leading-icon .mdc-text-field__icon,
|
|
.smui-text-field--standard.mdc-text-field--with-leading-icon .mdc-text-field__icon[dir="rtl"] {
|
|
left: initial;
|
|
right: 0;
|
|
}
|
|
.smui-text-field--standard.mdc-text-field--with-leading-icon .mdc-text-field__input {
|
|
padding-left: 32px;
|
|
padding-right: 0;
|
|
}
|
|
[dir="rtl"] .smui-text-field--standard.mdc-text-field--with-leading-icon .mdc-text-field__input,
|
|
.smui-text-field--standard.mdc-text-field--with-leading-icon .mdc-text-field__input[dir="rtl"] {
|
|
padding-left: 0;
|
|
padding-right: 32px;
|
|
}
|
|
.smui-text-field--standard.mdc-text-field--with-leading-icon .mdc-floating-label {
|
|
left: 32px;
|
|
right: initial;
|
|
}
|
|
[dir="rtl"] .smui-text-field--standard.mdc-text-field--with-leading-icon .mdc-floating-label,
|
|
.smui-text-field--standard.mdc-text-field--with-leading-icon .mdc-floating-label[dir="rtl"] {
|
|
left: initial;
|
|
right: 32px;
|
|
}
|
|
.smui-text-field--standard.mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-text-field__icon {
|
|
left: 0;
|
|
right: initial;
|
|
}
|
|
[dir="rtl"] .smui-text-field--standard.mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-text-field__icon,
|
|
.smui-text-field--standard.mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-text-field__icon[dir="rtl"] {
|
|
left: initial;
|
|
right: 0;
|
|
}
|
|
.smui-text-field--standard.mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-text-field__input {
|
|
padding-left: 32px;
|
|
padding-right: 0;
|
|
}
|
|
[dir="rtl"] .smui-text-field--standard.mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-text-field__input,
|
|
.smui-text-field--standard.mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-text-field__input[dir="rtl"] {
|
|
padding-left: 0;
|
|
padding-right: 32px;
|
|
}
|
|
.smui-text-field--standard.mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-floating-label {
|
|
left: 32px;
|
|
right: initial;
|
|
}
|
|
[dir="rtl"] .smui-text-field--standard.mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-floating-label,
|
|
.smui-text-field--standard.mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-floating-label[dir="rtl"] {
|
|
left: initial;
|
|
right: 32px;
|
|
}
|
|
.smui-text-field--standard.mdc-text-field--with-trailing-icon .mdc-text-field__icon {
|
|
left: initial;
|
|
right: 0;
|
|
}
|
|
[dir="rtl"] .smui-text-field--standard.mdc-text-field--with-trailing-icon .mdc-text-field__icon,
|
|
.smui-text-field--standard.mdc-text-field--with-trailing-icon .mdc-text-field__icon[dir="rtl"] {
|
|
left: 0;
|
|
right: initial;
|
|
}
|
|
.smui-text-field--standard.mdc-text-field--with-trailing-icon .mdc-text-field__input {
|
|
padding-left: 0;
|
|
padding-right: 36px;
|
|
}
|
|
[dir="rtl"] .smui-text-field--standard.mdc-text-field--with-trailing-icon .mdc-text-field__input,
|
|
.smui-text-field--standard.mdc-text-field--with-trailing-icon .mdc-text-field__input[dir="rtl"] {
|
|
padding-left: 36px;
|
|
padding-right: 0;
|
|
}
|
|
.smui-text-field--standard.mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-text-field__icon {
|
|
left: initial;
|
|
right: 0;
|
|
}
|
|
[dir="rtl"] .smui-text-field--standard.mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-text-field__icon,
|
|
.smui-text-field--standard.mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-text-field__icon[dir="rtl"] {
|
|
left: 0;
|
|
right: initial;
|
|
}
|
|
.smui-text-field--standard.mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-text-field__input {
|
|
padding-left: 0;
|
|
padding-right: 32px;
|
|
}
|
|
[dir="rtl"] .smui-text-field--standard.mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-text-field__input,
|
|
.smui-text-field--standard.mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-text-field__input[dir="rtl"] {
|
|
padding-left: 32px;
|
|
padding-right: 0;
|
|
}
|
|
.smui-text-field--standard.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon .mdc-text-field__icon {
|
|
left: 0;
|
|
right: auto;
|
|
}
|
|
[dir="rtl"]
|
|
.smui-text-field--standard.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon
|
|
.mdc-text-field__icon,
|
|
.smui-text-field--standard.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon
|
|
.mdc-text-field__icon[dir="rtl"] {
|
|
left: auto;
|
|
right: 0;
|
|
}
|
|
.smui-text-field--standard.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon
|
|
.mdc-text-field__icon
|
|
~ .mdc-text-field__icon {
|
|
right: 0;
|
|
left: auto;
|
|
}
|
|
[dir="rtl"]
|
|
.smui-text-field--standard.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon
|
|
.mdc-text-field__icon
|
|
~ .mdc-text-field__icon,
|
|
.smui-text-field--standard.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon
|
|
.mdc-text-field__icon
|
|
~ .mdc-text-field__icon[dir="rtl"] {
|
|
right: auto;
|
|
left: 0;
|
|
}
|
|
.smui-text-field--standard.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon .mdc-text-field__input {
|
|
padding-left: 32px;
|
|
padding-right: 36px;
|
|
}
|
|
[dir="rtl"]
|
|
.smui-text-field--standard.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon
|
|
.mdc-text-field__input,
|
|
.smui-text-field--standard.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon
|
|
.mdc-text-field__input[dir="rtl"] {
|
|
padding-left: 36px;
|
|
padding-right: 32px;
|
|
}
|
|
.smui-text-field--standard.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.mdc-text-field--dense
|
|
.mdc-text-field__icon {
|
|
left: 0;
|
|
right: auto;
|
|
}
|
|
[dir="rtl"]
|
|
.smui-text-field--standard.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.mdc-text-field--dense
|
|
.mdc-text-field__icon,
|
|
.smui-text-field--standard.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.mdc-text-field--dense
|
|
.mdc-text-field__icon[dir="rtl"] {
|
|
left: auto;
|
|
right: 0;
|
|
}
|
|
.smui-text-field--standard.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.mdc-text-field--dense
|
|
.mdc-text-field__icon
|
|
~ .mdc-text-field__icon {
|
|
right: 0;
|
|
left: auto;
|
|
}
|
|
[dir="rtl"]
|
|
.smui-text-field--standard.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.mdc-text-field--dense
|
|
.mdc-text-field__icon
|
|
~ .mdc-text-field__icon,
|
|
.smui-text-field--standard.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.mdc-text-field--dense
|
|
.mdc-text-field__icon
|
|
~ .mdc-text-field__icon[dir="rtl"] {
|
|
right: auto;
|
|
left: 0;
|
|
}
|
|
.smui-text-field--standard.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.mdc-text-field--dense
|
|
.mdc-text-field__input {
|
|
padding-left: 32px;
|
|
padding-right: 32px;
|
|
}
|
|
[dir="rtl"]
|
|
.smui-text-field--standard.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.mdc-text-field--dense
|
|
.mdc-text-field__input,
|
|
.smui-text-field--standard.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.mdc-text-field--dense
|
|
.mdc-text-field__input[dir="rtl"] {
|
|
padding-left: 32px;
|
|
padding-right: 32px;
|
|
}
|
|
.smui-text-field--standard.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon
|
|
.mdc-text-field__icon
|
|
~ .mdc-text-field__icon {
|
|
left: initial;
|
|
right: 0;
|
|
}
|
|
[dir="rtl"]
|
|
.smui-text-field--standard.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon
|
|
.mdc-text-field__icon
|
|
~ .mdc-text-field__icon,
|
|
.smui-text-field--standard.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon
|
|
.mdc-text-field__icon
|
|
~ .mdc-text-field__icon[dir="rtl"] {
|
|
left: 0;
|
|
right: initial;
|
|
}
|
|
.smui-text-field--standard + .mdc-text-field-helper-line {
|
|
padding-left: 0;
|
|
padding-right: 0;
|
|
}
|
|
|
|
.mdc-text-field-helper-text {
|
|
font-family: Roboto, sans-serif;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
-webkit-font-smoothing: antialiased;
|
|
font-size: 0.75rem;
|
|
line-height: 1.25rem;
|
|
font-weight: 400;
|
|
letter-spacing: 0.03333em;
|
|
text-decoration: inherit;
|
|
text-transform: inherit;
|
|
display: block;
|
|
margin-top: 0;
|
|
line-height: normal;
|
|
margin: 0;
|
|
transition: opacity 150ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
opacity: 0;
|
|
will-change: opacity;
|
|
}
|
|
.mdc-text-field-helper-text::before {
|
|
display: inline-block;
|
|
width: 0;
|
|
height: 16px;
|
|
content: "";
|
|
vertical-align: 0;
|
|
}
|
|
.mdc-text-field-helper-text--persistent {
|
|
transition: none;
|
|
opacity: 1;
|
|
will-change: initial;
|
|
}
|
|
|
|
.mdc-top-app-bar {
|
|
background-color: #6200ee;
|
|
background-color: var(--mdc-theme-primary, #6200ee);
|
|
color: #fff;
|
|
display: flex;
|
|
position: fixed;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
z-index: 4;
|
|
}
|
|
.mdc-top-app-bar .mdc-top-app-bar__action-item,
|
|
.mdc-top-app-bar .mdc-top-app-bar__navigation-icon {
|
|
color: #fff;
|
|
color: var(--mdc-theme-on-primary, #fff);
|
|
}
|
|
.mdc-top-app-bar .mdc-top-app-bar__action-item::before,
|
|
.mdc-top-app-bar .mdc-top-app-bar__action-item::after,
|
|
.mdc-top-app-bar .mdc-top-app-bar__navigation-icon::before,
|
|
.mdc-top-app-bar .mdc-top-app-bar__navigation-icon::after {
|
|
background-color: #fff;
|
|
}
|
|
@supports not (-ms-ime-align: auto) {
|
|
.mdc-top-app-bar .mdc-top-app-bar__action-item::before,
|
|
.mdc-top-app-bar .mdc-top-app-bar__action-item::after,
|
|
.mdc-top-app-bar .mdc-top-app-bar__navigation-icon::before,
|
|
.mdc-top-app-bar .mdc-top-app-bar__navigation-icon::after {
|
|
background-color: var(--mdc-theme-on-primary, #fff);
|
|
}
|
|
}
|
|
.mdc-top-app-bar .mdc-top-app-bar__action-item:hover::before,
|
|
.mdc-top-app-bar .mdc-top-app-bar__navigation-icon:hover::before {
|
|
opacity: 0.08;
|
|
}
|
|
.mdc-top-app-bar .mdc-top-app-bar__action-item:not(.mdc-ripple-upgraded):focus::before,
|
|
.mdc-top-app-bar .mdc-top-app-bar__action-item.mdc-ripple-upgraded--background-focused::before,
|
|
.mdc-top-app-bar .mdc-top-app-bar__navigation-icon:not(.mdc-ripple-upgraded):focus::before,
|
|
.mdc-top-app-bar .mdc-top-app-bar__navigation-icon.mdc-ripple-upgraded--background-focused::before {
|
|
transition-duration: 75ms;
|
|
opacity: 0.24;
|
|
}
|
|
.mdc-top-app-bar .mdc-top-app-bar__action-item:not(.mdc-ripple-upgraded)::after,
|
|
.mdc-top-app-bar .mdc-top-app-bar__navigation-icon:not(.mdc-ripple-upgraded)::after {
|
|
transition: opacity 150ms linear;
|
|
}
|
|
.mdc-top-app-bar .mdc-top-app-bar__action-item:not(.mdc-ripple-upgraded):active::after,
|
|
.mdc-top-app-bar .mdc-top-app-bar__navigation-icon:not(.mdc-ripple-upgraded):active::after {
|
|
transition-duration: 75ms;
|
|
opacity: 0.24;
|
|
}
|
|
.mdc-top-app-bar .mdc-top-app-bar__action-item.mdc-ripple-upgraded,
|
|
.mdc-top-app-bar .mdc-top-app-bar__navigation-icon.mdc-ripple-upgraded {
|
|
--mdc-ripple-fg-opacity: 0.24;
|
|
}
|
|
.mdc-top-app-bar__row {
|
|
display: flex;
|
|
position: relative;
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
height: 64px;
|
|
}
|
|
.mdc-top-app-bar__section {
|
|
display: inline-flex;
|
|
flex: 1 1 auto;
|
|
align-items: center;
|
|
min-width: 0;
|
|
padding: 8px 12px;
|
|
z-index: 1;
|
|
}
|
|
.mdc-top-app-bar__section--align-start {
|
|
justify-content: flex-start;
|
|
order: -1;
|
|
}
|
|
.mdc-top-app-bar__section--align-end {
|
|
justify-content: flex-end;
|
|
order: 1;
|
|
}
|
|
.mdc-top-app-bar__title {
|
|
font-family: Roboto, sans-serif;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
-webkit-font-smoothing: antialiased;
|
|
font-size: 1.25rem;
|
|
line-height: 2rem;
|
|
font-weight: 500;
|
|
letter-spacing: 0.0125em;
|
|
text-decoration: inherit;
|
|
text-transform: inherit;
|
|
padding-left: 20px;
|
|
padding-right: 0;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
z-index: 1;
|
|
}
|
|
[dir="rtl"] .mdc-top-app-bar__title,
|
|
.mdc-top-app-bar__title[dir="rtl"] {
|
|
padding-left: 0;
|
|
padding-right: 20px;
|
|
}
|
|
.mdc-top-app-bar--short-collapsed {
|
|
border-radius: 0 0 24px 0;
|
|
}
|
|
[dir="rtl"] .mdc-top-app-bar--short-collapsed,
|
|
.mdc-top-app-bar--short-collapsed[dir="rtl"] {
|
|
border-radius: 0 0 0 24px;
|
|
}
|
|
.mdc-top-app-bar--short {
|
|
top: 0;
|
|
right: auto;
|
|
left: 0;
|
|
width: 100%;
|
|
transition: width 250ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
}
|
|
[dir="rtl"] .mdc-top-app-bar--short,
|
|
.mdc-top-app-bar--short[dir="rtl"] {
|
|
right: 0;
|
|
left: auto;
|
|
}
|
|
.mdc-top-app-bar--short .mdc-top-app-bar__row {
|
|
height: 56px;
|
|
}
|
|
.mdc-top-app-bar--short .mdc-top-app-bar__section {
|
|
padding: 4px;
|
|
}
|
|
.mdc-top-app-bar--short .mdc-top-app-bar__title {
|
|
transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
opacity: 1;
|
|
}
|
|
.mdc-top-app-bar--short-collapsed {
|
|
box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14),
|
|
0px 1px 10px 0px rgba(0, 0, 0, 0.12);
|
|
width: 56px;
|
|
transition: width 300ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
}
|
|
.mdc-top-app-bar--short-collapsed .mdc-top-app-bar__title {
|
|
display: none;
|
|
}
|
|
.mdc-top-app-bar--short-collapsed .mdc-top-app-bar__action-item {
|
|
transition: padding 150ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
}
|
|
.mdc-top-app-bar--short-collapsed.mdc-top-app-bar--short-has-action-item {
|
|
width: 112px;
|
|
}
|
|
.mdc-top-app-bar--short-collapsed.mdc-top-app-bar--short-has-action-item .mdc-top-app-bar__section--align-end {
|
|
padding-left: 0;
|
|
padding-right: 12px;
|
|
}
|
|
[dir="rtl"]
|
|
.mdc-top-app-bar--short-collapsed.mdc-top-app-bar--short-has-action-item
|
|
.mdc-top-app-bar__section--align-end,
|
|
.mdc-top-app-bar--short-collapsed.mdc-top-app-bar--short-has-action-item
|
|
.mdc-top-app-bar__section--align-end[dir="rtl"] {
|
|
padding-left: 12px;
|
|
padding-right: 0;
|
|
}
|
|
.mdc-top-app-bar--dense .mdc-top-app-bar__row {
|
|
height: 48px;
|
|
}
|
|
.mdc-top-app-bar--dense .mdc-top-app-bar__section {
|
|
padding: 0 4px;
|
|
}
|
|
.mdc-top-app-bar--dense .mdc-top-app-bar__title {
|
|
padding-left: 12px;
|
|
padding-right: 0;
|
|
}
|
|
[dir="rtl"] .mdc-top-app-bar--dense .mdc-top-app-bar__title,
|
|
.mdc-top-app-bar--dense .mdc-top-app-bar__title[dir="rtl"] {
|
|
padding-left: 0;
|
|
padding-right: 12px;
|
|
}
|
|
.mdc-top-app-bar--prominent .mdc-top-app-bar__row {
|
|
height: 128px;
|
|
}
|
|
.mdc-top-app-bar--prominent .mdc-top-app-bar__title {
|
|
align-self: flex-end;
|
|
padding-bottom: 2px;
|
|
}
|
|
.mdc-top-app-bar--prominent .mdc-top-app-bar__action-item,
|
|
.mdc-top-app-bar--prominent .mdc-top-app-bar__navigation-icon {
|
|
align-self: flex-start;
|
|
}
|
|
.mdc-top-app-bar--fixed {
|
|
transition: box-shadow 200ms linear;
|
|
}
|
|
.mdc-top-app-bar--fixed-scrolled {
|
|
box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14),
|
|
0px 1px 10px 0px rgba(0, 0, 0, 0.12);
|
|
transition: box-shadow 200ms linear;
|
|
}
|
|
.mdc-top-app-bar--dense.mdc-top-app-bar--prominent .mdc-top-app-bar__row {
|
|
height: 96px;
|
|
}
|
|
.mdc-top-app-bar--dense.mdc-top-app-bar--prominent .mdc-top-app-bar__section {
|
|
padding: 0 12px;
|
|
}
|
|
.mdc-top-app-bar--dense.mdc-top-app-bar--prominent .mdc-top-app-bar__title {
|
|
padding-left: 20px;
|
|
padding-right: 0;
|
|
padding-bottom: 9px;
|
|
}
|
|
[dir="rtl"] .mdc-top-app-bar--dense.mdc-top-app-bar--prominent .mdc-top-app-bar__title,
|
|
.mdc-top-app-bar--dense.mdc-top-app-bar--prominent .mdc-top-app-bar__title[dir="rtl"] {
|
|
padding-left: 0;
|
|
padding-right: 20px;
|
|
}
|
|
.mdc-top-app-bar--fixed-adjust {
|
|
padding-top: 64px;
|
|
}
|
|
.mdc-top-app-bar--dense-fixed-adjust {
|
|
padding-top: 48px;
|
|
}
|
|
.mdc-top-app-bar--short-fixed-adjust {
|
|
padding-top: 56px;
|
|
}
|
|
.mdc-top-app-bar--prominent-fixed-adjust {
|
|
padding-top: 128px;
|
|
}
|
|
.mdc-top-app-bar--dense-prominent-fixed-adjust {
|
|
padding-top: 96px;
|
|
}
|
|
@media (max-width: 599px) {
|
|
.mdc-top-app-bar__row {
|
|
height: 56px;
|
|
}
|
|
.mdc-top-app-bar__section {
|
|
padding: 4px;
|
|
}
|
|
.mdc-top-app-bar--short {
|
|
transition: width 200ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
}
|
|
.mdc-top-app-bar--short-collapsed {
|
|
transition: width 250ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
}
|
|
.mdc-top-app-bar--short-collapsed .mdc-top-app-bar__section--align-end {
|
|
padding-left: 0;
|
|
padding-right: 12px;
|
|
}
|
|
[dir="rtl"] .mdc-top-app-bar--short-collapsed .mdc-top-app-bar__section--align-end,
|
|
.mdc-top-app-bar--short-collapsed .mdc-top-app-bar__section--align-end[dir="rtl"] {
|
|
padding-left: 12px;
|
|
padding-right: 0;
|
|
}
|
|
.mdc-top-app-bar--prominent .mdc-top-app-bar__title {
|
|
padding-bottom: 6px;
|
|
}
|
|
.mdc-top-app-bar--fixed-adjust {
|
|
padding-top: 56px;
|
|
}
|
|
}
|
|
.smui-top-app-bar--static {
|
|
position: static;
|
|
}
|
|
.smui-top-app-bar--color-secondary {
|
|
background-color: #018786;
|
|
background-color: var(--mdc-theme-secondary, #018786);
|
|
color: #fff;
|
|
}
|
|
.smui-top-app-bar--color-secondary .mdc-top-app-bar__action-item,
|
|
.smui-top-app-bar--color-secondary .mdc-top-app-bar__navigation-icon {
|
|
color: #fff;
|
|
color: var(--mdc-theme-on-secondary, #fff);
|
|
}
|
|
.smui-top-app-bar--color-secondary .mdc-top-app-bar__action-item::before,
|
|
.smui-top-app-bar--color-secondary .mdc-top-app-bar__action-item::after,
|
|
.smui-top-app-bar--color-secondary .mdc-top-app-bar__navigation-icon::before,
|
|
.smui-top-app-bar--color-secondary .mdc-top-app-bar__navigation-icon::after {
|
|
background-color: #fff;
|
|
}
|
|
@supports not (-ms-ime-align: auto) {
|
|
.smui-top-app-bar--color-secondary .mdc-top-app-bar__action-item::before,
|
|
.smui-top-app-bar--color-secondary .mdc-top-app-bar__action-item::after,
|
|
.smui-top-app-bar--color-secondary .mdc-top-app-bar__navigation-icon::before,
|
|
.smui-top-app-bar--color-secondary .mdc-top-app-bar__navigation-icon::after {
|
|
background-color: var(--mdc-theme-on-secondary, #fff);
|
|
}
|
|
}
|
|
.smui-top-app-bar--color-secondary .mdc-top-app-bar__action-item:hover::before,
|
|
.smui-top-app-bar--color-secondary .mdc-top-app-bar__navigation-icon:hover::before {
|
|
opacity: 0.08;
|
|
}
|
|
.smui-top-app-bar--color-secondary .mdc-top-app-bar__action-item:not(.mdc-ripple-upgraded):focus::before,
|
|
.smui-top-app-bar--color-secondary .mdc-top-app-bar__action-item.mdc-ripple-upgraded--background-focused::before,
|
|
.smui-top-app-bar--color-secondary .mdc-top-app-bar__navigation-icon:not(.mdc-ripple-upgraded):focus::before,
|
|
.smui-top-app-bar--color-secondary .mdc-top-app-bar__navigation-icon.mdc-ripple-upgraded--background-focused::before {
|
|
transition-duration: 75ms;
|
|
opacity: 0.24;
|
|
}
|
|
.smui-top-app-bar--color-secondary .mdc-top-app-bar__action-item:not(.mdc-ripple-upgraded)::after,
|
|
.smui-top-app-bar--color-secondary .mdc-top-app-bar__navigation-icon:not(.mdc-ripple-upgraded)::after {
|
|
transition: opacity 150ms linear;
|
|
}
|
|
.smui-top-app-bar--color-secondary .mdc-top-app-bar__action-item:not(.mdc-ripple-upgraded):active::after,
|
|
.smui-top-app-bar--color-secondary .mdc-top-app-bar__navigation-icon:not(.mdc-ripple-upgraded):active::after {
|
|
transition-duration: 75ms;
|
|
opacity: 0.24;
|
|
}
|
|
.smui-top-app-bar--color-secondary .mdc-top-app-bar__action-item.mdc-ripple-upgraded,
|
|
.smui-top-app-bar--color-secondary .mdc-top-app-bar__navigation-icon.mdc-ripple-upgraded {
|
|
--mdc-ripple-fg-opacity: 0.24;
|
|
}
|
|
|
|
/*# sourceMappingURL=vendors~main.css.map*/
|