diff --git a/bookmarks/styles/bookmarks.scss b/bookmarks/styles/bookmarks.scss index feb1fb7..3fe88e9 100644 --- a/bookmarks/styles/bookmarks.scss +++ b/bookmarks/styles/bookmarks.scss @@ -56,6 +56,13 @@ ul.bookmark-list { color: darken($gray-color, 10%); } } + + .actions .btn-link.bm-remove-confirm { + color: $error-color; + &:hover { + text-decoration: underline; + } + } } .bookmark-pagination { diff --git a/bookmarks/templates/bookmarks/bookmark_list.html b/bookmarks/templates/bookmarks/bookmark_list.html index 606f757..b1510e4 100644 --- a/bookmarks/templates/bookmarks/bookmark_list.html +++ b/bookmarks/templates/bookmarks/bookmark_list.html @@ -32,8 +32,7 @@ class="btn btn-link btn-sm">Archive {% endif %} Remove + class="btn btn-link btn-sm bm-remove">Remove {% endfor %} @@ -42,3 +41,38 @@
{% pagination bookmarks %}
+ +{# Enhance delete links to show inline confirmation #} + \ No newline at end of file