1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-20 15:18:08 +02:00

Fix highlighting of search results when the textLayer contains br-elements (PR 13257 follow-up, issue 13323)

Apparently we need to layout `br`-elements in the same *exact* way as the regular `span`-elements which contain the text-content.
This commit is contained in:
Jonas Jenwald 2021-05-02 15:19:44 +02:00
parent af9feb1307
commit 883ce5d120
2 changed files with 4 additions and 2 deletions

View file

@ -24,7 +24,8 @@
line-height: 1;
}
.textLayer span {
.textLayer span,
.textLayer br {
color: transparent;
position: absolute;
white-space: pre;