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 <johannes.millan@gmail.com>
This commit is contained in:
Het Savani 2026-04-25 19:44:59 +05:30 committed by GitHub
parent d0cb24e770
commit f49683c93b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;
}
}
}