Fix: Offset zoom frame in console table and viewing alarm frames table

1. Vertical offset = 0, because otherwise, the topmost frame in the table will be cut off at the top. The bottommost frame will create a vertical scroll bar and will therefore be fully viewable.
2. If the frame is on the right in the table, then its right position must be = 0, otherwise it will also go beyond the right border and will not be visible.
pull/3942/head
IgorA100 2024-04-03 16:01:19 +03:00 committed by GitHub
parent c370cd56cf
commit 4cee61ad35
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 1 deletions

View File

@ -806,12 +806,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;
}