diff --git a/web/desktop/dashboard/dashboard.css b/web/desktop/dashboard/dashboard.css index cfaf5471..0ea2d223 100644 --- a/web/desktop/dashboard/dashboard.css +++ b/web/desktop/dashboard/dashboard.css @@ -1,4 +1,4 @@ -/* Dashboard specific styles */ +/* Dashboard styles - updated to match visual identity */ .container { max-width: 1200px; margin: 0 auto; @@ -13,26 +13,26 @@ .card { padding: 1.5rem; - background: var(--card); - border: 1px solid var(--border); + background: #1e293b; + border: 1px solid #334155; border-radius: 0.5rem; } .card h3 { font-size: 0.875rem; - color: var(--muted-foreground); + color: #94a3b8; margin-bottom: 0.5rem; } .card .value { font-size: 1.5rem; font-weight: bold; - color: var(--card-foreground); + color: #e2e8f0; } .card .subtext { font-size: 0.75rem; - color: var(--muted-foreground); + color: #94a3b8; margin-top: 0.25rem; } @@ -45,8 +45,8 @@ .overview-container, .recent-sales-container { padding: 1.5rem; - background: var(--card); - border: 1px solid var(--border); + background: #1e293b; + border: 1px solid #334155; border-radius: 0.5rem; } @@ -54,20 +54,20 @@ .recent-sales-container h3 { font-size: 1.125rem; font-weight: 500; - color: var(--card-foreground); + color: #e2e8f0; margin-bottom: 1rem; } .download-btn { padding: 0.5rem 1rem; - background: var(--primary); - color: var(--primary-foreground); + background: #3b82f6; + color: white; border: none; border-radius: 0.375rem; cursor: pointer; - transition: opacity 0.2s; + transition: background 0.2s; } .download-btn:hover { - opacity: 0.9; + background: #2563eb; } diff --git a/web/desktop/dashboard/index.html b/web/desktop/dashboard/dashboard.html similarity index 100% rename from web/desktop/dashboard/index.html rename to web/desktop/dashboard/dashboard.html diff --git a/web/desktop/drive/index.html b/web/desktop/drive/drive.html similarity index 100% rename from web/desktop/drive/index.html rename to web/desktop/drive/drive.html diff --git a/web/desktop/editor/index.html b/web/desktop/editor/editor.html similarity index 100% rename from web/desktop/editor/index.html rename to web/desktop/editor/editor.html diff --git a/web/desktop/js/layout.js b/web/desktop/js/layout.js index ccf61d75..e3804e9d 100644 --- a/web/desktop/js/layout.js +++ b/web/desktop/js/layout.js @@ -1,7 +1,14 @@ const sections = { - drive: 'drive/index.html', - tasks: 'tasks/index.html', - mail: 'mail/index.html' + drive: 'drive/drive.html', + tasks: 'tasks/tasks.html', + mail: 'mail/mail.html', + dashboard: 'dashboard/dashboard.html', + editor: 'editor/editor.html', + player: 'player/player.html', + paper: 'paper/paper.html', + settings: 'settings/settings.html', + tables: 'tablesv2/tables.html', + news: 'news/news.html' }; async function loadSectionHTML(path) { diff --git a/web/desktop/mail/index.html b/web/desktop/mail/mail.html similarity index 100% rename from web/desktop/mail/index.html rename to web/desktop/mail/mail.html diff --git a/web/desktop/news/index.html b/web/desktop/news/news.html similarity index 100% rename from web/desktop/news/index.html rename to web/desktop/news/news.html diff --git a/web/desktop/paper/index.html b/web/desktop/paper/paper.html similarity index 100% rename from web/desktop/paper/index.html rename to web/desktop/paper/paper.html diff --git a/web/desktop/player/index.html b/web/desktop/player/player.html similarity index 100% rename from web/desktop/player/index.html rename to web/desktop/player/player.html diff --git a/web/desktop/settings/index.html b/web/desktop/settings/settings.html similarity index 100% rename from web/desktop/settings/index.html rename to web/desktop/settings/settings.html diff --git a/web/desktop/tablesv2/index.html b/web/desktop/tablesv2/tables.html similarity index 100% rename from web/desktop/tablesv2/index.html rename to web/desktop/tablesv2/tables.html diff --git a/web/desktop/tasks/index.html b/web/desktop/tasks/tasks.html similarity index 100% rename from web/desktop/tasks/index.html rename to web/desktop/tasks/tasks.html