mirror of https://github.com/go-gitea/gitea.git
* Fix double borders on edit page (#1152) * Add border modifications to less file
This commit is contained in:
parent
4e716fb0fa
commit
5463640fe6
|
@ -1406,6 +1406,17 @@ footer .ui.language .menu {
|
|||
.repository.file.editor .commit-form-wrapper {
|
||||
padding-left: 64px;
|
||||
}
|
||||
.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;
|
||||
}
|
||||
.repository.file.editor .commit-form-wrapper .commit-avatar {
|
||||
float: left;
|
||||
margin-left: -64px;
|
||||
|
|
|
@ -8,3 +8,14 @@
|
|||
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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue