fix: right sidebar header wrap and content padding

pull/9234/merge
Konstantinos Kaloutas 2023-08-21 19:59:33 +03:00 committed by Tienson Qin
parent fbee3614f8
commit 9507f0efe6
2 changed files with 5 additions and 6 deletions

View File

@ -653,13 +653,10 @@ html[data-theme='dark'] {
min-height: 100px;
.sidebar-item-header {
white-space: nowrap;
.breadcrumb {
margin-top: 0;
margin-bottom: 0;
text-overflow: ellipsis;
overflow: hidden;
text-align: left;
}
}

View File

@ -266,10 +266,12 @@
(context-menu-content db-id idx block-type collapsed? block-count close-fn)))
[:button.button.close {:title (t :right-side-bar/pane-close)
:on-click #(state/sidebar-remove-block! idx)} (ui/icon "x")]]]
[:div.scrollbar-spacing.p-4 {:role "region"
[:div.pt-4.p-1 {:role "region"
:id (str "sidebar-panel-content-" idx)
:aria-labelledby (str "sidebar-panel-header-" idx)
:class (if collapsed? "hidden" "initial")}
:class (util/classnames [{:hidden collapsed?
:initial (not collapsed?)
:p-4 (not (contains? #{:page :block :contents} block-type))}])}
(inner-component component (not drag-from))]
(when drag-from (drop-area idx))])]
(drop-indicator idx drag-to)]))))