1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-22 18:28:37 +00:00

Fix double borders on edit page (#1152) (#1153)

* Fix double borders on edit page (#1152)

* Add border modifications to less file
This commit is contained in:
Patrick G
2017-03-10 01:33:35 +00:00
committed by Lunny Xiao
parent 4e716fb0fa
commit 5463640fe6
2 changed files with 24 additions and 2 deletions

View File

@@ -7,4 +7,15 @@
.cm-comment {
background: inherit !important;
}
}
}
.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;
}