Remove EasyMDE focus outline on text (#25328)

EasyMDE in Firefox currently shows an ugly outline in the fake textarea
the CodeMirror uses. Hide it.
This commit is contained in:
silverwind 2023-06-18 06:10:07 +02:00 committed by GitHub
parent ccc19eda0b
commit 95ab485490
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -43,3 +43,7 @@
.CodeMirror-focused {
border-color: var(--color-primary) !important;
}
.CodeMirror :focus {
outline: none;
}