rewrite_code #12

Merged
gru merged 17 commits from rewrite_code into master 2026-03-26 12:00:47 +01:00
Showing only changes of commit 61a3121b25 - Show all commits

View File

@@ -4980,7 +4980,7 @@ body.sorting-active .shopping-item-row .large-checkbox {
min-width: 5.4rem;
padding: 0 .72rem !important;
}
}
.shopping-action-btn--countdown,
.endpoint-list_share .shopping-action-btn--countdown,
.endpoint-shared_list .shopping-action-btn--countdown,
@@ -5856,3 +5856,22 @@ body:not(.sorting-active) .drag-handle {
grid-template-columns: 1fr;
}
}
/* mobile hotfix 2026-03-25: keep share-list item text top-aligned next to wide restore button */
@media (max-width: 575.98px) {
.endpoint-list_share .shopping-item-head,
.endpoint-shared_list .shopping-item-head {
display: grid;
grid-template-columns: minmax(0, 1fr) auto;
align-items: start;
column-gap: .45rem;
}
.endpoint-list_share .shopping-item-actions,
.endpoint-shared_list .shopping-item-actions {
align-self: start;
margin-left: 0;
justify-self: end;
}
}