| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- /**
- * @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-menu-surface {
- display: none;
- position: absolute;
- box-sizing: border-box;
- margin: 0;
- padding: 0;
- -webkit-transform: scale(1);
- transform: scale(1);
- -webkit-transform-origin: top left;
- transform-origin: top left;
- opacity: 0;
- overflow: auto;
- will-change: transform, opacity;
- 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);
- /* @noflip */
- /*rtl:ignore*/
- transform-origin-left: top left;
- /* @noflip */
- /*rtl:ignore*/
- transform-origin-right: top right;
- }
- .mdc-menu-surface:focus {
- outline: none;
- }
- .mdc-menu-surface--animating-open {
- display: inline-block;
- -webkit-transform: scale(0.8);
- transform: scale(0.8);
- opacity: 0;
- }
- .mdc-menu-surface--open {
- display: inline-block;
- -webkit-transform: scale(1);
- transform: scale(1);
- opacity: 1;
- }
- .mdc-menu-surface--animating-closed {
- display: inline-block;
- opacity: 0;
- }
- [dir=rtl] .mdc-menu-surface, .mdc-menu-surface[dir=rtl] {
- /*rtl:begin:ignore*/
- /* @noflip */
- /*rtl:ignore*/
- transform-origin-left: top right;
- /* @noflip */
- /*rtl:ignore*/
- transform-origin-right: top left;
- /*rtl:end:ignore*/
- }
- .mdc-menu-surface--anchor {
- position: relative;
- overflow: visible;
- }
- .mdc-menu-surface--fixed {
- position: fixed;
- }
- .mdc-menu-surface--fullwidth {
- width: 100%;
- }
- .mdc-menu-surface {
- max-width: calc(100vw - 32px);
- /* @alternate */
- max-width: var(--mdc-menu-max-width, calc(100vw - 32px));
- max-height: calc(100vh - 32px);
- /* @alternate */
- max-height: var(--mdc-menu-max-height, calc(100vh - 32px));
- z-index: 8;
- transition: opacity 0.03s linear, height 250ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 0.12s cubic-bezier(0, 0, 0.2, 1);
- transition: opacity 0.03s linear, transform 0.12s cubic-bezier(0, 0, 0.2, 1), height 250ms cubic-bezier(0, 0, 0.2, 1);
- transition: opacity 0.03s linear, transform 0.12s cubic-bezier(0, 0, 0.2, 1), height 250ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 0.12s cubic-bezier(0, 0, 0.2, 1);
- background-color: #fff;
- /* @alternate */
- background-color: var(--mdc-theme-surface, #fff);
- color: #000;
- /* @alternate */
- color: var(--mdc-theme-on-surface, #000);
- border-radius: 4px;
- /* @alternate */
- border-radius: var(--mdc-shape-medium, 4px);
- }
- .mdc-menu-surface--animating-closed {
- transition: opacity 0.075s linear;
- }
- /*# sourceMappingURL=mdc.menu-surface.css.map*/
|