WebUI: Replace GIFs with SVG

Unused GIFs have been removed along with their CSS; some GIFs have been replaced with CSS, and all SVGs were drawn myself.

PR #23074.
This commit is contained in:
tehcneko
2025-08-11 16:38:11 +08:00
committed by GitHub
parent f743ae2d08
commit 03fb036ae3
22 changed files with 66 additions and 123 deletions

View File

@@ -2489,7 +2489,7 @@ window.qBittorrent.DynamicTable ??= (() => {
if (td.firstElementChild === null) {
const treeImg = document.createElement("img");
treeImg.src = "images/L.gif";
treeImg.src = "images/L.svg";
treeImg.style.marginBottom = "-2px";
td.append(treeImg);
}
@@ -2974,7 +2974,7 @@ window.qBittorrent.DynamicTable ??= (() => {
if (td.firstElementChild === null) {
const treeImg = document.createElement("img");
treeImg.src = "images/L.gif";
treeImg.src = "images/L.svg";
treeImg.style.marginBottom = "-2px";
td.append(treeImg);
}