mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-07-18 00:46:45 +00:00
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:
parent
d0cb24e770
commit
f49683c93b
1 changed files with 9 additions and 0 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue