mirror of
https://github.com/sissbruecker/linkding.git
synced 2025-08-08 03:08:29 +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
30 lines
471 B
CSS
30 lines
471 B
CSS
/* Main layout */
|
|
body {
|
|
margin: 20px 10px;
|
|
|
|
@media (min-width: 600px) {
|
|
/* Horizontal offset accounts for checkboxes that show up in bulk edit mode */
|
|
margin: 20px 32px;
|
|
}
|
|
}
|
|
|
|
header {
|
|
margin-bottom: var(--unit-9);
|
|
|
|
a.app-link:hover {
|
|
text-decoration: none;
|
|
}
|
|
|
|
.app-logo {
|
|
width: 28px;
|
|
height: 28px;
|
|
}
|
|
|
|
.app-name {
|
|
margin-left: var(--unit-3);
|
|
font-size: var(--font-size-lg);
|
|
font-weight: 500;
|
|
line-height: 1.2;
|
|
}
|
|
}
|