mirror of
https://github.com/isledecomp/isle.pizza.git
synced 2026-02-28 13:57:38 +00:00
- 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:
parent
5ce1b1ed69
commit
b5389b2685
13
src/app.css
13
src/app.css
@ -579,6 +579,10 @@ body {
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.config-card-content.open > div {
|
||||||
|
overflow: visible;
|
||||||
|
}
|
||||||
|
|
||||||
/* Toggle switches */
|
/* Toggle switches */
|
||||||
.toggle-group {
|
.toggle-group {
|
||||||
display: flex;
|
display: flex;
|
||||||
@ -743,6 +747,15 @@ body {
|
|||||||
user-select: none;
|
user-select: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Expand touch target for mobile devices */
|
||||||
|
@media (pointer: coarse) {
|
||||||
|
.tooltip-trigger::before {
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
inset: -12px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.tooltip-content {
|
.tooltip-content {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
bottom: 140%;
|
bottom: 140%;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user