daily bookmarks

This commit is contained in:
2025-12-02 21:21:08 +01:00
parent 3ff25d3f7e
commit 839bd24309
10 changed files with 3303 additions and 49 deletions

View File

@@ -452,6 +452,36 @@ h1 {
justify-content: flex-end;
}
.merge-controls {
display: flex;
flex-direction: column;
gap: 4px;
padding: 0;
border: none;
background: transparent;
}
.merge-actions {
display: flex;
align-items: center;
gap: 6px;
flex-wrap: wrap;
}
.merge-actions .btn {
height: 36px;
display: inline-flex;
align-items: center;
justify-content: center;
padding: 8px 12px;
line-height: 1.1;
}
#mergeModeToggle.active {
background: #0f172a;
color: #fff;
}
.search-filter-toggle {
display: inline-flex;
align-items: center;
@@ -631,6 +661,25 @@ h1 {
flex: 1;
}
.merge-select {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 4px 8px;
border: 1px dashed #cbd5e1;
border-radius: 10px;
background: #f8fafc;
color: #0f172a;
font-size: 12px;
flex-shrink: 0;
}
.merge-select input {
width: 16px;
height: 16px;
accent-color: #0f172a;
}
.post-index {
font-size: 12px;
color: #6b7280;
@@ -1519,6 +1568,48 @@ h1 {
margin-bottom: 12px;
}
.bookmark-quicksearch {
border: 1px solid #e5e7eb;
background: #f9fafb;
border-radius: 12px;
padding: 12px 14px;
display: flex;
flex-direction: column;
gap: 10px;
}
.bookmark-quicksearch__fields {
display: flex;
flex-wrap: wrap;
align-items: flex-end;
gap: 12px;
}
.bookmark-quicksearch__field {
display: flex;
flex-direction: column;
gap: 6px;
flex: 1 1 260px;
}
.bookmark-quicksearch__field span {
font-size: 13px;
color: #65676b;
}
.bookmark-quicksearch__field input {
border: 1px solid #d0d3d9;
border-radius: 8px;
padding: 8px 10px;
font-size: 14px;
}
.bookmark-quicksearch__hint {
margin: 0;
font-size: 12px;
color: #4b5563;
}
.bookmark-panel__search {
display: flex;
flex-direction: column;