Closed
Description
- Gitea version (or commit ref):
- Git version:
- Operating system:
- Database (use
[x]
):- SQLite
- Can you reproduce the bug at https://try.gitea.io:
- Yes (Just edit any file)
- Log gist: Not relevant
Description
There is unnecessary double borders around the editors on the edit file view. This applies to both the markdown and the plain text editor.
This CSS code will fix it:
.repository.file.editor .tab[data-tab="write"] {
padding: 0 !important;
}
.repository.file.editor .tab[data-tab="write"] .editor-toolbar {
border: none !important;
}
.repository.file.editor .tab[data-tab="write"] .CodeMirror {
border-left: none;
border-right: none;
border-bottom: none;
}
Screenshots
Before modifications | After modifications |
---|---|
![]() |
![]() |