Compare commits

...
Author SHA1 Message Date
shamoon bca2f31c42 Actually just try z-index 2026-08-15 07:38:48 -07:00
shamoon 9541ea2e64 Try mobile no flip modifier 2026-08-15 07:35:17 -07:00
shamoon fe5d694aeb Try interactive-widget=resizes-content 2026-08-15 07:20:17 -07:00
shamoon d37c31ed36 Maybe fix the android keyboard CF dropdown weird thing 2026-08-14 13:40:22 -07:00
2 changed files with 8 additions and 0 deletions
@@ -64,6 +64,13 @@ $paperless-card-breakpoints: (
}
}
// Popper may place a dropdown above its toggle when the virtual keyboard
// reduces the available viewport. Raise the toolbar while a menu is open so
// the menu isn't obscured by the fixed navbar.
:host ::ng-deep .sticky-top:has(.dropdown-menu.show) {
z-index: 1040;
}
@media (max-width: 579.98px) {
:host-context(main.mobile-search-hidden) .sticky-top {
top: calc(3.5rem - 2px); // height of navbar only when search is hidden
+1
View File
@@ -9,5 +9,6 @@ export function pngxPopperOptions(config: Partial<Options>): Partial<Options> {
padding: 10,
}
}
return config
}