From e2e0e13fb5ab3db38e6345d013ae90b73b79097b Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Sun, 31 Oct 2021 16:28:34 -0700 Subject: [PATCH] Replace some h3 with h2. --- frontends/etiquette_flask/templates/album.html | 14 +++++++------- frontends/etiquette_flask/templates/tags.html | 8 ++++---- frontends/etiquette_flask/templates/user.html | 8 ++++---- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/frontends/etiquette_flask/templates/album.html b/frontends/etiquette_flask/templates/album.html index 3a9bef2..7eb6722 100644 --- a/frontends/etiquette_flask/templates/album.html +++ b/frontends/etiquette_flask/templates/album.html @@ -24,7 +24,7 @@ { max-height: 150px; } -#album_metadata h2 .editor_input +#album_metadata h1 .editor_input { font-size: inherit; font-weight: inherit; @@ -231,7 +231,7 @@ const ALBUM_ID = undefined;
-

{{-album.display_name-}}

+

{{-album.display_name-}}

             {% set parents = album.get_parents() %}
             {% if parents %}
-                

{{parents|length}} Parents

+

{{parents|length}} Parents

{% for parent in parents %} {{cards.create_album_card(parent, view=view)}} {% endfor %} {% else %} -

1 Parent

+

1 Parent

{{cards.create_album_card("root", view=view)}} {% endif %}
@@ -271,7 +271,7 @@ const ALBUM_ID = undefined; {% set sub_albums = album.get_children() %} {% if sub_albums %}
-

{{sub_albums|length}} Children

+

{{sub_albums|length}} Children

{% for sub_album in sub_albums|sort(attribute='title') %} {{cards.create_album_card(sub_album, view=view, unlink_parent=album, draggable=true)}} {% endfor %} @@ -281,7 +281,7 @@ const ALBUM_ID = undefined; {% set photos = album.get_photos() %} {% if photos %}
-

{{photos|length}} Photos

+

{{photos|length}} Photos

{% for photo in photos|sort(attribute='basename', case_sensitive=False) %} {{cards.create_photo_card(photo, view=view)}} @@ -294,7 +294,7 @@ const ALBUM_ID = undefined; {% set has_child_photos = album.has_any_subalbum_photo() %} {% if has_local_photos or has_child_photos %}