linkding/bookmarks/styles/bookmarks.scss
Sascha Ißbrücker 348a536aa3
#23 Prevent bookmark duplicates
* Show hint if URL is already bookmarked

* Remove hint if URL belongs to edited bookmark

* Fix query param encoding

* Update bookmark instead of duplicating it

Co-authored-by: Sascha Ißbrücker <sissbruecker@lyska.io>
2020-09-13 08:46:07 +02:00

70 lines
924 B
SCSS

.bookmarks-page {
.search input[type=search] {
width: 200px;
}
}
ul.bookmark-list {
list-style: none;
margin: 0;
padding: 0;
.description {
color: $gray-color-dark;
a {
color: $alternative-color;
}
}
.actions .btn-link {
color: $gray-color;
padding-left: 0;
padding-right: 0;
&:focus,
&:hover,
&:active,
&.active {
color: darken($gray-color, 10%);
}
}
}
.tag-cloud {
a {
color: $alternative-color;
}
.group {
margin-bottom: 0.4rem;
}
.highlight-char {
font-weight: bold;
text-transform: uppercase;
color: $alternative-color-dark;
}
}
.bookmarks-form {
.form-icon.loading {
visibility: hidden;
}
.form-input-hint.bookmark-exists {
visibility: hidden;
color: $warning-color;
a {
color: $warning-color;
text-decoration: underline;
font-weight: bold;
}
}
}