From 7abe873f5db4f61c8458865c0474ce2f45a8f1cd Mon Sep 17 00:00:00 2001 From: guillaume-peoch-sonarsource Date: Tue, 31 Oct 2023 12:21:16 +0100 Subject: [PATCH] SONAR-20692 Global announcement message is unusable when too long --- .../src/main/js/app/components/SystemAnnouncement.css | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/server/sonar-web/src/main/js/app/components/SystemAnnouncement.css b/server/sonar-web/src/main/js/app/components/SystemAnnouncement.css index f23bb366800..f1ab45dc5a4 100644 --- a/server/sonar-web/src/main/js/app/components/SystemAnnouncement.css +++ b/server/sonar-web/src/main/js/app/components/SystemAnnouncement.css @@ -18,16 +18,12 @@ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ .system-announcement-wrapper { - height: 34px; + min-height: 34px; } .system-announcement-banner { + box-sizing: border-box; width: 100%; z-index: var(--globalBannerZIndex); -} - -.system-announcement-banner .alert-content { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; + margin-bottom: 0% !important; } -- 2.39.5