From a75cacea661d642dbf3f2491ae9396e62eeddfc3 Mon Sep 17 00:00:00 2001 From: moanos Date: Fri, 3 Jan 2025 22:04:19 +0100 Subject: [PATCH] feat: Make table in adoption notice responsive --- .../static/fellchensammlung/css/styles.css | 47 ++++++++++++++++--- .../details/detail_adoption_notice.html | 35 +++++++------- 2 files changed, 59 insertions(+), 23 deletions(-) diff --git a/src/fellchensammlung/static/fellchensammlung/css/styles.css b/src/fellchensammlung/static/fellchensammlung/css/styles.css index 5200d33..2cb0aac 100644 --- a/src/fellchensammlung/static/fellchensammlung/css/styles.css +++ b/src/fellchensammlung/static/fellchensammlung/css/styles.css @@ -37,12 +37,44 @@ body { } +a { + color: inherit; +} + table { width: 100%; } -a { - color: inherit; +@media screen and (max-width: 600px) { + .responsive thead { + visibility: hidden; + height: 0; + position: absolute; + } + + .responsive tr { + display: block; + } + + .responsive td { + border: 1px solid; + border-bottom: none; + display: block; + font-size: .8em; + text-align: right; + width: 100%; + } + + .responsive td::before { + content: attr(data-label); + float: left; + font-weight: bold; + text-transform: uppercase; + } + + .responsive td:last-child { + border-bottom: 1px solid; + } } table { @@ -64,7 +96,7 @@ td { padding: 5px; } -th { +thead td { border: 3px solid black; border-collapse: collapse; padding: 8px; @@ -357,12 +389,12 @@ a.btn, a.btn2, a.nav-link { } .tooltip:not(.top) .tooltiptext { - bottom: auto; + bottom: auto; } .tooltip:not(.top) .tooltiptext::before { - top: auto; + top: auto; } @@ -767,8 +799,9 @@ a.btn, a.btn2, a.nav-link { .inline-container { display: inline-block; } + .inline-container > * { - vertical-align:middle; + vertical-align: middle; } .heading-card-adoption-notice { @@ -796,7 +829,7 @@ a.btn, a.btn2, a.nav-link { } @media (max-width: 920px) { - .detail-adoption-notice-header h1 { + .detail-adoption-notice-header .inline-container { width: 100%; } diff --git a/src/fellchensammlung/templates/fellchensammlung/details/detail_adoption_notice.html b/src/fellchensammlung/templates/fellchensammlung/details/detail_adoption_notice.html index f2c2b00..ece3099 100644 --- a/src/fellchensammlung/templates/fellchensammlung/details/detail_adoption_notice.html +++ b/src/fellchensammlung/templates/fellchensammlung/details/detail_adoption_notice.html @@ -37,18 +37,20 @@ {% endif %}
- +
+ - + {% if adoption_notice.organization %} - + {% endif %} - - - + + + + - {% if adoption_notice.organization %} - - - {% if adoption_notice.further_information %} - + + - {% else %} - - {% endif %} + {% else %} + - + {% endif %} +
{% translate "Ort" %}{% translate "Ort" %}{% translate "Organisation" %}{% translate "Organisation" %}{% translate "Suchen seit" %}{% translate "Zuletzt aktualisiert" %}{% translate "Weitere Informationen" %}{% translate "Suchen seit" %}{% translate "Zuletzt aktualisiert" %}{% translate "Weitere Informationen" %}
+ {% if adoption_notice.location %} {{ adoption_notice.location }} {% else %} @@ -56,7 +58,7 @@ {% endif %} +
{{ adoption_notice.organization }} {% if adoption_notice.organization.trusted %} @@ -73,10 +75,11 @@ {% endif %} -
{{ adoption_notice.searching_since }}{{ adoption_notice.last_checked | date:'d. F Y' }} + {{ adoption_notice.searching_since }} + {{ adoption_notice.last_checked | date:'d. F Y' }} + {% if adoption_notice.further_information %}
-
-