mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-10 20:59:31 +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 {
|
||||
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;
|
||||
|
@ -3003,4 +3014,4 @@ footer .ui.language .menu {
|
|||
.signin .oauth2 img {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue