mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-10 12:15:43 +01:00
* Fix double borders on edit page (#1152) * Add border modifications to less file
This commit is contained in:
parent
4e716fb0fa
commit
5463640fe6
2 changed files with 24 additions and 2 deletions
|
@ -1406,6 +1406,17 @@ footer .ui.language .menu {
|
||||||
.repository.file.editor .commit-form-wrapper {
|
.repository.file.editor .commit-form-wrapper {
|
||||||
padding-left: 64px;
|
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 {
|
.repository.file.editor .commit-form-wrapper .commit-avatar {
|
||||||
float: left;
|
float: left;
|
||||||
margin-left: -64px;
|
margin-left: -64px;
|
||||||
|
|
|
@ -8,3 +8,14 @@
|
||||||
background: inherit !important;
|
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 a new issue