almost giving up on coloring svgs
authordanix <danix@danix.xyz>
Sun, 26 Feb 2023 07:34:09 +0000 (08:34 +0100)
committerdanix <danix@danix.xyz>
Sun, 26 Feb 2023 07:34:09 +0000 (08:34 +0100)
gitweb-danixland/gitweb.css

index 49bedb9..de0108b 100644 (file)
@@ -55,6 +55,7 @@ a { outline: none; }
   --link-visited: #e7b788;
   --border: 34,40,49,0.035;
   --accent: #FD7014;
+  --svg-color: navy;
   --file-icon: url("file.svg");
   --dir-icon: url("folder.svg");
   --ref-icon: url("commit.svg");
@@ -119,12 +120,12 @@ td.list a[href*='tree'], td.list a[href*='blob'] {
 
 /* Folder Icon */
 td.list a[href*='tree'] {
-  background: var(--dir-icon) center left no-repeat;
+  background: var(--svg-color) var(--dir-icon) center left no-repeat;
 }
 
 /* File Icon */
 td.list a[href*='blob'] {
-  background: var(--file-icon) center left no-repeat;
+  background: var(--svg-color) var(--file-icon) center left no-repeat;
 }
 
 i {