Merge pull request #20095 from calixteman/issue20091

[Editor] Make sure that doorhangers are large enough to fit localized strings
This commit is contained in:
Tim van der Meij 2025-07-15 19:50:48 +02:00 committed by GitHub
commit 9f645fb9a6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 2 deletions

View File

@ -747,7 +747,7 @@
} }
.toolbarAddSignatureButton { .toolbarAddSignatureButton {
width: auto; width: calc(0.8 * var(--editor-toolbar-min-width));
height: 100%; height: 100%;
min-height: var(--menuitem-height); min-height: var(--menuitem-height);
aspect-ratio: unset; aspect-ratio: unset;

View File

@ -1090,8 +1090,11 @@ dialog :link {
} }
.editorParamsToolbar { .editorParamsToolbar {
--editor-toolbar-min-width: 220px;
height: auto; height: auto;
width: 220px; min-width: var(--editor-toolbar-min-width);
width: max-content;
position: absolute; position: absolute;
z-index: 30000; z-index: 30000;
cursor: default; cursor: default;