Skip to content

Commit

Permalink
fix(css): hide only adjacent non-popup-displayed table items
Browse files Browse the repository at this point in the history
  • Loading branch information
erw-1 authored Nov 29, 2024
1 parent 1bf678f commit e9c3cde
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lizmap/www/assets/css/map.css
Original file line number Diff line number Diff line change
Expand Up @@ -3632,9 +3632,9 @@ div.lizmap-features-table-container div.lizmap-features-table-item.has-action {
cursor: pointer;
}

/* Hide other children if only one child feature is active */
div.lizmap-features-table.popup-displayed div.lizmap-features-table-container div.lizmap-features-table-item {
display: none;
/* Hide other children of the table if only one child feature is active */
div.lizmap-features-table.popup-displayed > div.lizmap-features-table-container > div.lizmap-features-table-item:not(.popup-displayed) {
display: none;
}
/* In this context, display only the active child item */
div.lizmap-features-table.popup-displayed div.lizmap-features-table-container div.lizmap-features-table-item.popup-displayed {
Expand Down

0 comments on commit e9c3cde

Please sign in to comment.