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

[Editor] Correctly rotate the mask when rotation a free highlight (bug 1879102)

This commit is contained in:
Calixte Denizet 2024-02-08 15:29:29 +01:00
parent d7479a59b7
commit c4ac7eef95
2 changed files with 7 additions and 3 deletions

View file

@ -18,19 +18,22 @@
transform: none;
&[data-main-rotation="90"] {
use:not(.clip) {
mask,
use:not(.clip, .mask) {
transform: matrix(0, 1, -1, 0, 1, 0);
}
}
&[data-main-rotation="180"] {
use:not(.clip) {
mask,
use:not(.clip, .mask) {
transform: matrix(-1, 0, 0, -1, 1, 1);
}
}
&[data-main-rotation="270"] {
use:not(.clip) {
mask,
use:not(.clip, .mask) {
transform: matrix(0, -1, 1, 0, 0, 1);
}
}