Skip to content

Commit 82bf095

Browse files
authored
fix: dropdown buttons obscuring tooltips on the activity calendar (@byseif21) (monkeytypegame#7748)
unable to read the tooltips for the top rows of the activity calendars under the dropdown button ("last 12 months") <img width="672" height="314" alt="Screenshot 2026-03-30 205021" src="https://github.com/user-attachments/assets/04f2e1d9-0e61-47d9-bc30-f16b7317873b" /> introduced here monkeytypegame@2224ed2 not sure what was that fixing?
1 parent 11f8b4c commit 82bf095

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

frontend/src/ts/components/ui/SlimSelect.tsx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -482,11 +482,7 @@ export default function SlimSelect(props: SlimSelectProps): JSXElement {
482482
ref={(el) => (containerRef = el)}
483483
class="relative [&>.ss-content]:top-full! [&>.ss-content]:left-0! [&>.ss-content]:w-full!"
484484
>
485-
<select
486-
ref={(el) => (selectRef = el)}
487-
multiple={props.multiple}
488-
class="z-10000"
489-
>
485+
<select ref={(el) => (selectRef = el)} multiple={props.multiple}>
490486
{props.children}
491487
</select>
492488
</div>

0 commit comments

Comments
 (0)