diff options
author | 0neGal <mail@0negal.com> | 2024-02-04 00:30:46 +0100 |
---|---|---|
committer | 0neGal <mail@0negal.com> | 2024-02-04 15:30:14 +0100 |
commit | ceda605611c9ec2fbe858f3ae29942d56a06ac66 (patch) | |
tree | f36d3bc8edb8697fb94a2fc729557e4b28e5ff73 /src/app/index.html | |
parent | a12be054d2352f4a9c6613b460a8ae63bf5bfb7a (diff) | |
download | Viper-ceda605611c9ec2fbe858f3ae29942d56a06ac66.tar.gz Viper-ceda605611c9ec2fbe858f3ae29942d56a06ac66.zip |
added icons to more buttons
Diffstat (limited to 'src/app/index.html')
-rw-r--r-- | src/app/index.html | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/src/app/index.html b/src/app/index.html index 9f0297d..016b708 100644 --- a/src/app/index.html +++ b/src/app/index.html @@ -290,10 +290,22 @@ <div class="line"> <div class="text" id="modcount">%%gui.mods.title%%</div> <div class="buttons modbtns"> - <button id="removeall" class="bg-red2" onclick="mods.remove('allmods')">%%gui.mods.remove_all%%</button> - <button id="toggleall" class="bg-orange2" onclick="mods.toggle('allmods')">%%gui.mods.toggle_all%%</button> - <button id="installmod" class="bg-blue" onclick="installmod()">%%gui.mods.install%%</button> - <button id="findmod" class="bg-blue2" onclick="Browser.toggle(true)">%%gui.mods.find%%</button> + <button id="removeall" class="bg-red2" onclick="mods.remove('allmods')"> + <img src="icons/trash.png"> + %%gui.mods.remove_all%% + </button> + <button id="toggleall" class="bg-orange2" onclick="mods.toggle('allmods')"> + <img src="icons/toggles.png"> + %%gui.mods.toggle_all%% + </button> + <button id="installmod" class="bg-blue" onclick="installmod()"> + <img src="icons/downloads.png"> + %%gui.mods.install%% + </button> + <button id="findmod" class="bg-blue2" onclick="Browser.toggle(true)"> + <img src="icons/search.png"> + %%gui.mods.find%% + </button> </div> </div> </div> |