mirror of
https://github.com/pi-hole/web.git
synced 2026-08-23 14:51:12 +01:00
- The vendored bstreeview still emitted Bootstrap 3 collapse attributes (`data-toggle`/`data-target`), which Bootstrap 5 ignores, so expanding an interface only rotated the caret without revealing its details. Emit the `data-bs-*` attributes instead. - The network overview colours each row by device activity, but Bootstrap 5 paints the cell background over the row's `background-color`. Drop the now-conflicting `table-striped` and colour the row through the `--bs-table-bg` variable so the status colours (and the legend) apply again. - Chart tooltips are positioned relative to their card's parent, but that element was not the tooltip's offset parent in the boxed layout, so tooltips were shifted far to the side. Make the ancestor `position: relative`. - Keep the horizontal scrollbar visible on wide `.table-responsive` tables so it is clear the content scrolls rather than being cut off. Signed-off-by: DL6ER <dl6er@dl6er.de>