[fix] simple: display "Click on the magnifier..." only the mouse over the categories

This commit is contained in:
Alexandre Flament 2022-02-27 19:48:21 +01:00
parent e435806505
commit 56bb1443c4
2 changed files with 15 additions and 1 deletions

View file

@ -73,6 +73,20 @@
.search_categories {
grid-area: categories;
.help {
display: none;
}
&:hover .help {
display: block;
position: absolute;
background: var(--color-base-background);
padding: 1rem 0.6rem 0.6rem 0;
z-index: 1000;
width: 100%;
left: -0.1rem;
}
}
.search_box {