Merge pull request #3942 from IgorA100/patch-59

Fix: Offset zoom frame in console table and viewing alarm frames table
pull/3932/head
Isaac Connor 2024-04-03 11:45:18 -04:00 committed by GitHub
commit 1e25e45206
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 1 deletions

View File

@ -819,12 +819,16 @@ li.search-choice {
.zoom,
.zoom-console {
transform-origin: 0% 50%;
transform-origin: 0% 00%;
transform: scale(5); /* (arbitray zoom value - Note if the zoom is too large, it will go outside of the viewport) */
position: sticky;
z-index: 1001;
}
#framesTable .zoom {
transform-origin: 100% 0%;
}
a.flip {
float: right;
}