From 03314a53d18dcecf31d231b2ccfbf7da8d387206 Mon Sep 17 00:00:00 2001 From: Evie Viau Date: Wed, 19 Mar 2025 21:20:23 -0700 Subject: [PATCH] fix: Fix incorrect background for classic theme image search Fixes #T154 --- .../static/themes/classic/imagesearch.css | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 asklyphe-frontend/static/themes/classic/imagesearch.css diff --git a/asklyphe-frontend/static/themes/classic/imagesearch.css b/asklyphe-frontend/static/themes/classic/imagesearch.css new file mode 100644 index 0000000..aaf900e --- /dev/null +++ b/asklyphe-frontend/static/themes/classic/imagesearch.css @@ -0,0 +1,11 @@ +.pagecontent { + background: url("/static/snow.gif"); + border: 3px inset black; + color: black; +} + +@media screen and (max-width: 800px) { + .pagecontent { + width: calc(100% - 4px); + } +} \ No newline at end of file