chore(collections): fix alignment of collection properties in relation to content

This commit is contained in:
Elian Doran 2026-01-31 11:50:14 +02:00
parent 1c9f8a2540
commit 0e164b9daa
No known key found for this signature in database
5 changed files with 8 additions and 12 deletions

View File

@ -1,7 +1,7 @@
.note-list-widget {
min-height: 0;
max-width: var(--max-content-width); /* Inherited from .note-split */
overflow: auto;
contain: none !important;
}
@ -11,10 +11,6 @@ body.prefers-centered-content .note-list-widget:not(.full-height) {
margin-inline: auto;
}
.note-list-widget .note-list {
padding-block: 10px;
}
.note-list-widget.full-height,
.note-list-widget.full-height .note-list-widget-content {
height: 100%;
@ -29,4 +25,4 @@ body.prefers-centered-content .note-list-widget:not(.full-height) {
text-decoration: underline;
font-weight: bold;
}
/* #endregion */
/* #endregion */

View File

@ -21,7 +21,7 @@
outline: 0;
height: 100%;
user-select: none;
padding: 10px;
padding: 0;
@media (max-width: 991px) {
padding: 0;
@ -52,6 +52,7 @@
--fc-border-color: var(--main-border-color);
--fc-neutral-bg-color: var(--launcher-pane-background-color);
--fc-list-event-hover-bg-color: var(--left-pane-item-hover-background);
padding: 0 12px;
}
.calendar-container .fc-list-sticky .fc-list-day > * {

View File

@ -3,7 +3,6 @@
position: relative;
height: 100%;
user-select: none;
padding: 0 5px 0 10px;
.tabulator-tableholder {
height: unset !important;

View File

@ -5,7 +5,7 @@
> .inline-title,
> .note-detail > .note-detail-editable-text,
> .note-list-widget:not(.full-height) {
> .note-list-widget:not(.full-height) .note-list-wrapper {
padding-inline: 24px;
}

View File

@ -1,12 +1,11 @@
.collection-properties {
padding: 0;
padding: 0.55em 12px;
display: flex;
gap: 0.25em;
align-items: center;
width: 100%;
max-width: unset;
font-size: 0.8em;
margin-bottom: 1em;
.dropdown-menu {
input.form-control {
@ -30,10 +29,11 @@
@media (max-width: 991px) {
flex-wrap: wrap;
margin-bottom: 0.5em;
padding: 0.55em 1em;
>div {
flex-grow: 1;
justify-content: center;
}
}
}