Skip to content

Commit 9f645fb

Browse files
Merge pull request #20095 from calixteman/issue20091
[Editor] Make sure that doorhangers are large enough to fit localized strings
2 parents be10bb8 + ca4e219 commit 9f645fb

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

web/signature_manager.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -747,7 +747,7 @@
747747
}
748748

749749
.toolbarAddSignatureButton {
750-
width: auto;
750+
width: calc(0.8 * var(--editor-toolbar-min-width));
751751
height: 100%;
752752
min-height: var(--menuitem-height);
753753
aspect-ratio: unset;

web/viewer.css

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1090,8 +1090,11 @@ dialog :link {
10901090
}
10911091

10921092
.editorParamsToolbar {
1093+
--editor-toolbar-min-width: 220px;
1094+
10931095
height: auto;
1094-
width: 220px;
1096+
min-width: var(--editor-toolbar-min-width);
1097+
width: max-content;
10951098
position: absolute;
10961099
z-index: 30000;
10971100
cursor: default;

0 commit comments

Comments
 (0)