fix(ui): make interactive controls show pointer cursor (#590)

This commit is contained in:
KJdotIO
2026-03-04 00:23:21 +02:00
committed by GitHub
parent ca754d6589
commit 575cfa2604
8 changed files with 34 additions and 21 deletions
+13
View File
@@ -30,6 +30,19 @@ textarea[data-chat-input="true"]:focus-visible {
box-shadow: none;
}
/* Ensure interactive controls consistently show pointer cursor */
:where(
button,
[role="button"],
a[href]
):not(:disabled) {
cursor: pointer;
}
:where(button, [role="button"]):disabled {
cursor: not-allowed;
}
.oc-cm-selected-line {
background: color-mix(in srgb, var(--accent) 70%, transparent);
}