123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- .drawer-portal {
- position: absolute;
- left: 0;
- right: 0;
- bottom: 0;
- z-index: $drawerZ;
- }
-
- .drawer-menu {
- max-height: 50vh;
- background: #242528;
- border-radius: 16px 16px 0 0;
- overflow-y: auto;
-
- &.expanded {
- max-height: 80vh;
- }
-
- .drawer-toggle {
- display: flex;
- justify-content: center;
- align-items: center;
- height: 44px;
- cursor: pointer;
-
- svg {
- fill: none;
- }
- }
-
- .popupmenu {
- margin: auto;
- width: 100%;
- }
-
- .popupmenu__item {
- height: 48px;
- }
-
- &#{&} .overflow-menu {
- margin: auto;
- font-size: 1.2em;
- list-style-type: none;
- padding: 0;
-
- .overflow-menu-item {
- box-sizing: border-box;
- height: 48px;
- padding: 12px 16px;
-
- align-items: center;
- color: $overflowMenuItemColor;
- cursor: pointer;
- display: flex;
- font-size: 16px;
-
- div {
- display: flex;
- flex-direction: row;
- align-items: center;
- }
-
- &.unclickable {
- cursor: default;
- }
- @media (hover: hover) and (pointer: fine) {
- &.unclickable:hover {
- background: inherit;
- }
- }
- &.disabled {
- cursor: initial;
- color: #3b475c;
- }
- }
-
- .profile-text {
- max-width: 100%;
- text-overflow: ellipsis;
- overflow: hidden;
- white-space: nowrap;
- }
- }
- }
|