From 0d8cf8a7e51779252445479e6680754dd97296e5 Mon Sep 17 00:00:00 2001 From: deploy Date: Sat, 27 Jun 2026 21:43:45 +0000 Subject: [PATCH] fix-broker-VP-dots --- esp_proxmox.php | 7 ++----- esp_vps.php | 10 ++++++---- 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/esp_proxmox.php b/esp_proxmox.php index cdf2623..7ec654e 100644 --- a/esp_proxmox.php +++ b/esp_proxmox.php @@ -137,13 +137,10 @@ ob_start(); -
+ style="cursor:pointer;display:inline-flex;align-items:center;justify-content:center;width:18px;height:18px;border-radius:50%;font-size:9px;font-weight:700;margin:0 3px;background:;color:;">V + style="cursor:pointer;display:inline-flex;align-items:center;justify-content:center;width:18px;height:18px;border-radius:50%;font-size:9px;font-weight:700;margin:0 3px;background:;color:;">P diff --git a/esp_vps.php b/esp_vps.php index 3d1ce97..cd15962 100644 --- a/esp_vps.php +++ b/esp_vps.php @@ -94,9 +94,11 @@ ob_start(); - - - + + V + P @@ -114,7 +116,7 @@ function act(uid, action, extra){ fetch('/esp_vps.php',{method:'POST',body:fd}).then(()=>location.reload()); } document.addEventListener('click',function(e){ - const b=e.target.closest('button[data-act]'); if(!b) return; + const b=e.target.closest('[data-act]'); if(!b) return; if(b.dataset.act==='delete' && !confirm('Remover '+b.dataset.uid+'?')) return; const extra={}; if(b.dataset.pair!==undefined) extra.pair=b.dataset.pair;