mirror of
https://github.com/go-gitea/gitea
synced 2024-11-21 23:11:05 +01:00
Clean up arc-green theme (#4443)
* Resolve some issues with Arc Green * Fix editor styles * zeebra stripes * generate CSS file
This commit is contained in:
parent
ca8c7bb2b5
commit
a7c5e58635
2 changed files with 18 additions and 2 deletions
File diff suppressed because one or more lines are too long
|
@ -4,7 +4,6 @@
|
||||||
display: block;
|
display: block;
|
||||||
overflow-x: auto;
|
overflow-x: auto;
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
background-color: #2b2b2b !important;
|
|
||||||
color: #bababa;
|
color: #bababa;
|
||||||
}
|
}
|
||||||
.repository.file.list .non-diff-file-content .code-view .lines-num, .repository.file.list .non-diff-file-content .code-view .lines-code ol {
|
.repository.file.list .non-diff-file-content .code-view .lines-num, .repository.file.list .non-diff-file-content .code-view .lines-code ol {
|
||||||
|
@ -321,6 +320,9 @@
|
||||||
.markdown:not(code) .highlight pre, .markdown:not(code) pre {
|
.markdown:not(code) .highlight pre, .markdown:not(code) pre {
|
||||||
background-color: #2a2e3a;
|
background-color: #2a2e3a;
|
||||||
border: 1px solid #404552;
|
border: 1px solid #404552;
|
||||||
|
}
|
||||||
|
.markdown:not(code) table tr:nth-child(2n) {
|
||||||
|
background-color: #474d61;
|
||||||
}
|
}
|
||||||
.ui.dropdown .menu {
|
.ui.dropdown .menu {
|
||||||
background: #2c303a;
|
background: #2c303a;
|
||||||
|
@ -749,3 +751,17 @@
|
||||||
box-shadow: 0 0 0 1px #609926 inset!important;
|
box-shadow: 0 0 0 1px #609926 inset!important;
|
||||||
color: #609926!important;
|
color: #609926!important;
|
||||||
}
|
}
|
||||||
|
.editor-toolbar {
|
||||||
|
background-color: #404552;
|
||||||
|
a {
|
||||||
|
color: #87ab63 !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.CodeMirror {
|
||||||
|
color: #9daccc;
|
||||||
|
background-color: #2b2b2b;
|
||||||
|
border-top: none;
|
||||||
|
}
|
||||||
|
.CodeMirror-gutters{
|
||||||
|
background-color: #2b2b2b;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue