From 3251fea4036cf2013f4b346ec3668bf280aaceb9 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 24 Dec 2025 23:40:54 +0000 Subject: [PATCH] =?UTF-8?q?=D8=A5=D8=B5=D9=84=D8=A7=D8=AD=20=D8=AB=D8=BA?= =?UTF-8?q?=D8=B1=D8=A7=D8=AA=20=D8=A3=D9=85=D9=86=D9=8A=D8=A9=20=D9=88?= =?UTF-8?q?=D9=85=D8=B4=D8=A7=D9=83=D9=84=20=D8=A8=D8=B1=D9=85=D8=AC=D9=8A?= =?UTF-8?q?=D8=A9=20=D9=85=D8=AA=D8=B9=D8=AF=D8=AF=D8=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - إصلاح CSS مكسور في .control-panel - إضافة دالة escapeHtml للحماية من XSS - حذف المتغيرات غير المستخدمة (busRecords, gateStats) - إصلاح تسريب الذاكرة في setInterval مع إضافة cleanup - إصلاح event الضمني في دالة showTab - إصلاح JSON.parse بدون try-catch في openBusForm - إصلاح تسريب الذاكرة في showFormsMenu (Event Listeners) - تفعيل دالة filterBuses غير المكتملة - إصلاح parseInt بدون radix - ربط دالة selectSpot بأحداث النقر - تطبيق escapeHtml على جميع innerHTML المعرضة للخطر --- index.html | 221 ++++++++++++++++++++++++++++++++++------------------- 1 file changed, 144 insertions(+), 77 deletions(-) diff --git a/index.html b/index.html index 17d9a58..c4e8102 100644 --- a/index.html +++ b/index.html @@ -473,8 +473,8 @@ /* ═══════════════ لوحة التحكم الجانبية ═══════════════ */ .control-panel { width: var(--panel-width); - background: ... - border-right: ... + background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%); + border-right: 2px solid var(--primary); padding: 15px; overflow-y: auto; transition: all 0.3s; @@ -1409,14 +1409,14 @@
- - - - - - - - + + + + + + + +
@@ -1774,10 +1774,17 @@