diff options
author | silverwind <me@silverwind.io> | 2020-01-29 00:22:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-28 23:22:39 +0000 |
commit | 7c84dbca4f0f79dc90752105800a6964693283bd (patch) | |
tree | e7f678be8d64f7e9528bbb2f46c52efbfd173416 /web_src/less/index.less | |
parent | b9690d7c0b4980c46b3416e36478fa0140dd5f9e (diff) | |
download | gitea-7c84dbca4f0f79dc90752105800a6964693283bd.tar.gz gitea-7c84dbca4f0f79dc90752105800a6964693283bd.zip |
fix gitgraph commit hashes in dark theme (#10046)
because the CSS was lazy-loaded the rules in arc-green did not win.
included the css file in the main bundle to fix. the black dots can not
be fixed via CSS because they are drawn in a `<canvas>` element
unfortunately.
Diffstat (limited to 'web_src/less/index.less')
-rw-r--r-- | web_src/less/index.less | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/web_src/less/index.less b/web_src/less/index.less index de6f2088c3..a8ef18953d 100644 --- a/web_src/less/index.less +++ b/web_src/less/index.less @@ -14,3 +14,4 @@ @import "_explore"; @import "_review"; @import "~highlight.js/styles/github.css"; +@import "../css/gitGraph.css"; |