files_pdfviewer icon indicating copy to clipboard operation
files_pdfviewer copied to clipboard

message-box font is too big for Cyrillic symbols

Open oleua opened this issue 2 years ago • 1 comments

I have added the Ukrainian localisation and found out that the standard font which is message-box is too big for Cyrillic symbols. According to my calculations it is equal to 16px.

image

Is that possible to make the font smaller?

oleua avatar Oct 08 '23 16:10 oleua

As a workaround I have added to the file js/pdfjs/web/viewer.css at line 1404 + font-size: 13px;

so a piece of code:

:is(.toolbar, .editorParamsToolbar, .findbar, #sidebarContainer)
  :is(input, button, select),
.secondaryToolbar :is(input, button, a, select) {
  outline: none;
  font: message-box;
  font-size: 13px;
}

image

oleua avatar Oct 08 '23 17:10 oleua