mirror of
https://github.com/dergigi/boris.git
synced 2026-02-22 07:25:03 +01:00
feat: enhance borders for reading list cards
- Add specific border styling for .bookmarks-list .individual-bookmark - Use darker border color (#444) for better visibility - Add background color (#1a1a1a) to make cards more distinct - Enhance hover states with brighter border (#555) and background (#252525) - Use !important to ensure styles override existing CSS - Improves visual separation and card definition in reading list
This commit is contained in:
@@ -78,6 +78,17 @@
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
/* Enhanced border styling for reading list cards */
|
||||
.bookmarks-list .individual-bookmark {
|
||||
border: 1px solid #444 !important;
|
||||
background: #1a1a1a !important;
|
||||
}
|
||||
|
||||
.bookmarks-list .individual-bookmark:hover {
|
||||
border-color: #555 !important;
|
||||
background: #252525 !important;
|
||||
}
|
||||
|
||||
.bookmark-item {
|
||||
padding: 1rem;
|
||||
background: var(--card-bg, #fff);
|
||||
|
||||
Reference in New Issue
Block a user