From 7f443e164d86de15be06a9bfba88bab1e6da8be0 Mon Sep 17 00:00:00 2001 From: marsalva Date: Mon, 16 Feb 2026 23:34:10 +0000 Subject: [PATCH] Actualizar proveedores.html --- proveedores.html | 720 ++++++++++++++++++++++++----------------------- 1 file changed, 365 insertions(+), 355 deletions(-) diff --git a/proveedores.html b/proveedores.html index 8dba49d..368ccb3 100644 --- a/proveedores.html +++ b/proveedores.html @@ -204,383 +204,393 @@ + function showToast(msg, isError = false) { + const t = document.getElementById('toast'), m = document.getElementById('toastMsg'); + t.className = `fixed bottom-8 right-8 px-8 py-4 rounded-2xl shadow-2xl z-[200] flex items-center gap-3 transition-all ${isError ? 'bg-red-600' : 'bg-slate-900'} text-white`; + m.innerText = msg; t.classList.remove('hidden'); + setTimeout(() => t.classList.add('hidden'), 4000); + } + \ No newline at end of file