From ba985a2c317e40ffc39b26415a71fec3c6c30b15 Mon Sep 17 00:00:00 2001 From: colemanw Date: Sun, 3 Dec 2023 17:24:52 +0000 Subject: [PATCH] Greenwich - Fix styling of summary collapsible element --- ext/greenwich/scss/_tweaks.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ext/greenwich/scss/_tweaks.scss b/ext/greenwich/scss/_tweaks.scss index 9ff7350a79..e472c7e5e4 100644 --- a/ext/greenwich/scss/_tweaks.scss +++ b/ext/greenwich/scss/_tweaks.scss @@ -25,3 +25,7 @@ input[type="search"]::-webkit-search-cancel-button { font-size: inherit; font-weight: normal; } +/* Bootstrap3 styles these as block which is non-compliant with html standards */ +summary { + display: list-item; +} -- 2.25.1