From ce762372c60fa59ac147a41fd96e30f881bc5aa5 Mon Sep 17 00:00:00 2001 From: Weilbyte Date: Sun, 3 Mar 2019 14:40:10 +0100 Subject: [PATCH] Fix template icons Fix the white template icons when converting LXC/VM to a template. Also removed ugly white shadow on some icons. --- serverside/style.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/serverside/style.css b/serverside/style.css index 07e4999..9cb63f2 100644 --- a/serverside/style.css +++ b/serverside/style.css @@ -376,3 +376,14 @@ html { width: 0px; /* remove scrollbar space */ background: transparent; /* optional: just make scrollbar invisible */ } +/* Fix template icons */ +.lxc:after, .qemu:after { + background: transparent !important; + color: #7289da; + text-shadow: 0 0 0 #2c2f33 !Important; + +} +/* Remove text shadow on some icons */ +.x-tree-icon-custom:after, .x-grid-icon-custom:after { + text-shadow: 0 0 0 #2c2f33; +}