Skip to content

Make cursor white and fix script debug up arrow #35

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 28, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -61,4 +61,11 @@ body,
input {
// This causes the browser to style input icons for a dark background
color-scheme: dark;
// Make the caret color be white instead of a dark blue
caret-color: auto;
}

// Fix the single spa debug panel so the text is readable
.imo-modal-container input {
color: black
}
Original file line number Diff line number Diff line change
Expand Up @@ -1655,6 +1655,8 @@ export default {
this.debugHistoryIndex = this.debugHistory.length - 1
}
this.debug = this.debugHistory[this.debugHistoryIndex]
// Prevent the cursor/caret from moving to the front
event.preventDefault()
} else if (event.key === 'ArrowDown') {
this.debugHistoryIndex += 1
if (this.debugHistoryIndex >= this.debugHistory.length) {
Expand Down