From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) by lore.proxmox.com (Postfix) with ESMTPS id D39021FF16B for ; Tue, 26 Aug 2025 16:59:51 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id C05FF37389; Tue, 26 Aug 2025 16:59:16 +0200 (CEST) From: Shannon Sterz To: pve-devel@lists.proxmox.com Date: Tue, 26 Aug 2025 16:58:31 +0200 Message-ID: <20250826145836.302748-5-s.sterz@proxmox.com> X-Mailer: git-send-email 2.47.2 In-Reply-To: <20250826145836.302748-1-s.sterz@proxmox.com> References: <20250826145836.302748-1-s.sterz@proxmox.com> MIME-Version: 1.0 X-Bm-Milter-Handled: 55990f41-d878-4baa-be0a-ee34c49e34d2 X-Bm-Transport-Timestamp: 1756220313683 X-SPAM-LEVEL: Spam detection results: 0 AWL 0.023 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment KAM_SHORT 0.001 Use of a URL Shortener for very short URL SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Subject: [pve-devel] [PATCH manager 4/9] ui: use svg version of the noVnc icon X-BeenThere: pve-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox VE development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: Proxmox VE development discussion Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: pve-devel-bounces@lists.proxmox.com Sender: "pve-devel" this should avoid blury icons on higher resolution displays Signed-off-by: Shannon Sterz --- www/css/ext6-pve.css | 3 +- www/images/Makefile | 5 +- www/images/novnc.png | Bin 453 -> 0 bytes www/images/novnc.svg | 163 +++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 169 insertions(+), 2 deletions(-) delete mode 100644 www/images/novnc.png create mode 100644 www/images/novnc.svg diff --git a/www/css/ext6-pve.css b/www/css/ext6-pve.css index 0b92041df..06378c399 100644 --- a/www/css/ext6-pve.css +++ b/www/css/ext6-pve.css @@ -382,7 +382,8 @@ } .pve-itype-icon-novnc { - background-image: url(../images/novnc.png); + background-size: 16px; + background-image: url(../images/novnc.svg); } .pve-itype-icon-virt-viewer { diff --git a/www/images/Makefile b/www/images/Makefile index 7c9e12cb0..c0141ed1e 100644 --- a/www/images/Makefile +++ b/www/images/Makefile @@ -13,6 +13,9 @@ all: # checked.png converted from extjs examples/ux/css/images/checked.gif # unchecked.png converted from extjs examples/ux/css/images/unchecked.gif # swap.png downloaded from https://www.iconfinder.com/icons/17009/arrows_exchange_interact_refresh_reload_swap_sync_update_icon#size=16 +# +# novnc.svg copied from the noVnc source: +# https://github.com/novnc/noVNC/blob/master/app/images/icons/novnc-icon-sm.svg # icon-cd, icon-pci # are self made (sources as .xcf) @@ -50,7 +53,7 @@ GNOME_IMAGES = \ IMAGES = $(GNOME_IMAGES) \ virt-viewer.png \ tigervnc.png \ - novnc.png \ + novnc.svg \ xtermjs.png \ favicon.ico \ snapshot.png \ diff --git a/www/images/novnc.png b/www/images/novnc.png deleted file mode 100644 index e2bdb19436f33713fb758376329cf59486b0cdff..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 453 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|*pj^6U4S$Y z{B+)352QE?JR*yM^imLJEI4v66v$vN@$_|Nzs)EuXf1b@XGtB<6jx6d#}JFtOD7-n zI_x0gdcNl>%TiVOhwVpN6^_0yNId8osL^rTNZQIULc_^3E@(-y%Spc5Q~vy(d8L!)(x1n*7)_*losOPO6XtxtI&bNw>fdLNZ8Dwf z$IIAo{quy`M$-j;DK3=%w?ZjAaObK&H{HAptRzKWIeQ7*KiU)h_)g-r{Sm_V_d7i@ ze&ymaw?pTfHml?IIZTe*dmMBUR5LfIWL5K>i#m4b+qJBy1&05xz4K!eX8XL_`Om8f zVbx5BqIT4GSlSgy?m1KRiH|?#SMyHA8TzN@`>bi|&VIbRcH2a6i~WBVl#% zWRl#M`RQ-2?~glB>Kmrt@$!yDk*4p)b3T2KBbe4c{Fv#s_FrD!=E(K=v)<*pOqy(B slDTM#cEa+F0UAq7I2|-YE9TfUc1w106`8X%0>hZW)78&qol`;+0Ig`bxBvhE diff --git a/www/images/novnc.svg b/www/images/novnc.svg new file mode 100644 index 000000000..aa1c6f185 --- /dev/null +++ b/www/images/novnc.svg @@ -0,0 +1,163 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -- 2.47.2 _______________________________________________ pve-devel mailing list pve-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel