From 70960bdd633b3d64e5eb489efba3892cfb60f154 Mon Sep 17 00:00:00 2001 From: colemanw Date: Mon, 11 Nov 2024 15:35:38 -0500 Subject: [PATCH] Fix dev/core#5561 - CMS theme floats break FormBuilder layout --- ext/greenwich/scss/_tweaks.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ext/greenwich/scss/_tweaks.scss b/ext/greenwich/scss/_tweaks.scss index e472c7e5e416..9e1f4a9bf963 100644 --- a/ext/greenwich/scss/_tweaks.scss +++ b/ext/greenwich/scss/_tweaks.scss @@ -29,3 +29,9 @@ input[type="search"]::-webkit-search-cancel-button { summary { display: list-item; } +/* Reset breaky stuff from some cms themes: https://lab.civicrm.org/dev/core/-/issues/5561 */ +#bootstrap-theme legend { + position: initial; + text-transform: inherit; + float: none; +}