[Editor] Make sure that doorhangers are large enough to fit localized strings

It fixes #20091.
This commit is contained in:
Calixte Denizet 2025-07-15 17:14:32 +02:00
parent 5600c0ac02
commit ca4e219b7b
2 changed files with 5 additions and 2 deletions

View File

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

View File

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