From cf99c06b97c8a98fc61fbc341fc56d7941c3c475 Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 20 Feb 2026 02:51:41 +0000 Subject: [PATCH] feat: integrate Bootstrap 5.3 into Mission Control dashboard - Add Bootstrap 5.3.3 CSS/JS via CDN to base.html with dark theme (data-bs-theme="dark") - Rework index.html to use Bootstrap grid (container-fluid, row, col-md-3/9), card components, and form utilities - Update health_status partial to use Bootstrap card-header/card-body structure - Rewrite style.css to override Bootstrap CSS variables for the dark mission-control palette; replace .badge.up/down/ready with .mc-badge-* modifiers; adapt layout and mobile breakpoints to Bootstrap grid All 27 tests pass. https://claude.ai/code/session_01KZMfwBpLuiv6x9GbzTqbys --- src/dashboard/templates/base.html | 4 +- src/dashboard/templates/index.html | 140 ++++++------ .../templates/partials/health_status.html | 12 +- static/style.css | 199 ++++++++---------- 4 files changed, 170 insertions(+), 185 deletions(-) diff --git a/src/dashboard/templates/base.html b/src/dashboard/templates/base.html index 4e84890..d8003e7 100644 --- a/src/dashboard/templates/base.html +++ b/src/dashboard/templates/base.html @@ -1,5 +1,5 @@ - + @@ -10,6 +10,7 @@ + @@ -37,5 +38,6 @@ setInterval(updateClock, 1000); updateClock(); + diff --git a/src/dashboard/templates/index.html b/src/dashboard/templates/index.html index c75680b..ca57bdc 100644 --- a/src/dashboard/templates/index.html +++ b/src/dashboard/templates/index.html @@ -2,77 +2,87 @@ {% block content %} -