* 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>
130 lines
2.5 KiB
SCSS
130 lines
2.5 KiB
SCSS
@import "open-color/open-color";
|
|
|
|
.excalidraw {
|
|
.library-menu-items-container {
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
.layer-ui__library {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
flex: 1 1 auto;
|
|
}
|
|
|
|
.library-actions-counter {
|
|
background-color: var(--color-primary);
|
|
color: var(--color-primary-light);
|
|
font-weight: bold;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 50%;
|
|
width: 1rem;
|
|
height: 1rem;
|
|
position: absolute;
|
|
bottom: -0.25rem;
|
|
right: -0.25rem;
|
|
font-size: 0.625rem;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.layer-ui__library-message {
|
|
padding: 2rem;
|
|
min-width: 200px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
flex-grow: 1;
|
|
justify-content: center;
|
|
|
|
span {
|
|
font-size: 0.8em;
|
|
}
|
|
}
|
|
|
|
.publish-library-success {
|
|
.Dialog__content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
&-close.ToolIcon_type_button {
|
|
background-color: $oc-blue-6;
|
|
align-self: flex-end;
|
|
&:hover {
|
|
background-color: $oc-blue-8;
|
|
}
|
|
.ToolIcon__icon {
|
|
width: auto;
|
|
font-size: 1rem;
|
|
color: $oc-white;
|
|
padding: 0 0.5rem;
|
|
}
|
|
}
|
|
}
|
|
|
|
.library-menu-control-buttons {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 0.625rem;
|
|
}
|
|
|
|
.library-menu-browse-button {
|
|
flex: 1;
|
|
|
|
height: var(--lg-button-size);
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
overflow: hidden;
|
|
position: relative;
|
|
|
|
border-radius: var(--border-radius-lg);
|
|
background-color: var(--color-primary);
|
|
color: $oc-white;
|
|
text-align: center;
|
|
white-space: nowrap;
|
|
text-decoration: none !important;
|
|
|
|
font-weight: 600;
|
|
font-size: 0.75rem;
|
|
|
|
&:hover {
|
|
background-color: var(--color-primary-darker);
|
|
}
|
|
&:active {
|
|
background-color: var(--color-primary-darkest);
|
|
}
|
|
}
|
|
|
|
&.theme--dark {
|
|
.library-menu-browse-button {
|
|
color: var(--color-gray-100);
|
|
}
|
|
}
|
|
|
|
&.excalidraw--mobile .library-menu-browse-button {
|
|
height: var(--default-button-size);
|
|
}
|
|
|
|
.layer-ui__library .dropdown-menu {
|
|
width: auto;
|
|
top: initial;
|
|
right: 0;
|
|
left: initial;
|
|
bottom: 100%;
|
|
margin-bottom: 0.625rem;
|
|
|
|
.dropdown-menu-container {
|
|
width: 196px;
|
|
box-shadow: var(--library-dropdown-shadow);
|
|
border-radius: var(--border-radius-lg);
|
|
padding: 0.25rem 0.5rem;
|
|
}
|
|
}
|
|
}
|