From b15b7093b101cc187a072df3f89442154bdfadd5 Mon Sep 17 00:00:00 2001 From: David Itehua Xalamihua Date: Sat, 24 May 2025 13:11:57 -0600 Subject: [PATCH] intento 3 --- templates/z_comps/boton_chat.html | 224 ++++++++++++++---------------- 1 file changed, 104 insertions(+), 120 deletions(-) diff --git a/templates/z_comps/boton_chat.html b/templates/z_comps/boton_chat.html index 25942a0..eedec72 100644 --- a/templates/z_comps/boton_chat.html +++ b/templates/z_comps/boton_chat.html @@ -8,10 +8,9 @@ display: flex; justify-content: center; align-items: center; - cursor: move; - user-select: none; - z-index: 1; - /* z-index: 1000; */ + cursor: move; /* Indica que es arrastrable */ + user-select: none; /* Evita selección de texto al arrastrar */ + z-index: 1000; /* Asegura que esté por encima de otros elementos */ transition: background-color 0.3s, left 0.3s ease, @@ -20,11 +19,11 @@ } .floating-btn:active { - cursor: grabbing; + cursor: grabbing; /* Cambia el cursor mientras se arrastra */ } - +
+ +