From f49683c93bc078dedb5d710bbc3a1616dfd8b9b2 Mon Sep 17 00:00:00 2001 From: Het Savani <114601993+Hetsavani@users.noreply.github.com> Date: Sat, 25 Apr 2026 19:44:59 +0530 Subject: [PATCH] fix:google calendar text exceeding background (#7361) * fix:google calendar text exceeding background * Chore: removed comments * fix(issue-panel): wrap long provider names instead of clipping Replace the clip-and-tooltip approach with white-space: normal on the button label so long provider names (e.g. "Google Calendar (iCal)") wrap to a second line rather than overflowing or being silently cut off. Also reverts unrelated package-lock, source-map, and lint-comment changes that snuck into the original PR. Refs #7331 --------- Co-authored-by: Johannes Millan --- .../issue-provider-setup-overview.component.scss | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/app/features/issue-panel/issue-provider-setup-overview/issue-provider-setup-overview.component.scss b/src/app/features/issue-panel/issue-provider-setup-overview/issue-provider-setup-overview.component.scss index 1b79bef6fe..0c6864cc7a 100644 --- a/src/app/features/issue-panel/issue-provider-setup-overview/issue-provider-setup-overview.component.scss +++ b/src/app/features/issue-panel/issue-provider-setup-overview/issue-provider-setup-overview.component.scss @@ -14,6 +14,15 @@ > button { min-height: 50px; + height: auto; + padding-top: var(--s-half); + padding-bottom: var(--s-half); + + // allow long provider names to wrap rather than overflow the button (#7331) + ::ng-deep .mdc-button__label { + white-space: normal; + line-height: 1.2; + } } }