Fix tooltip CSS issues on Config page
Some checks failed
Build / build (push) Has been cancelled

- Allow tooltips to overflow container when section is open
- Expand touch target for tooltip triggers on mobile devices

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Christian Semmler 2026-01-25 16:31:45 -08:00
parent 5ce1b1ed69
commit b5389b2685
No known key found for this signature in database
GPG Key ID: 086DAA1360BEEE5C

View File

@ -579,6 +579,10 @@ body {
overflow: hidden;
}
.config-card-content.open > div {
overflow: visible;
}
/* Toggle switches */
.toggle-group {
display: flex;
@ -743,6 +747,15 @@ body {
user-select: none;
}
/* Expand touch target for mobile devices */
@media (pointer: coarse) {
.tooltip-trigger::before {
content: '';
position: absolute;
inset: -12px;
}
}
.tooltip-content {
position: absolute;
bottom: 140%;