mirror of
https://github.com/go-gitea/gitea.git
synced 2024-05-11 05:55:29 +00:00
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.
This commit is contained in:
@ -2,10 +2,7 @@ $(async () => {
|
||||
const graphCanvas = document.getElementById('graph-canvas');
|
||||
if (!graphCanvas) return;
|
||||
|
||||
const [{ default: gitGraph }] = await Promise.all([
|
||||
import(/* webpackChunkName: "gitgraph" */'./gitGraph.js'),
|
||||
import(/* webpackChunkName: "gitgraph" */'../css/gitGraph.css'),
|
||||
]);
|
||||
const { default: gitGraph } = await import(/* webpackChunkName: "gitgraph" */'./gitGraph.js');
|
||||
|
||||
const graphList = [];
|
||||
$('#graph-raw-list li span.node-relation').each(function () {
|
||||
|
Reference in New Issue
Block a user