diff --git a/bookmarks/frontend/behaviors/filter-drawer.js b/bookmarks/frontend/behaviors/filter-drawer.js index 8645b73..e5c340e 100644 --- a/bookmarks/frontend/behaviors/filter-drawer.js +++ b/bookmarks/frontend/behaviors/filter-drawer.js @@ -34,7 +34,7 @@ class FilterDrawerTriggerBehavior extends Behavior { +
`; @@ -70,13 +70,13 @@ class FilterDrawerBehavior extends ModalBehavior { teleport() { const content = this.element.querySelector(".content"); - const sidePanel = document.querySelector("section.side-panel"); + const sidePanel = document.querySelector(".side-panel"); content.append(...sidePanel.children); this.mapHeading(content, "h2", "h3"); } teleportBack() { - const sidePanel = document.querySelector("section.side-panel"); + const sidePanel = document.querySelector(".side-panel"); const content = this.element.querySelector(".content"); sidePanel.append(...content.children); this.mapHeading(sidePanel, "h3", "h2"); diff --git a/bookmarks/styles/bookmark-form.css b/bookmarks/styles/bookmark-form.css index f84842e..820fab8 100644 --- a/bookmarks/styles/bookmark-form.css +++ b/bookmarks/styles/bookmark-form.css @@ -1,5 +1,5 @@ .bookmarks-form-page { - section { + main { max-width: 550px; margin: 0 auto; } diff --git a/bookmarks/styles/bookmark-page.css b/bookmarks/styles/bookmark-page.css index 223ec49..f3f5d7d 100644 --- a/bookmarks/styles/bookmark-page.css +++ b/bookmarks/styles/bookmark-page.css @@ -30,11 +30,11 @@ } &.collapse-side-panel { - section.main { + main { grid-column: span var(--grid-columns); } - section.side-panel { + .side-panel { display: none; } @@ -459,7 +459,7 @@ ul.bookmark-list { /* Hide section border when bulk edit bar is opened, otherwise borders overlap in dark mode due to using contrast colors */ - &.active section:first-of-type .content-area-header { + &.active .main .section-header { border-bottom-color: transparent; } diff --git a/bookmarks/styles/components.css b/bookmarks/styles/components.css index b3c6f87..9f4c021 100644 --- a/bookmarks/styles/components.css +++ b/bookmarks/styles/components.css @@ -1,36 +1,31 @@ /* Shared components */ -/* Content area component */ -section.content-area { +/* Section header component */ +.section-header { + border-bottom: solid 1px var(--secondary-border-color); + display: flex; + flex-wrap: wrap; + column-gap: var(--unit-5); + padding-bottom: var(--unit-2); + margin-bottom: var(--unit-4); + + h1, h2, h3 { font-size: var(--font-size-lg); + flex: 0 0 auto; + line-height: var(--unit-9); + margin: 0; } - .content-area-header { - border-bottom: solid 1px var(--secondary-border-color); + .header-controls { + flex: 1 1 0; display: flex; - flex-wrap: wrap; - column-gap: var(--unit-5); - padding-bottom: var(--unit-2); - margin-bottom: var(--unit-4); - - h2, - h3 { - flex: 0 0 auto; - line-height: var(--unit-9); - margin: 0; - } - - .header-controls { - flex: 1 1 0; - display: flex; - } } } @media (max-width: 600px) { - section.content-area .content-area-header { + .section-header { flex-direction: column; } } diff --git a/bookmarks/styles/layout.css b/bookmarks/styles/layout.css index 698a8dd..bc951d1 100644 --- a/bookmarks/styles/layout.css +++ b/bookmarks/styles/layout.css @@ -11,18 +11,20 @@ body { header { margin-bottom: var(--unit-9); - .logo { + a.app-link:hover { + text-decoration: none; + } + + .app-logo { width: 28px; height: 28px; } - a:hover { - text-decoration: none; - } - - h1 { - margin: 0 0 0 var(--unit-3); + .app-name { + margin-left: var(--unit-3); font-size: var(--font-size-lg); + font-weight: 500; + line-height: 1.2; } } diff --git a/bookmarks/styles/settings.css b/bookmarks/styles/settings.css index 0b24838..1398538 100644 --- a/bookmarks/styles/settings.css +++ b/bookmarks/styles/settings.css @@ -1,8 +1,14 @@ .settings-page { - section.content-area { + h1 { + font-size: var(--font-size-xl); + margin-bottom: var(--unit-6); + } + + section { margin-bottom: var(--unit-10); h2 { + font-size: var(--font-size-lg); margin-bottom: var(--unit-3); } } diff --git a/bookmarks/styles/theme/variables.css b/bookmarks/styles/theme/variables.css index 2fecf73..9eb3751 100644 --- a/bookmarks/styles/theme/variables.css +++ b/bookmarks/styles/theme/variables.css @@ -87,6 +87,7 @@ --font-size: 0.7rem; --font-size-sm: 0.65rem; --font-size-lg: 0.8rem; + --font-size-xl: 1rem; --line-height: 1rem; /* Sizes */ diff --git a/bookmarks/templates/bookmarks/archive.html b/bookmarks/templates/bookmarks/archive.html index d7a6a22..cdf7afd 100644 --- a/bookmarks/templates/bookmarks/archive.html +++ b/bookmarks/templates/bookmarks/archive.html @@ -8,9 +8,9 @@ class="bookmarks-page grid columns-md-1 {% if bookmark_list.collapse_side_panel %}collapse-side-panel{% endif %}"> {# Bookmark list #} -
-
-

Archived bookmarks

+
+
+

Archived bookmarks

{% bookmark_search bookmark_list.search mode='archived' %} {% include 'bookmarks/bulk_edit/toggle.html' %} @@ -28,17 +28,19 @@ {% include 'bookmarks/bookmark_list.html' %}
-
+ {# Tag cloud #} -
-
-

Tags

-
-
- {% include 'bookmarks/tag_cloud.html' %} -
-
+
+
+
+

Tags

+
+
+ {% include 'bookmarks/tag_cloud.html' %} +
+
+
{% endblock %} diff --git a/bookmarks/templates/bookmarks/bookmark_list.html b/bookmarks/templates/bookmarks/bookmark_list.html index e63fb72..39a2cbb 100644 --- a/bookmarks/templates/bookmarks/bookmark_list.html +++ b/bookmarks/templates/bookmarks/bookmark_list.html @@ -5,160 +5,162 @@ {% if bookmark_list.is_empty %} {% include 'bookmarks/empty_bookmarks.html' %} {% else %} - -
- {% pagination bookmark_list.bookmarks_page %} -
+
+ {% pagination bookmark_list.bookmarks_page %} +
+ {% endif %} diff --git a/bookmarks/templates/bookmarks/edit.html b/bookmarks/templates/bookmarks/edit.html index 4e1b766..cbf0ddc 100644 --- a/bookmarks/templates/bookmarks/edit.html +++ b/bookmarks/templates/bookmarks/edit.html @@ -1,15 +1,21 @@ {% extends 'bookmarks/layout.html' %} +{% block head %} + {% with page_title="Edit bookmark - Linkding" %} + {{ block.super }} + {% endwith %} +{% endblock %} + {% block content %}
-
-
-

Edit bookmark

+
+
+

Edit bookmark

{% include 'bookmarks/form.html' %}
-
+
{% endblock %} diff --git a/bookmarks/templates/bookmarks/head.html b/bookmarks/templates/bookmarks/head.html index 81b9c17..1f64e9d 100644 --- a/bookmarks/templates/bookmarks/head.html +++ b/bookmarks/templates/bookmarks/head.html @@ -12,7 +12,7 @@ - linkding + {{ page_title|default:'Linkding' }} {# Include specific theme variant based on user profile setting #} {% if request.user_profile.theme == 'light' %} diff --git a/bookmarks/templates/bookmarks/index.html b/bookmarks/templates/bookmarks/index.html index e17f5e6..93c4f7d 100644 --- a/bookmarks/templates/bookmarks/index.html +++ b/bookmarks/templates/bookmarks/index.html @@ -3,14 +3,16 @@ {% load shared %} {% load bookmarks %} +{% block title %}Bookmarks - Linkding{% endblock %} + {% block content %}
{# Bookmark list #} -
-
-

Bookmarks

+
+
+

Bookmarks

{% bookmark_search bookmark_list.search %} {% include 'bookmarks/bulk_edit/toggle.html' %} @@ -28,17 +30,19 @@ {% include 'bookmarks/bookmark_list.html' %}
-
+ {# Tag cloud #} -
-
-

Tags

-
-
- {% include 'bookmarks/tag_cloud.html' %} -
-
+
+
+
+

Tags

+
+
+ {% include 'bookmarks/tag_cloud.html' %} +
+
+
{% endblock %} diff --git a/bookmarks/templates/bookmarks/layout.html b/bookmarks/templates/bookmarks/layout.html index fd42b81..9508cf6 100644 --- a/bookmarks/templates/bookmarks/layout.html +++ b/bookmarks/templates/bookmarks/layout.html @@ -3,7 +3,7 @@ {# Use data attributes as storage for access in static scripts #} -{% include 'bookmarks/head.html' %} +{% block head %}{% include 'bookmarks/head.html' %}{% endblock %}
@@ -80,17 +80,19 @@
{% endif %}
- - -

LINKDING

+
+ + LINKDING - {% if request.user.is_authenticated %} - {# Only show nav items menu when logged in #} - {% include 'bookmarks/nav_menu.html' %} - {% else %} - {# Otherwise show login link #} - Login - {% endif %} +
diff --git a/bookmarks/templates/bookmarks/nav_menu.html b/bookmarks/templates/bookmarks/nav_menu.html index c9a9d9b..f50edf7 100644 --- a/bookmarks/templates/bookmarks/nav_menu.html +++ b/bookmarks/templates/bookmarks/nav_menu.html @@ -27,7 +27,24 @@
- Settings +
{% csrf_token %} @@ -54,11 +71,11 @@ Bookmarks {% if request.user_profile.enable_sharing %} {% endif %}
+ + {% if request.user.is_superuser %} + + {% endif %} +