e9cae918a7
* feat: Sidebar tabs support [wip] * tab trigger styling tweaks * add `:hover` & `:active` states * replace `@dwelle/tunnel-rat` with `tunnel-rat` * make stuff more explicit - remove `Sidebar.Header` fallback (host apps need to render manually), and stop tunneling it (render in place) - make `docked` state explicit - stop tunneling `Sidebar.TabTriggers` (render in place) * redesign sidebar / library as per latest spec * support no label on `Sidebar.Trigger` * add Sidebar `props.onStateChange` * style fixes * make `appState.isSidebarDocked` into a soft user preference * px -> rem & refactor * remove `props.renderSidebar` * update tests * remove * refactor * rename constants * tab triggers styling fixes * factor out library-related logic from generic sidebar trigger * change `props.onClose` to `onToggle` * rename `props.value` -> `props.tab` * add displayNames * allow HTMLAttributes on applicable compos * fix example App * more styling tweaks and fixes * fix not setting `dockable` * more style fixes * fix and align sidebar header button styling * make DefaultSidebar dockable on if host apps supplies `onDock` * stop `Sidebar.Trigger` hiding label on mobile this should be only the default sidebar trigger behavior, and for that we don't need to use `device` hook as we handle in CSS * fix `dockable` prop of defaultSidebar * remove extra `typescript` dep * remove `defaultTab` prop in favor of explicit `tab` value in `<Sidebar.Trigger/>` and `toggleSidebar()`, to reduce API surface area and solve inconsistency of `appState.openSidebar.tab` not reflecting actual UI value if `defaultTab` was supported (without additional syncing logic which feels like the wrong solution). * remove `onToggle` in favor of `onStateChange` reducing API surface area * fix restore * comment no longer applies * reuse `Button` component in sidebar buttons * fix tests * split Sidebar sub-components into files * remove `props.dockable` in favor of `props.onDock` only * split tests * fix sidebar showing dock button if no `props.docked` supplied & add more tests * reorder and group sidebar tests * clarify * rename classes & dedupe css * refactor tests * update changelog * update changelog --------- Co-authored-by: barnabasmolnar <barnabas@excalidraw.com>
79 lines
1.5 KiB
SCSS
79 lines
1.5 KiB
SCSS
@import "open-color/open-color";
|
|
|
|
.excalidraw {
|
|
--container-padding-y: 1.5rem;
|
|
--container-padding-x: 0.75rem;
|
|
|
|
.library-menu-items__no-items {
|
|
text-align: center;
|
|
color: var(--color-gray-70);
|
|
line-height: 1.5;
|
|
font-size: 0.875rem;
|
|
width: 100%;
|
|
|
|
&__label {
|
|
color: var(--color-primary);
|
|
font-weight: bold;
|
|
font-size: 1.125rem;
|
|
margin-bottom: 0.75rem;
|
|
}
|
|
}
|
|
|
|
&.theme--dark {
|
|
.library-menu-items__no-items {
|
|
color: var(--color-gray-40);
|
|
}
|
|
}
|
|
|
|
.library-menu-items-container {
|
|
display: flex;
|
|
flex-grow: 1;
|
|
flex-shrink: 1;
|
|
flex-basis: 0;
|
|
overflow-y: auto;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
justify-content: center;
|
|
margin: 0;
|
|
border-bottom: 1px solid var(--sidebar-border-color);
|
|
|
|
position: relative;
|
|
|
|
&__row {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, 1fr);
|
|
gap: 1rem;
|
|
}
|
|
|
|
&__items {
|
|
row-gap: 0.5rem;
|
|
padding: var(--container-padding-y) 0;
|
|
flex: 1;
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
&__header {
|
|
color: var(--color-primary);
|
|
font-size: 1.125rem;
|
|
font-weight: bold;
|
|
margin-bottom: 0.75rem;
|
|
|
|
&--excal {
|
|
margin-top: 2rem;
|
|
}
|
|
}
|
|
|
|
.separator {
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
font-weight: 500;
|
|
font-size: 0.9rem;
|
|
margin: 0.6em 0.2em;
|
|
color: var(--text-primary-color);
|
|
}
|
|
}
|
|
}
|