8420aecb34
* feat: new Menu Component API * allow valid children types * introduce menu group to group items * Add lang footer * use display name * displayName * define types inside * fix default menu * add json export to menu * fix * simplify expression * put open menu into own compo to optimize perf So that we don't rerun `useOutsideClickHook` (and rebind event listeners all the time) * naming tweaks * rename MenuComponents->MenuDefaultItems and export default items from Menu.Items * import Menu.scss in Menu.tsx * move menu scss to excal app * Don't filter children inside menu group * move E+ out of socials * support style prop for MenuItem and MenuGroup * Support header in menu group and add Excalidraw links header for default items in social section * rename header to title * fix padding for lang * render menu in mobile * review fixes * tweaks * Export collaborators and show in mobile menu * revert .env * lint :p * again lint * show correct actions in view mode for mobile * Whitelist Collaborators Comp * mobile styling * padding * don't show nerds when menu open in mobile * lint :( * hide shortcuts * refactor userlist to support mobile and keep a wrapper comp for excal app * use only UserList * render only on mobile for default items * remove unused hooks * Show collab button in menu when onCollabButtonClick present and hide export when UIOptions.canvasActions.export is false * fix tests * lint * inject userlist inside menu on mobile * revert userlist * move menu socials to default menu * fix collab * use meny in library * Make Menu generic and create hamburgemenu for public excal menu and use menu in library as well * use appState.openMenu for mobile * fix tests * styling fixes and support style and class name in menu content * fix test * rename MenuDefaultItems->DefaultItems * move footer css to its own comp * rename HamburgerMenu -> MainMenu * rename menu -> dropdownMenu and update classes, onClick->onToggle * close main menu when dialog closes * by bye filtering * update docs * fix lint * update example, docs for useDevice and footer in mobile, rename menu ->DropDownMenu everywhere * spec * remove isMenuOpenAtom and set openMenu as canvas for main menu, render decreases in specs :) * [temp] remove cyclic depenedency to fix build * hack- update appstate to sync lang change * Add more specs * wip: rewrite MainMenu footer * fix margin * fix snaps * not needed as lang list no more imported * simplify custom footer rendering * Add DropdownMenuItemLink and DropdownMenuItemCustom and update API, docs * fix `MainMenu.ItemCustom` * naming * use onSelect and base class for custom items * fix lint * fix snap * use custom item for lang * update docs * fix * properly use `MainMenu.ItemCustom` for `LanguageList` * add margin top to custom items * flex Co-authored-by: dwelle <luzar.david@gmail.com>
95 lines
2.1 KiB
SCSS
95 lines
2.1 KiB
SCSS
@import "open-color/open-color";
|
|
@import "../css/variables.module";
|
|
|
|
.excalidraw {
|
|
.layer-ui__wrapper.animate {
|
|
transition: width 0.1s ease-in-out;
|
|
}
|
|
.layer-ui__wrapper {
|
|
// when the rightside sidebar is docked, we need to resize the UI by its
|
|
// width, making the nested UI content shift to the left. To do this,
|
|
// we need the UI container to actually have dimensions set, but
|
|
// then we also need to disable pointer events else the canvas below
|
|
// wouldn't be interactive.
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
pointer-events: none;
|
|
z-index: var(--zIndex-layerUI);
|
|
|
|
&__top-right {
|
|
display: flex;
|
|
gap: 0.75rem;
|
|
}
|
|
|
|
&__footer {
|
|
width: 100%;
|
|
|
|
&-right {
|
|
z-index: 100;
|
|
display: flex;
|
|
}
|
|
}
|
|
|
|
.zen-mode-transition {
|
|
transition: transform 0.5s ease-in-out;
|
|
|
|
:root[dir="ltr"] &.transition-left {
|
|
transform: translate(-999px, 0);
|
|
}
|
|
|
|
:root[dir="ltr"] &.transition-right {
|
|
transform: translate(999px, 0);
|
|
}
|
|
|
|
:root[dir="rtl"] &.transition-left {
|
|
transform: translate(999px, 0);
|
|
}
|
|
|
|
:root[dir="rtl"] &.transition-right {
|
|
transform: translate(-999px, 0);
|
|
}
|
|
|
|
&.layer-ui__wrapper__footer-left--transition-bottom {
|
|
transform: translate(0, 92px);
|
|
}
|
|
}
|
|
|
|
.disable-zen-mode {
|
|
height: 30px;
|
|
position: absolute;
|
|
bottom: 10px;
|
|
[dir="ltr"] & {
|
|
right: 15px;
|
|
}
|
|
[dir="rtl"] & {
|
|
left: 15px;
|
|
}
|
|
font-size: 10px;
|
|
padding: 10px;
|
|
font-weight: 500;
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
transition: visibility 0s linear 0s, opacity 0.5s;
|
|
|
|
&--visible {
|
|
opacity: 1;
|
|
visibility: visible;
|
|
transition: visibility 0s linear 300ms, opacity 0.5s;
|
|
transition-delay: 0.8s;
|
|
}
|
|
}
|
|
|
|
.layer-ui__wrapper__footer-left,
|
|
.layer-ui__wrapper__footer-right,
|
|
.disable-zen-mode--visible {
|
|
pointer-events: all;
|
|
}
|
|
|
|
.layer-ui__wrapper__footer-right {
|
|
margin-top: auto;
|
|
margin-bottom: auto;
|
|
}
|
|
}
|
|
}
|