From d56de3730bf0eb2832742f3656923de54354da8f Mon Sep 17 00:00:00 2001 From: Linh Pham Date: Sun, 24 Dec 2023 15:01:21 -0800 Subject: [PATCH] Update list rendering in show notes --- CHANGELOG.md | 6 ++++++ app/static/css/style.css | 2 ++ app/version.py | 2 +- 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a7ce9ba..97c1947 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changes +## 5.7.2 + +### Application Changes + +- Fix CSS for list and list item rendering within the show notes + ## 5.7.1 ### Application Changes diff --git a/app/static/css/style.css b/app/static/css/style.css index 1df9bfb..95bff3c 100644 --- a/app/static/css/style.css +++ b/app/static/css/style.css @@ -56,6 +56,8 @@ ul.show-all-years { list-style: none; column-count: 4;} .show-description, .show-notes { white-space: pre-line; } .show-notes>p { margin: 0; } + .show-notes ul, .show-notes ol { margin-top: -1.5rem; } + .show-notes li { list-style: inside disc !important; line-height: 0.1; margin-left: 0.5rem; } .show-repeat>a { border-bottom: none !important; } .show-nprlink { background-color: #3366cc; color: white; } .show-nprlink>a { border-bottom: none !important; color: white; } diff --git a/app/version.py b/app/version.py index 91d7630..d92e934 100644 --- a/app/version.py +++ b/app/version.py @@ -4,4 +4,4 @@ # Copyright (c) 2018-2023 Linh Pham # stats.wwdt.me is released under the terms of the Apache License 2.0 """Application Version for Wait Wait Stats Page""" -APP_VERSION = "5.7.1" +APP_VERSION = "5.7.2"