When hovering over thumbnails, the enlarged view now intelligently positions itself
below the table header instead of at the thumbnail's original location. This:
- Makes better use of available vertical space
- Provides a more consistent viewing experience across all rows
- Ensures enlarged thumbnails start from the same vertical position (below header)
- Still respects viewport boundaries and adjusts if needed
Co-authored-by: connortechnology <925519+connortechnology@users.noreply.github.com>
Change from position:sticky to position:fixed for console view thumbnails.
This prevents parent containers with overflow:hidden from clipping the enlarged thumbnails.
Store original position and dimensions, then apply them with fixed positioning
so the thumbnail stays in the same visual location but breaks free of container boundaries.
Co-authored-by: connortechnology <925519+connortechnology@users.noreply.github.com>
- Use viewport-relative percentage-based sizing (60% of viewport width)
- Calculate scale dynamically based on available space to the right
- Limit height to 90% of viewport height to prevent overflow
- Keep thumbnail under cursor by anchoring to top-left corner
- Adjust transform origin if thumbnail would go off bottom of screen
Co-authored-by: connortechnology <925519+connortechnology@users.noreply.github.com>
It's not entirely clear why it was necessary to change the "this.controlMute" function in the commit.f796fa913f
After this change, the "volumeSlider" and "iconMute" styling sometimes doesn't work correctly.
The old code was 99.9% debugged and worked without any issues.
It's also unclear why "this.muted" was added? After all, we already had "audioStream.muted." Now we're probably getting duplicates.
- Added "Any Tag" entry with value -1 to availableTags in Filter.php (widget and simple_widget methods)
- Added "Any Tag" entry to filter.php view
- Added translation for "Any Tag" in en_gb.php language file
- Implemented SQL logic in FilterTerm.php to handle "Any Tag" (value -1) using EXISTS query
- Implemented SQL logic in Filter.pm (Perl) to handle "Any Tag" (value -1) using EXISTS query
Co-authored-by: connortechnology <925519+connortechnology@users.noreply.github.com>
This matches the existing filter attribute naming convention used throughout ZoneMinder.
Co-authored-by: connortechnology <925519+connortechnology@users.noreply.github.com>
- Modified web/ajax/console.php to generate filter querystrings for each event period (Hour, Day, Week, Month, Archived, Total)
- Modified web/skins/classic/views/js/console.js to use filter querystrings in event links
- Links now include proper date filters matching old console.php implementation
Co-authored-by: connortechnology <925519+connortechnology@users.noreply.github.com>