Skip to content

Commit

Permalink
Merge pull request #6441 from thomaslow/fix-input-focus-scrolls-outsi…
Browse files Browse the repository at this point in the history
…de-container-6438

Prevent hidden input elements scrolling a container when focused
  • Loading branch information
solth authored Feb 27, 2025
2 parents 66f0d5d + 89cc82d commit 174e6bd
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Kitodo/src/main/webapp/WEB-INF/resources/css/kitodo.css
Original file line number Diff line number Diff line change
Expand Up @@ -4531,3 +4531,19 @@ Print Styles
border: solid var(--default-border-width) #000;
}
}

/*----------------------------------------------------------------------
PrimeFaces fix preventing hidden input elements from scrolling outside
of a container when focused e.g. via the tab key or from Javascript.
See https://github.com/kitodo/kitodo-production/issues/6438
----------------------------------------------------------------------*/

.ui-selectmanymenu {
position: relative;
}

.ui-selectbooleancheckbox {
position: relative;
}

/* ------ End of Primefaces fix ----- */

0 comments on commit 174e6bd

Please sign in to comment.