From 7c16cbf6c39491fcd5f33b661978ca222e714f71 Mon Sep 17 00:00:00 2001 From: josedario87 Date: Thu, 16 Oct 2025 23:38:21 -0600 Subject: [PATCH] =?UTF-8?q?Agregar=20b=C3=BAsqueda=20de=20aplicaciones=20y?= =?UTF-8?q?=20fix=20l=C3=ADnea=20blanca?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Campo de búsqueda con glassmorphism - Filtrar por nombre, URL y descripción - Icono de lupa y botón para limpiar búsqueda - Persistencia en cookie (1 semana) - Estilos completos para modo día y noche - Eliminar border-bottom blanco de barra de título - Agregar box-shadow: none a barra de título --- nuxt4/app/components/WindowTitleBar.vue | 5 +- .../app/components/auth/ApplicationsList.vue | 187 ++++++++++++++++-- 2 files changed, 179 insertions(+), 13 deletions(-) diff --git a/nuxt4/app/components/WindowTitleBar.vue b/nuxt4/app/components/WindowTitleBar.vue index 08c6095..014b862 100644 --- a/nuxt4/app/components/WindowTitleBar.vue +++ b/nuxt4/app/components/WindowTitleBar.vue @@ -72,8 +72,11 @@ onMounted(() => { transition: all 0.3s ease; /* Bloquear interacción con elementos debajo */ pointer-events: auto; - /* Eliminar cualquier margen o gap */ + /* Eliminar cualquier margen, gap o border */ margin: 0; + border: none; + border-bottom: none; + box-shadow: none; } .titlebar-content { diff --git a/nuxt4/app/components/auth/ApplicationsList.vue b/nuxt4/app/components/auth/ApplicationsList.vue index 0fe80a0..67b11a6 100644 --- a/nuxt4/app/components/auth/ApplicationsList.vue +++ b/nuxt4/app/components/auth/ApplicationsList.vue @@ -11,6 +11,27 @@ + +
+
+ + + +
+
+