From 054d2b3bf7eb4c5a5401565e86031f22ea754062 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Fri, 17 May 2024 13:31:03 +0200 Subject: feat: improve accessibility and browser behaviour --- frontend/static/search.js | 4 +++- frontend/static/style.css | 17 ++++++++++++++++- frontend/templates/blocks/options.gotmpl | 2 +- frontend/templates/blocks/results.gotmpl | 8 ++++---- frontend/templates/blocks/search.gotmpl | 16 +++++++++++++--- 5 files changed, 37 insertions(+), 10 deletions(-) (limited to 'frontend') diff --git a/frontend/static/search.js b/frontend/static/search.js index 358de13..030a318 100644 --- a/frontend/static/search.js +++ b/frontend/static/search.js @@ -49,7 +49,9 @@ function paginationLinkClicked(ev) { } function addPaginationEventListeners(pagination) { - pagination.addEventListener("click", paginationLinkClicked); + Array.from(pagination.children).forEach((child) => + child.addEventListener("click", paginationLinkClicked), + ); } function renderFragmentHTML(html) { diff --git a/frontend/static/style.css b/frontend/static/style.css index 9dbe198..4596fb3 100644 --- a/frontend/static/style.css +++ b/frontend/static/style.css @@ -31,11 +31,12 @@ body > header { a { margin-bottom: unset; + font-size: 1.15rem; } & h1 { margin: unset; - font-size: unset; + font-size: 1.15rem; line-height: 2; & > a { margin-left: unset; @@ -114,3 +115,17 @@ section { .error { background: var(--accent-error); } + +h2 { + font-size: 1.5rem; +} + +h2:only-child { + margin-top: 0; +} + +h3 { + margin: unset; + font-size: 1.25rem; + display: inline-block; +} diff --git a/frontend/templates/blocks/options.gotmpl b/frontend/templates/blocks/options.gotmpl index 806ca2f..de31696 100644 --- a/frontend/templates/blocks/options.gotmpl +++ b/frontend/templates/blocks/options.gotmpl @@ -3,7 +3,7 @@ {{- with .Data }}
- {{ .Name }} +

{{ .Name }}

{{ markdown .Description }}
diff --git a/frontend/templates/blocks/results.gotmpl b/frontend/templates/blocks/results.gotmpl index 95c89ca..c375156 100644 --- a/frontend/templates/blocks/results.gotmpl +++ b/frontend/templates/blocks/results.gotmpl @@ -1,10 +1,10 @@ {{- define "results" }} {{- with .Results }} {{- if gt .Total 0 }} -
+
{{ block "hits" .Hits }} {{ end }} -
+
- {{ .Total }} results + {{ .Total }} results
{{- else }} - Nothing found + Nothing found {{- end }} {{- end }} {{- end }} diff --git a/frontend/templates/blocks/search.gotmpl b/frontend/templates/blocks/search.gotmpl index 6f47df3..1be001a 100644 --- a/frontend/templates/blocks/search.gotmpl +++ b/frontend/templates/blocks/search.gotmpl @@ -1,8 +1,18 @@ {{- define "main" }} - -- cgit 1.4.1