mirror of
https://github.com/sissbruecker/linkding.git
synced 2025-08-13 21:49:26 +02:00

* add bundle model and query logic * cleanup tests * add basic form * add success message * Add form tests * Add bundle list view * fix edit view * Add remove button * Add basic preview logic * Make pagination use absolute URLs * Hide bookmark edits when rendering preview * Render bookmark list in preview * Reorder bundles * Show bundles in bookmark view * Make bookmark search respect selected bundle * UI tweaks * Fix bookmark scope * Improve bundle preview * Skip preview if form is submitted * Show correct preview after invalid form submission * Add option to hide bundles * Merge new migrations * Add tests for bundle menu * Improve check for preview being removed
35 lines
567 B
CSS
35 lines
567 B
CSS
.bundles-page {
|
|
h1 {
|
|
font-size: var(--font-size-lg);
|
|
margin-bottom: var(--unit-6);
|
|
}
|
|
|
|
.item-list {
|
|
.list-item .list-item-icon {
|
|
cursor: grab;
|
|
}
|
|
|
|
.list-item.drag-start {
|
|
--secondary-border-color: transparent;
|
|
}
|
|
|
|
.list-item.dragging > * {
|
|
visibility: hidden;
|
|
}
|
|
}
|
|
}
|
|
|
|
.bundles-editor-page {
|
|
&.grid {
|
|
gap: var(--unit-9);
|
|
}
|
|
|
|
.form-footer {
|
|
position: sticky;
|
|
bottom: 0;
|
|
border-top: solid 1px var(--secondary-border-color);
|
|
background: var(--body-color);
|
|
padding: var(--unit-3) 0;
|
|
}
|
|
}
|