-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ActionList: Take items with css propery `display:contents / visibilit…
…y:hidden` into account For example, the elements of icingadb/hostgroup are `display:contents`, which leads to scrollIntoView having no effect At the moment we don't have `visibility:hidden` elements, but I have included the check to be absolutely sure. getDirectionalNext(): The condition has been extended to skip items without children or when none of them is visible. This does not skip elements with display:contents.
- Loading branch information
1 parent
520835f
commit df1b0ec
Showing
2 changed files
with
43 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -87,3 +87,7 @@ | |
} | ||
} | ||
} | ||
|
||
.list-item:nth-child(3) { | ||
visibility: hidden; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters