From 421b1c9ef653e459bfd57c9b85c6b2f6ec4757db Mon Sep 17 00:00:00 2001 From: Graham Steffaniak Date: Sat, 22 Jul 2023 23:12:26 -0500 Subject: [PATCH] updated styling --- frontend/public/themes/dark.css | 13 +++- frontend/src/components/Sidebar.vue | 29 +++++++ frontend/src/components/header/HeaderBar.vue | 26 ++----- frontend/src/components/prompts/Prompts.vue | 6 -- frontend/src/css/base.css | 25 +++++- frontend/src/css/dashboard.css | 11 --- frontend/src/css/header.css | 32 ++++---- frontend/src/css/mobile.css | 81 -------------------- frontend/src/views/files/Listing.vue | 51 ++++-------- 9 files changed, 98 insertions(+), 176 deletions(-) diff --git a/frontend/public/themes/dark.css b/frontend/public/themes/dark.css index 98353831..0d0aac63 100644 --- a/frontend/public/themes/dark.css +++ b/frontend/public/themes/dark.css @@ -28,6 +28,13 @@ header { background: var(--surfacePrimary); } +@supports (backdrop-filter: none) { + header { + background: transparent; + backdrop-filter: blur(16px) invert(0.1); + } +} + #search #input { background: var(--surfaceSecondary); border-color: var(--surfacePrimary); @@ -185,6 +192,9 @@ table th { #editor-container .bar { background: var(--surfacePrimary); } +nav { + background: var(--surfaceSecondary) !important; +} @media (max-width: 736px) { #file-selection { @@ -193,9 +203,6 @@ table th { #file-selection span { color: var(--textPrimary) !important; } - nav { - background: var(--surfaceSecondary) !important; - } #dropdown { background: var(--surfaceSecondary) !important; } diff --git a/frontend/src/components/Sidebar.vue b/frontend/src/components/Sidebar.vue index f124484f..4f76c9f4 100644 --- a/frontend/src/components/Sidebar.vue +++ b/frontend/src/components/Sidebar.vue @@ -1,6 +1,35 @@