| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791 |
- /**
- * @license
- * Copyright Google LLC All Rights Reserved.
- *
- * Use of this source code is governed by an MIT-style license that can be
- * found in the LICENSE file at https://github.com/material-components/material-components-web/blob/master/LICENSE
- */
- .mdc-touch-target-wrapper {
- display: inline;
- }
- @-webkit-keyframes mdc-checkbox-unchecked-checked-checkmark-path {
- 0%, 50% {
- stroke-dashoffset: 29.7833385;
- }
- 50% {
- -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
- animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
- }
- 100% {
- stroke-dashoffset: 0;
- }
- }
- @keyframes mdc-checkbox-unchecked-checked-checkmark-path {
- 0%, 50% {
- stroke-dashoffset: 29.7833385;
- }
- 50% {
- -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
- animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
- }
- 100% {
- stroke-dashoffset: 0;
- }
- }
- @-webkit-keyframes mdc-checkbox-unchecked-indeterminate-mixedmark {
- 0%, 68.2% {
- -webkit-transform: scaleX(0);
- transform: scaleX(0);
- }
- 68.2% {
- -webkit-animation-timing-function: cubic-bezier(0, 0, 0, 1);
- animation-timing-function: cubic-bezier(0, 0, 0, 1);
- }
- 100% {
- -webkit-transform: scaleX(1);
- transform: scaleX(1);
- }
- }
- @keyframes mdc-checkbox-unchecked-indeterminate-mixedmark {
- 0%, 68.2% {
- -webkit-transform: scaleX(0);
- transform: scaleX(0);
- }
- 68.2% {
- -webkit-animation-timing-function: cubic-bezier(0, 0, 0, 1);
- animation-timing-function: cubic-bezier(0, 0, 0, 1);
- }
- 100% {
- -webkit-transform: scaleX(1);
- transform: scaleX(1);
- }
- }
- @-webkit-keyframes mdc-checkbox-checked-unchecked-checkmark-path {
- from {
- -webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 1);
- animation-timing-function: cubic-bezier(0.4, 0, 1, 1);
- opacity: 1;
- stroke-dashoffset: 0;
- }
- to {
- opacity: 0;
- stroke-dashoffset: -29.7833385;
- }
- }
- @keyframes mdc-checkbox-checked-unchecked-checkmark-path {
- from {
- -webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 1);
- animation-timing-function: cubic-bezier(0.4, 0, 1, 1);
- opacity: 1;
- stroke-dashoffset: 0;
- }
- to {
- opacity: 0;
- stroke-dashoffset: -29.7833385;
- }
- }
- @-webkit-keyframes mdc-checkbox-checked-indeterminate-checkmark {
- from {
- -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
- animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
- -webkit-transform: rotate(0deg);
- transform: rotate(0deg);
- opacity: 1;
- }
- to {
- -webkit-transform: rotate(45deg);
- transform: rotate(45deg);
- opacity: 0;
- }
- }
- @keyframes mdc-checkbox-checked-indeterminate-checkmark {
- from {
- -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
- animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
- -webkit-transform: rotate(0deg);
- transform: rotate(0deg);
- opacity: 1;
- }
- to {
- -webkit-transform: rotate(45deg);
- transform: rotate(45deg);
- opacity: 0;
- }
- }
- @-webkit-keyframes mdc-checkbox-indeterminate-checked-checkmark {
- from {
- -webkit-animation-timing-function: cubic-bezier(0.14, 0, 0, 1);
- animation-timing-function: cubic-bezier(0.14, 0, 0, 1);
- -webkit-transform: rotate(45deg);
- transform: rotate(45deg);
- opacity: 0;
- }
- to {
- -webkit-transform: rotate(360deg);
- transform: rotate(360deg);
- opacity: 1;
- }
- }
- @keyframes mdc-checkbox-indeterminate-checked-checkmark {
- from {
- -webkit-animation-timing-function: cubic-bezier(0.14, 0, 0, 1);
- animation-timing-function: cubic-bezier(0.14, 0, 0, 1);
- -webkit-transform: rotate(45deg);
- transform: rotate(45deg);
- opacity: 0;
- }
- to {
- -webkit-transform: rotate(360deg);
- transform: rotate(360deg);
- opacity: 1;
- }
- }
- @-webkit-keyframes mdc-checkbox-checked-indeterminate-mixedmark {
- from {
- -webkit-animation-timing-function: mdc-animation-deceleration-curve-timing-function;
- animation-timing-function: mdc-animation-deceleration-curve-timing-function;
- -webkit-transform: rotate(-45deg);
- transform: rotate(-45deg);
- opacity: 0;
- }
- to {
- -webkit-transform: rotate(0deg);
- transform: rotate(0deg);
- opacity: 1;
- }
- }
- @keyframes mdc-checkbox-checked-indeterminate-mixedmark {
- from {
- -webkit-animation-timing-function: mdc-animation-deceleration-curve-timing-function;
- animation-timing-function: mdc-animation-deceleration-curve-timing-function;
- -webkit-transform: rotate(-45deg);
- transform: rotate(-45deg);
- opacity: 0;
- }
- to {
- -webkit-transform: rotate(0deg);
- transform: rotate(0deg);
- opacity: 1;
- }
- }
- @-webkit-keyframes mdc-checkbox-indeterminate-checked-mixedmark {
- from {
- -webkit-animation-timing-function: cubic-bezier(0.14, 0, 0, 1);
- animation-timing-function: cubic-bezier(0.14, 0, 0, 1);
- -webkit-transform: rotate(0deg);
- transform: rotate(0deg);
- opacity: 1;
- }
- to {
- -webkit-transform: rotate(315deg);
- transform: rotate(315deg);
- opacity: 0;
- }
- }
- @keyframes mdc-checkbox-indeterminate-checked-mixedmark {
- from {
- -webkit-animation-timing-function: cubic-bezier(0.14, 0, 0, 1);
- animation-timing-function: cubic-bezier(0.14, 0, 0, 1);
- -webkit-transform: rotate(0deg);
- transform: rotate(0deg);
- opacity: 1;
- }
- to {
- -webkit-transform: rotate(315deg);
- transform: rotate(315deg);
- opacity: 0;
- }
- }
- @-webkit-keyframes mdc-checkbox-indeterminate-unchecked-mixedmark {
- 0% {
- -webkit-animation-timing-function: linear;
- animation-timing-function: linear;
- -webkit-transform: scaleX(1);
- transform: scaleX(1);
- opacity: 1;
- }
- 32.8%, 100% {
- -webkit-transform: scaleX(0);
- transform: scaleX(0);
- opacity: 0;
- }
- }
- @keyframes mdc-checkbox-indeterminate-unchecked-mixedmark {
- 0% {
- -webkit-animation-timing-function: linear;
- animation-timing-function: linear;
- -webkit-transform: scaleX(1);
- transform: scaleX(1);
- opacity: 1;
- }
- 32.8%, 100% {
- -webkit-transform: scaleX(0);
- transform: scaleX(0);
- opacity: 0;
- }
- }
- .mdc-checkbox {
- display: inline-block;
- position: relative;
- flex: 0 0 18px;
- box-sizing: content-box;
- width: 18px;
- height: 18px;
- line-height: 0;
- white-space: nowrap;
- cursor: pointer;
- vertical-align: bottom;
- padding: 11px;
- }
- .mdc-checkbox .mdc-checkbox__native-control:checked ~ .mdc-checkbox__background::before,
- .mdc-checkbox .mdc-checkbox__native-control:indeterminate ~ .mdc-checkbox__background::before {
- background-color: #018786;
- /* @alternate */
- background-color: var(--mdc-theme-secondary, #018786);
- }
- .mdc-checkbox.mdc-checkbox--selected .mdc-checkbox__ripple::before, .mdc-checkbox.mdc-checkbox--selected .mdc-checkbox__ripple::after {
- background-color: #018786;
- /* @alternate */
- background-color: var(--mdc-theme-secondary, #018786);
- }
- .mdc-checkbox.mdc-checkbox--selected:hover .mdc-checkbox__ripple::before {
- opacity: 0.04;
- }
- .mdc-checkbox.mdc-checkbox--selected.mdc-ripple-upgraded--background-focused .mdc-checkbox__ripple::before, .mdc-checkbox.mdc-checkbox--selected:not(.mdc-ripple-upgraded):focus .mdc-checkbox__ripple::before {
- transition-duration: 75ms;
- opacity: 0.12;
- }
- .mdc-checkbox.mdc-checkbox--selected:not(.mdc-ripple-upgraded) .mdc-checkbox__ripple::after {
- transition: opacity 150ms linear;
- }
- .mdc-checkbox.mdc-checkbox--selected:not(.mdc-ripple-upgraded):active .mdc-checkbox__ripple::after {
- transition-duration: 75ms;
- opacity: 0.12;
- }
- .mdc-checkbox.mdc-checkbox--selected.mdc-ripple-upgraded {
- --mdc-ripple-fg-opacity: 0.12;
- }
- .mdc-checkbox.mdc-ripple-upgraded--background-focused.mdc-checkbox--selected .mdc-checkbox__ripple::before,
- .mdc-checkbox.mdc-ripple-upgraded--background-focused.mdc-checkbox--selected .mdc-checkbox__ripple::after {
- background-color: #018786;
- /* @alternate */
- background-color: var(--mdc-theme-secondary, #018786);
- }
- .mdc-checkbox .mdc-checkbox__background {
- top: 11px;
- left: 11px;
- }
- .mdc-checkbox .mdc-checkbox__background::before {
- top: -13px;
- left: -13px;
- width: 40px;
- height: 40px;
- }
- .mdc-checkbox .mdc-checkbox__native-control {
- top: 0px;
- right: 0px;
- left: 0px;
- width: 40px;
- height: 40px;
- }
- .mdc-checkbox__native-control:enabled:not(:checked):not(:indeterminate) ~ .mdc-checkbox__background {
- border-color: rgba(0, 0, 0, 0.54);
- background-color: transparent;
- }
- .mdc-checkbox__native-control:enabled:checked ~ .mdc-checkbox__background,
- .mdc-checkbox__native-control:enabled:indeterminate ~ .mdc-checkbox__background {
- border-color: #018786;
- /* @alternate */
- border-color: var(--mdc-theme-secondary, #018786);
- background-color: #018786;
- /* @alternate */
- background-color: var(--mdc-theme-secondary, #018786);
- }
- @-webkit-keyframes mdc-checkbox-fade-in-background-8A000000secondary00000000secondary {
- 0% {
- border-color: rgba(0, 0, 0, 0.54);
- background-color: transparent;
- }
- 50% {
- border-color: #018786;
- /* @alternate */
- border-color: var(--mdc-theme-secondary, #018786);
- background-color: #018786;
- /* @alternate */
- background-color: var(--mdc-theme-secondary, #018786);
- }
- }
- @keyframes mdc-checkbox-fade-in-background-8A000000secondary00000000secondary {
- 0% {
- border-color: rgba(0, 0, 0, 0.54);
- background-color: transparent;
- }
- 50% {
- border-color: #018786;
- /* @alternate */
- border-color: var(--mdc-theme-secondary, #018786);
- background-color: #018786;
- /* @alternate */
- background-color: var(--mdc-theme-secondary, #018786);
- }
- }
- @-webkit-keyframes mdc-checkbox-fade-out-background-8A000000secondary00000000secondary {
- 0%, 80% {
- border-color: #018786;
- /* @alternate */
- border-color: var(--mdc-theme-secondary, #018786);
- background-color: #018786;
- /* @alternate */
- background-color: var(--mdc-theme-secondary, #018786);
- }
- 100% {
- border-color: rgba(0, 0, 0, 0.54);
- background-color: transparent;
- }
- }
- @keyframes mdc-checkbox-fade-out-background-8A000000secondary00000000secondary {
- 0%, 80% {
- border-color: #018786;
- /* @alternate */
- border-color: var(--mdc-theme-secondary, #018786);
- background-color: #018786;
- /* @alternate */
- background-color: var(--mdc-theme-secondary, #018786);
- }
- 100% {
- border-color: rgba(0, 0, 0, 0.54);
- background-color: transparent;
- }
- }
- .mdc-checkbox--anim-unchecked-checked .mdc-checkbox__native-control:enabled ~ .mdc-checkbox__background, .mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__native-control:enabled ~ .mdc-checkbox__background {
- -webkit-animation-name: mdc-checkbox-fade-in-background-8A000000secondary00000000secondary;
- animation-name: mdc-checkbox-fade-in-background-8A000000secondary00000000secondary;
- }
- .mdc-checkbox--anim-checked-unchecked .mdc-checkbox__native-control:enabled ~ .mdc-checkbox__background, .mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__native-control:enabled ~ .mdc-checkbox__background {
- -webkit-animation-name: mdc-checkbox-fade-out-background-8A000000secondary00000000secondary;
- animation-name: mdc-checkbox-fade-out-background-8A000000secondary00000000secondary;
- }
- .mdc-checkbox__native-control[disabled]:not(:checked):not(:indeterminate) ~ .mdc-checkbox__background {
- border-color: rgba(0, 0, 0, 0.38);
- background-color: transparent;
- }
- .mdc-checkbox__native-control[disabled]:checked ~ .mdc-checkbox__background,
- .mdc-checkbox__native-control[disabled]:indeterminate ~ .mdc-checkbox__background {
- border-color: transparent;
- background-color: rgba(0, 0, 0, 0.38);
- }
- .mdc-checkbox__native-control:enabled ~ .mdc-checkbox__background .mdc-checkbox__checkmark {
- color: #fff;
- }
- .mdc-checkbox__native-control:enabled ~ .mdc-checkbox__background .mdc-checkbox__mixedmark {
- border-color: #fff;
- }
- .mdc-checkbox__native-control:disabled ~ .mdc-checkbox__background .mdc-checkbox__checkmark {
- color: #fff;
- }
- .mdc-checkbox__native-control:disabled ~ .mdc-checkbox__background .mdc-checkbox__mixedmark {
- border-color: #fff;
- }
- @media screen and (-ms-high-contrast: active) {
- .mdc-checkbox__native-control[disabled]:not(:checked):not(:indeterminate) ~ .mdc-checkbox__background {
- border-color: GrayText;
- background-color: transparent;
- }
- .mdc-checkbox__native-control[disabled]:checked ~ .mdc-checkbox__background,
- .mdc-checkbox__native-control[disabled]:indeterminate ~ .mdc-checkbox__background {
- border-color: GrayText;
- background-color: transparent;
- }
- .mdc-checkbox__native-control:disabled ~ .mdc-checkbox__background .mdc-checkbox__checkmark {
- color: GrayText;
- }
- .mdc-checkbox__native-control:disabled ~ .mdc-checkbox__background .mdc-checkbox__mixedmark {
- border-color: GrayText;
- }
- .mdc-checkbox__mixedmark {
- margin: 0 1px;
- }
- }
- .mdc-checkbox--disabled {
- cursor: default;
- pointer-events: none;
- }
- .mdc-checkbox__background {
- display: inline-flex;
- position: absolute;
- align-items: center;
- justify-content: center;
- box-sizing: border-box;
- width: 18px;
- height: 18px;
- border: 2px solid currentColor;
- border-radius: 2px;
- background-color: transparent;
- pointer-events: none;
- will-change: background-color, border-color;
- transition: background-color 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), border-color 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
- }
- .mdc-checkbox__background .mdc-checkbox__background::before {
- background-color: #000;
- /* @alternate */
- background-color: var(--mdc-theme-on-surface, #000);
- }
- .mdc-checkbox__checkmark {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- width: 100%;
- opacity: 0;
- transition: opacity 180ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
- }
- .mdc-checkbox--upgraded .mdc-checkbox__checkmark {
- opacity: 1;
- }
- .mdc-checkbox__checkmark-path {
- transition: stroke-dashoffset 180ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
- stroke: currentColor;
- stroke-width: 3.12px;
- stroke-dashoffset: 29.7833385;
- stroke-dasharray: 29.7833385;
- }
- .mdc-checkbox__mixedmark {
- width: 100%;
- height: 0;
- -webkit-transform: scaleX(0) rotate(0deg);
- transform: scaleX(0) rotate(0deg);
- border-width: 1px;
- border-style: solid;
- opacity: 0;
- transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
- transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
- transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
- }
- .mdc-checkbox--upgraded .mdc-checkbox__background,
- .mdc-checkbox--upgraded .mdc-checkbox__checkmark,
- .mdc-checkbox--upgraded .mdc-checkbox__checkmark-path,
- .mdc-checkbox--upgraded .mdc-checkbox__mixedmark {
- transition: none !important;
- }
- .mdc-checkbox--anim-unchecked-checked .mdc-checkbox__background, .mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__background, .mdc-checkbox--anim-checked-unchecked .mdc-checkbox__background, .mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__background {
- -webkit-animation-duration: 180ms;
- animation-duration: 180ms;
- -webkit-animation-timing-function: linear;
- animation-timing-function: linear;
- }
- .mdc-checkbox--anim-unchecked-checked .mdc-checkbox__checkmark-path {
- -webkit-animation: mdc-checkbox-unchecked-checked-checkmark-path 180ms linear 0s;
- animation: mdc-checkbox-unchecked-checked-checkmark-path 180ms linear 0s;
- transition: none;
- }
- .mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__mixedmark {
- -webkit-animation: mdc-checkbox-unchecked-indeterminate-mixedmark 90ms linear 0s;
- animation: mdc-checkbox-unchecked-indeterminate-mixedmark 90ms linear 0s;
- transition: none;
- }
- .mdc-checkbox--anim-checked-unchecked .mdc-checkbox__checkmark-path {
- -webkit-animation: mdc-checkbox-checked-unchecked-checkmark-path 90ms linear 0s;
- animation: mdc-checkbox-checked-unchecked-checkmark-path 90ms linear 0s;
- transition: none;
- }
- .mdc-checkbox--anim-checked-indeterminate .mdc-checkbox__checkmark {
- -webkit-animation: mdc-checkbox-checked-indeterminate-checkmark 90ms linear 0s;
- animation: mdc-checkbox-checked-indeterminate-checkmark 90ms linear 0s;
- transition: none;
- }
- .mdc-checkbox--anim-checked-indeterminate .mdc-checkbox__mixedmark {
- -webkit-animation: mdc-checkbox-checked-indeterminate-mixedmark 90ms linear 0s;
- animation: mdc-checkbox-checked-indeterminate-mixedmark 90ms linear 0s;
- transition: none;
- }
- .mdc-checkbox--anim-indeterminate-checked .mdc-checkbox__checkmark {
- -webkit-animation: mdc-checkbox-indeterminate-checked-checkmark 500ms linear 0s;
- animation: mdc-checkbox-indeterminate-checked-checkmark 500ms linear 0s;
- transition: none;
- }
- .mdc-checkbox--anim-indeterminate-checked .mdc-checkbox__mixedmark {
- -webkit-animation: mdc-checkbox-indeterminate-checked-mixedmark 500ms linear 0s;
- animation: mdc-checkbox-indeterminate-checked-mixedmark 500ms linear 0s;
- transition: none;
- }
- .mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__mixedmark {
- -webkit-animation: mdc-checkbox-indeterminate-unchecked-mixedmark 300ms linear 0s;
- animation: mdc-checkbox-indeterminate-unchecked-mixedmark 300ms linear 0s;
- transition: none;
- }
- .mdc-checkbox__native-control:checked ~ .mdc-checkbox__background,
- .mdc-checkbox__native-control:indeterminate ~ .mdc-checkbox__background {
- transition: border-color 90ms 0ms cubic-bezier(0, 0, 0.2, 1), background-color 90ms 0ms cubic-bezier(0, 0, 0.2, 1);
- }
- .mdc-checkbox__native-control:checked ~ .mdc-checkbox__background .mdc-checkbox__checkmark-path,
- .mdc-checkbox__native-control:indeterminate ~ .mdc-checkbox__background .mdc-checkbox__checkmark-path {
- stroke-dashoffset: 0;
- }
- .mdc-checkbox__background::before {
- position: absolute;
- -webkit-transform: scale(0, 0);
- transform: scale(0, 0);
- border-radius: 50%;
- opacity: 0;
- pointer-events: none;
- content: "";
- will-change: opacity, transform;
- transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
- transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
- transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
- }
- .mdc-checkbox__native-control:focus ~ .mdc-checkbox__background::before {
- -webkit-transform: scale(1);
- transform: scale(1);
- opacity: 0.12;
- transition: opacity 80ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 80ms 0ms cubic-bezier(0, 0, 0.2, 1);
- transition: opacity 80ms 0ms cubic-bezier(0, 0, 0.2, 1), transform 80ms 0ms cubic-bezier(0, 0, 0.2, 1);
- transition: opacity 80ms 0ms cubic-bezier(0, 0, 0.2, 1), transform 80ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 80ms 0ms cubic-bezier(0, 0, 0.2, 1);
- }
- .mdc-checkbox__native-control {
- position: absolute;
- margin: 0;
- padding: 0;
- opacity: 0;
- cursor: inherit;
- }
- .mdc-checkbox__native-control:disabled {
- cursor: default;
- pointer-events: none;
- }
- .mdc-checkbox--touch {
- margin-top: 4px;
- margin-bottom: 4px;
- margin-right: 4px;
- margin-left: 4px;
- }
- .mdc-checkbox--touch .mdc-checkbox__native-control {
- top: -4px;
- right: -4px;
- left: -4px;
- width: 48px;
- height: 48px;
- }
- .mdc-checkbox__native-control:checked ~ .mdc-checkbox__background .mdc-checkbox__checkmark {
- transition: opacity 180ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 180ms 0ms cubic-bezier(0, 0, 0.2, 1);
- transition: opacity 180ms 0ms cubic-bezier(0, 0, 0.2, 1), transform 180ms 0ms cubic-bezier(0, 0, 0.2, 1);
- transition: opacity 180ms 0ms cubic-bezier(0, 0, 0.2, 1), transform 180ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 180ms 0ms cubic-bezier(0, 0, 0.2, 1);
- opacity: 1;
- }
- .mdc-checkbox__native-control:checked ~ .mdc-checkbox__background .mdc-checkbox__mixedmark {
- -webkit-transform: scaleX(1) rotate(-45deg);
- transform: scaleX(1) rotate(-45deg);
- }
- .mdc-checkbox__native-control:indeterminate ~ .mdc-checkbox__background .mdc-checkbox__checkmark {
- -webkit-transform: rotate(45deg);
- transform: rotate(45deg);
- opacity: 0;
- transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
- transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
- transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
- }
- .mdc-checkbox__native-control:indeterminate ~ .mdc-checkbox__background .mdc-checkbox__mixedmark {
- -webkit-transform: scaleX(1) rotate(0deg);
- transform: scaleX(1) rotate(0deg);
- opacity: 1;
- }
- @-webkit-keyframes mdc-ripple-fg-radius-in {
- from {
- -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
- animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
- -webkit-transform: translate(var(--mdc-ripple-fg-translate-start, 0)) scale(1);
- transform: translate(var(--mdc-ripple-fg-translate-start, 0)) scale(1);
- }
- to {
- -webkit-transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
- transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
- }
- }
- @keyframes mdc-ripple-fg-radius-in {
- from {
- -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
- animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
- -webkit-transform: translate(var(--mdc-ripple-fg-translate-start, 0)) scale(1);
- transform: translate(var(--mdc-ripple-fg-translate-start, 0)) scale(1);
- }
- to {
- -webkit-transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
- transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
- }
- }
- @-webkit-keyframes mdc-ripple-fg-opacity-in {
- from {
- -webkit-animation-timing-function: linear;
- animation-timing-function: linear;
- opacity: 0;
- }
- to {
- opacity: var(--mdc-ripple-fg-opacity, 0);
- }
- }
- @keyframes mdc-ripple-fg-opacity-in {
- from {
- -webkit-animation-timing-function: linear;
- animation-timing-function: linear;
- opacity: 0;
- }
- to {
- opacity: var(--mdc-ripple-fg-opacity, 0);
- }
- }
- @-webkit-keyframes mdc-ripple-fg-opacity-out {
- from {
- -webkit-animation-timing-function: linear;
- animation-timing-function: linear;
- opacity: var(--mdc-ripple-fg-opacity, 0);
- }
- to {
- opacity: 0;
- }
- }
- @keyframes mdc-ripple-fg-opacity-out {
- from {
- -webkit-animation-timing-function: linear;
- animation-timing-function: linear;
- opacity: var(--mdc-ripple-fg-opacity, 0);
- }
- to {
- opacity: 0;
- }
- }
- .mdc-checkbox {
- --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-checkbox .mdc-checkbox__ripple::before,
- .mdc-checkbox .mdc-checkbox__ripple::after {
- position: absolute;
- border-radius: 50%;
- opacity: 0;
- pointer-events: none;
- content: "";
- }
- .mdc-checkbox .mdc-checkbox__ripple::before {
- transition: opacity 15ms linear, background-color 15ms linear;
- z-index: 1;
- }
- .mdc-checkbox.mdc-ripple-upgraded .mdc-checkbox__ripple::before {
- -webkit-transform: scale(var(--mdc-ripple-fg-scale, 1));
- transform: scale(var(--mdc-ripple-fg-scale, 1));
- }
- .mdc-checkbox.mdc-ripple-upgraded .mdc-checkbox__ripple::after {
- top: 0;
- /* @noflip */
- left: 0;
- -webkit-transform: scale(0);
- transform: scale(0);
- -webkit-transform-origin: center center;
- transform-origin: center center;
- }
- .mdc-checkbox.mdc-ripple-upgraded--unbounded .mdc-checkbox__ripple::after {
- top: var(--mdc-ripple-top, 0);
- /* @noflip */
- left: var(--mdc-ripple-left, 0);
- }
- .mdc-checkbox.mdc-ripple-upgraded--foreground-activation .mdc-checkbox__ripple::after {
- -webkit-animation: mdc-ripple-fg-radius-in 225ms forwards, mdc-ripple-fg-opacity-in 75ms forwards;
- animation: mdc-ripple-fg-radius-in 225ms forwards, mdc-ripple-fg-opacity-in 75ms forwards;
- }
- .mdc-checkbox.mdc-ripple-upgraded--foreground-deactivation .mdc-checkbox__ripple::after {
- -webkit-animation: mdc-ripple-fg-opacity-out 150ms;
- animation: mdc-ripple-fg-opacity-out 150ms;
- -webkit-transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
- transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
- }
- .mdc-checkbox .mdc-checkbox__ripple::before, .mdc-checkbox .mdc-checkbox__ripple::after {
- background-color: #000;
- /* @alternate */
- background-color: var(--mdc-theme-on-surface, #000);
- }
- .mdc-checkbox:hover .mdc-checkbox__ripple::before {
- opacity: 0.04;
- }
- .mdc-checkbox.mdc-ripple-upgraded--background-focused .mdc-checkbox__ripple::before, .mdc-checkbox:not(.mdc-ripple-upgraded):focus .mdc-checkbox__ripple::before {
- transition-duration: 75ms;
- opacity: 0.12;
- }
- .mdc-checkbox:not(.mdc-ripple-upgraded) .mdc-checkbox__ripple::after {
- transition: opacity 150ms linear;
- }
- .mdc-checkbox:not(.mdc-ripple-upgraded):active .mdc-checkbox__ripple::after {
- transition-duration: 75ms;
- opacity: 0.12;
- }
- .mdc-checkbox.mdc-ripple-upgraded {
- --mdc-ripple-fg-opacity: 0.12;
- }
- .mdc-checkbox .mdc-checkbox__ripple::before,
- .mdc-checkbox .mdc-checkbox__ripple::after {
- top: calc(50% - 50%);
- /* @noflip */
- left: calc(50% - 50%);
- width: 100%;
- height: 100%;
- }
- .mdc-checkbox.mdc-ripple-upgraded .mdc-checkbox__ripple::before,
- .mdc-checkbox.mdc-ripple-upgraded .mdc-checkbox__ripple::after {
- top: var(--mdc-ripple-top, calc(50% - 50%));
- /* @noflip */
- left: var(--mdc-ripple-left, calc(50% - 50%));
- width: var(--mdc-ripple-fg-size, 100%);
- height: var(--mdc-ripple-fg-size, 100%);
- }
- .mdc-checkbox.mdc-ripple-upgraded .mdc-checkbox__ripple::after {
- width: var(--mdc-ripple-fg-size, 100%);
- height: var(--mdc-ripple-fg-size, 100%);
- }
- .mdc-checkbox__ripple {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- pointer-events: none;
- }
- .mdc-ripple-upgraded--background-focused .mdc-checkbox__background::before {
- content: none;
- }
- /*# sourceMappingURL=mdc.checkbox.css.map*/
|