fixed infotext still appearing when hovering over hidden element

This commit is contained in:
2026-02-09 10:18:20 +01:00
committed by Florian Greistorfer
parent f653f41b10
commit c60645d019

View File

@@ -202,6 +202,7 @@ input {
.tooltip .infotext { .tooltip .infotext {
padding: 12px; padding: 12px;
width: max-content; width: max-content;
pointer-events: none;
} }
.tooltiptext.tagdropdown { .tooltiptext.tagdropdown {
@@ -224,11 +225,13 @@ input {
.tooltip:hover .infotext { .tooltip:hover .infotext {
display: block; display: block;
opacity: 1; opacity: 1;
pointer-events: auto;
} }
.tooltip:active .infotext { .tooltip:active .infotext {
display: block; display: block;
opacity: 1; opacity: 1;
pointer-events: auto;
} }
.tagentryparent { .tagentryparent {