diff options
author | techknowlogick <techknowlogick@users.noreply.github.com> | 2018-07-14 02:07:30 -0400 |
---|---|---|
committer | Lauris BH <lauris@nix.lv> | 2018-07-14 09:07:30 +0300 |
commit | a7c5e586355ecdd2811df46b7d17143232542e0d (patch) | |
tree | fd25466b6d71904347b5d87518633a27f7d8ef27 /public/less | |
parent | ca8c7bb2b59a5d2a072d548e07705bf5937fe61f (diff) | |
download | gitea-a7c5e586355ecdd2811df46b7d17143232542e0d.tar.gz gitea-a7c5e586355ecdd2811df46b7d17143232542e0d.zip |
Clean up arc-green theme (#4443)
* Resolve some issues with Arc Green
* Fix editor styles
* zeebra stripes
* generate CSS file
Diffstat (limited to 'public/less')
-rw-r--r-- | public/less/themes/arc-green.less | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/public/less/themes/arc-green.less b/public/less/themes/arc-green.less index 5d55004103..fc34f1ef2a 100644 --- a/public/less/themes/arc-green.less +++ b/public/less/themes/arc-green.less @@ -4,7 +4,6 @@ display: block; overflow-x: auto; padding: 0.5em; - background-color: #2b2b2b !important; 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 { @@ -322,6 +321,9 @@ background-color: #2a2e3a; border: 1px solid #404552; } + .markdown:not(code) table tr:nth-child(2n) { + background-color: #474d61; +} .ui.dropdown .menu { background: #2c303a; } @@ -749,3 +751,17 @@ box-shadow: 0 0 0 1px #609926 inset!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; +} |