From 5cf566251ae267eebce5b375c1d58fff14a7e5aa Mon Sep 17 00:00:00 2001 From: Danielle McLean Date: Thu, 28 Jun 2018 11:03:31 +1000 Subject: [PATCH] Redesign the display of entry 'metadata', like author and category, to be way more space-efficient - should make tiny statuses less 'heavy' --- entries/jinja2/entries/h-entry.html | 52 ++++++++++--------------- entries/static/entries/css/h-entry.styl | 29 ++++++++------ 2 files changed, 38 insertions(+), 43 deletions(-) diff --git a/entries/jinja2/entries/h-entry.html b/entries/jinja2/entries/h-entry.html index b9a05f6..6d55eb2 100644 --- a/entries/jinja2/entries/h-entry.html +++ b/entries/jinja2/entries/h-entry.html @@ -1,64 +1,54 @@ {% macro hEntry(entry, indent_width) -%} {%- set i = ' ' * indent_width -%} -
- {% if entry.photo %} - {{i}} - - {% endif %} - {{i}}
- {% if entry.name %} - {{i}}

{{ entry.name }}

- {% endif %} - {{i}}
- {{i}}{{ entry.content | markdown }} - {{i}}
- {{i}}
- - {{i}} - - {% if entry.cats.exists() %} - {{i}} - - {% endif %} - {% if entry.syndications.exists() %} - {{i}}
{%- endmacro %} diff --git a/entries/static/entries/css/h-entry.styl b/entries/static/entries/css/h-entry.styl index 2fb7701..1177403 100644 --- a/entries/static/entries/css/h-entry.styl +++ b/entries/static/entries/css/h-entry.styl @@ -10,7 +10,23 @@ ol.entries, div.entry &:last-child margin-bottom 0 -.card.h-entry +.h-entry.media + > aside.info + display flex + flex-direction column + align-items center + font-size 0.8rem + margin-right 1rem + + a.p-author + text-align center + img.u-photo + border-radius .25rem + height 3em + > * + margin-bottom .25rem + > .card + flex 1 .e-content ul list-style-type disc @@ -26,14 +42,3 @@ ol.entries, div.entry max-width 100% > :last-child margin-bottom 0 - - .card-footer - text-align center - > * - display inline-block - margin-right 1rem - &:last-child - margin-right 0 - .h-card > img - height 1em - vertical-align baseline