mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08: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:
		@@ -19,8 +19,6 @@ var urlsToCache = [
 | 
				
			|||||||
  '{{StaticUrlPrefix}}/vendor/plugins/vue/vue.min.js',
 | 
					  '{{StaticUrlPrefix}}/vendor/plugins/vue/vue.min.js',
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  // css
 | 
					  // css
 | 
				
			||||||
  '{{StaticUrlPrefix}}/css/gitgraph.css',
 | 
					 | 
				
			||||||
  '{{StaticUrlPrefix}}/css/highlight.css',
 | 
					 | 
				
			||||||
  '{{StaticUrlPrefix}}/css/index.css?v={{MD5 AppVer}}',
 | 
					  '{{StaticUrlPrefix}}/css/index.css?v={{MD5 AppVer}}',
 | 
				
			||||||
  '{{StaticUrlPrefix}}/css/swagger.css?v={{MD5 AppVer}}',
 | 
					  '{{StaticUrlPrefix}}/css/swagger.css?v={{MD5 AppVer}}',
 | 
				
			||||||
  '{{StaticUrlPrefix}}/fomantic/semantic.min.css?v={{MD5 AppVer}}',
 | 
					  '{{StaticUrlPrefix}}/fomantic/semantic.min.css?v={{MD5 AppVer}}',
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -2,10 +2,7 @@ $(async () => {
 | 
				
			|||||||
  const graphCanvas = document.getElementById('graph-canvas');
 | 
					  const graphCanvas = document.getElementById('graph-canvas');
 | 
				
			||||||
  if (!graphCanvas) return;
 | 
					  if (!graphCanvas) return;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  const [{ default: gitGraph }] = await Promise.all([
 | 
					  const { default: gitGraph } = await import(/* webpackChunkName: "gitgraph" */'./gitGraph.js');
 | 
				
			||||||
    import(/* webpackChunkName: "gitgraph" */'./gitGraph.js'),
 | 
					 | 
				
			||||||
    import(/* webpackChunkName: "gitgraph" */'../css/gitGraph.css'),
 | 
					 | 
				
			||||||
  ]);
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
  const graphList = [];
 | 
					  const graphList = [];
 | 
				
			||||||
  $('#graph-raw-list li span.node-relation').each(function () {
 | 
					  $('#graph-raw-list li span.node-relation').each(function () {
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -14,3 +14,4 @@
 | 
				
			|||||||
@import "_explore";
 | 
					@import "_explore";
 | 
				
			||||||
@import "_review";
 | 
					@import "_review";
 | 
				
			||||||
@import "~highlight.js/styles/github.css";
 | 
					@import "~highlight.js/styles/github.css";
 | 
				
			||||||
 | 
					@import "../css/gitGraph.css";
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user