* 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>
129 lines
2.5 KiB
SCSS
129 lines
2.5 KiB
SCSS
@import "open-color/open-color";
|
|
@import "../../css/variables.module";
|
|
|
|
.excalidraw {
|
|
.Sidebar {
|
|
&__close-btn,
|
|
&__pin-btn,
|
|
&__dropdown-btn {
|
|
@include outlineButtonStyles;
|
|
width: var(--lg-button-size);
|
|
height: var(--lg-button-size);
|
|
padding: 0;
|
|
|
|
svg {
|
|
width: var(--lg-icon-size);
|
|
height: var(--lg-icon-size);
|
|
}
|
|
}
|
|
|
|
&__pin-btn {
|
|
&--pinned {
|
|
background-color: var(--color-primary);
|
|
border-color: var(--color-primary);
|
|
|
|
svg {
|
|
color: #fff;
|
|
}
|
|
|
|
&:hover,
|
|
&:active {
|
|
background-color: var(--color-primary-darker);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
&.theme--dark {
|
|
.Sidebar {
|
|
&__pin-btn {
|
|
&--pinned {
|
|
svg {
|
|
color: var(--color-gray-90);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.layer-ui__sidebar {
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
z-index: 5;
|
|
margin: 0;
|
|
|
|
:root[dir="rtl"] & {
|
|
left: 0;
|
|
right: auto;
|
|
}
|
|
|
|
background-color: var(--sidebar-bg-color);
|
|
|
|
box-shadow: var(--sidebar-shadow);
|
|
|
|
&--docked {
|
|
box-shadow: none;
|
|
}
|
|
|
|
overflow: hidden;
|
|
border-radius: 0;
|
|
width: calc(#{$right-sidebar-width} - var(--space-factor) * 2);
|
|
|
|
border-left: 1px solid var(--sidebar-border-color);
|
|
|
|
:root[dir="rtl"] & {
|
|
border-right: 1px solid var(--sidebar-border-color);
|
|
border-left: 0;
|
|
}
|
|
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
|
|
.Island {
|
|
box-shadow: none;
|
|
}
|
|
|
|
.ToolIcon__icon {
|
|
border-radius: var(--border-radius-md);
|
|
}
|
|
|
|
.ToolIcon__icon__close {
|
|
.Modal__close {
|
|
width: calc(var(--space-factor) * 7);
|
|
height: calc(var(--space-factor) * 7);
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
color: var(--color-text);
|
|
}
|
|
}
|
|
|
|
.Island {
|
|
--padding: 0;
|
|
background-color: var(--island-bg-color);
|
|
border-radius: var(--border-radius-lg);
|
|
padding: calc(var(--padding) * var(--space-factor));
|
|
position: relative;
|
|
transition: box-shadow 0.5s ease-in-out;
|
|
}
|
|
}
|
|
|
|
.layer-ui__sidebar__header {
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
width: 100%;
|
|
padding: 1rem;
|
|
border-bottom: 1px solid var(--sidebar-border-color);
|
|
}
|
|
|
|
.layer-ui__sidebar__header__buttons {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.625rem;
|
|
}
|
|
}
|