Fix de la barre de recherche sur firefox quand aucun panel n'est actif

This commit is contained in:
EpicKiwi 2026-06-10 00:22:37 +02:00
parent 7722a36a7a
commit a65b1981af
Signed by: epickiwi
GPG key ID: C4B28FD2729941CE

View file

@ -136,6 +136,7 @@ body > hr {
#search-section { #search-section {
border: solid 10px black; border: solid 10px black;
border-image: url("../assets/button-stepped-border-image.svg") 16 15 fill; border-image: url("../assets/button-stepped-border-image.svg") 16 15 fill;
z-index: 100; z-index: 100;
margin-bottom: 5px; margin-bottom: 5px;
margin-left: 5px; margin-left: 5px;
@ -150,6 +151,12 @@ body > hr {
grid-template-rows: 1fr; grid-template-rows: 1fr;
} }
#search-section:has( ~ #result-panel.empty) {
position: fixed;
bottom: 5px;
left: 5px;
}
#search-section input { #search-section input {
background: black; background: black;
font-size: 1em; font-size: 1em;