From 370c46bddbcf67e5826ef115f4bebd0fb718c0c6 Mon Sep 17 00:00:00 2001 From: Smittix Date: Thu, 8 Jan 2026 14:35:17 +0000 Subject: [PATCH] Add CSS styling for WiFi client cards - Add .wifi-client-card styles matching network card layout - Purple border and subtle background for visual distinction - Consistent font sizing with network cards Co-Authored-By: Claude Opus 4.5 --- static/css/index.css | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/static/css/index.css b/static/css/index.css index a8465f5..67255aa 100644 --- a/static/css/index.css +++ b/static/css/index.css @@ -2615,6 +2615,22 @@ header p { font-size: 12px; } +/* WiFi client cards in device list */ +.wifi-client-card { + margin-bottom: 8px; + padding: 10px !important; + border-left-color: var(--accent-purple) !important; + background: rgba(153, 51, 255, 0.05); +} + +.wifi-client-card .header { + font-size: 12px; +} + +.wifi-client-card .sensor-data { + font-size: 10px; +} + .wifi-network-card .sensor-data { font-size: 10px; }