+ {/* project-list-wrapper is required by sidebar CSS */}
+
-
-
-
- {error && }
-
-
-
-
+
- {visibleProjects.length === 0 ? (
- {t('no_projects')}
- ) : (
-
- {visibleProjects.map(project => (
-
- ))}
-
- )}
-
-
-
+ {visibleProjects.length === 0 ? (
+ {t('no_projects')}
+ ) : (
+
+ {visibleProjects.map(project => (
+
+ ))}
+
+ )}
+
+
+
+
+
-
)
}
diff --git a/services/web/frontend/stylesheets/pages/project-list-lumiere.scss b/services/web/frontend/stylesheets/pages/project-list-lumiere.scss
index 7a339134cd..1c8a423c7c 100644
--- a/services/web/frontend/stylesheets/pages/project-list-lumiere.scss
+++ b/services/web/frontend/stylesheets/pages/project-list-lumiere.scss
@@ -1,40 +1,15 @@
-// Verso Lumière — card-based project dashboard theme
+// Verso Lumière — card-based project dashboard theme.
+//
+// The outer element carries both project-ds-nav-page (for sidebar/navbar CSS)
+// and project-list-lumiere (our hook). We only override what differs from the
+// classic light theme: the content area background and the card grid layout.
.project-list-lumiere {
- display: flex;
- flex-direction: column;
- min-height: 100vh;
- background: #f0f4f8;
-
- .lumiere-layout {
- display: flex;
- flex: 1;
- min-height: 0;
-
- // Reuse the existing sidebar but give it a white background in Lumière
- .project-list-sidebar-wrapper-react {
- background: #ffffff;
- border-right: 1px solid #e2e8f0;
- }
- }
-
- .lumiere-main-wrapper {
- display: flex;
- flex-direction: column;
- flex: 1;
- min-width: 0;
- overflow-y: auto;
- }
-
- .lumiere-main {
- flex: 1;
- padding: 2rem 2.5rem;
- max-width: 1400px;
- width: 100%;
-
- @media (max-width: 768px) {
- padding: 1.25rem 1rem;
- }
+ // ── Content-area background ─────────────────────────────────────────────
+ // The classic theme uses --ds-nav-content-bg-secondary (a light grey).
+ // Lumière uses a cooler, airier blue-grey.
+ .project-ds-nav-content {
+ background-color: #f0f4f8;
}
// ── Header ──────────────────────────────────────────────────────────────
@@ -44,7 +19,7 @@
align-items: flex-start;
justify-content: space-between;
gap: 1rem;
- margin-bottom: 2rem;
+ margin-bottom: 1.75rem;
flex-wrap: wrap;
}
@@ -56,14 +31,14 @@
flex-wrap: wrap;
}
- // Override ProjectListTitle so it renders with Lumière typography
+ // Override ProjectListTitle styling for the Lumière serif look
.lumiere-title {
- font-family: Georgia, 'Times New Roman', 'DejaVu Serif', serif;
- font-size: 2.25rem;
- font-weight: 700;
- color: #1a2e3b;
- line-height: 1.15;
- margin: 0;
+ font-family: Georgia, 'Times New Roman', 'DejaVu Serif', serif !important;
+ font-size: 2rem !important;
+ font-weight: 700 !important;
+ color: #1a2e3b !important;
+ line-height: 1.15 !important;
+ margin: 0 !important;
}
// ── Empty state ─────────────────────────────────────────────────────────
@@ -80,7 +55,7 @@
display: grid;
grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
gap: 1.5rem;
- margin-top: 1.5rem;
+ margin-top: 0.5rem;
}
// ── Individual card ──────────────────────────────────────────────────────