loading up the forgejo repo on tangled to test page performance
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Remove EasyMDE focus outline on text (#25328)

EasyMDE in Firefox currently shows an ugly outline in the fake textarea
the CodeMirror uses. Hide it.

authored by

silverwind and committed by
GitHub
95ab4854 ccc19eda

+4
+4
web_src/css/codemirror/base.css
··· 43 43 .CodeMirror-focused { 44 44 border-color: var(--color-primary) !important; 45 45 } 46 + 47 + .CodeMirror :focus { 48 + outline: none; 49 + }