From 822628157980ab3af8f7d325ea277a78bae55912 Mon Sep 17 00:00:00 2001 From: Graham Steffaniak Date: Sun, 30 Jul 2023 17:20:22 -0500 Subject: [PATCH] updated hovers --- frontend/public/themes/dark.css | 44 +++---- frontend/src/components/Search.vue | 6 +- frontend/src/components/Sidebar.vue | 28 ----- frontend/src/components/prompts/Prompts.vue | 13 +- frontend/src/css/base.css | 29 +++-- frontend/src/css/dashboard.css | 15 ++- frontend/src/css/header.css | 6 +- frontend/src/css/styles.css | 2 +- frontend/src/views/files/Listing.vue | 128 ++++++++------------ 9 files changed, 124 insertions(+), 147 deletions(-) diff --git a/frontend/public/themes/dark.css b/frontend/public/themes/dark.css index 4b508840..f202f157 100644 --- a/frontend/public/themes/dark.css +++ b/frontend/public/themes/dark.css @@ -3,7 +3,6 @@ --surfacePrimary: #20292F; --surfaceSecondary: #3A4147; --divider: rgba(255, 255, 255, 0.12); - --icon: #ffffff; --textPrimary: rgba(255, 255, 255, 0.87); --textSecondary: rgba(255, 255, 255, 0.6); } @@ -16,9 +15,6 @@ body { #loading { background: var(--background); } -#loading .spinner div, main .spinner div { - background: var(--icon); -} #login { background: var(--background); @@ -65,9 +61,7 @@ header { .action:hover { background-color: rgba(255, 255, 255, .1); } -.action i { - color: var(--icon) !important; -} + .action .counter { border-color: var(--surfacePrimary); } @@ -92,9 +86,7 @@ nav > div { color: var(--textPrimary); border-color: var(--divider) !important; } -#listing .item i { - color: var(--icon); -} + #listing .item .modified { color: var(--textSecondary); } @@ -105,9 +97,7 @@ nav > div { #listing.list .header span { color: var(--textPrimary); } -#listing.list .header i { - color: var(--icon); -} + #listing.list .item.header { background: var(--background); } @@ -130,6 +120,9 @@ nav > div { .dashboard #nav ul li:hover { background: var(--surfaceSecondary); } +#result-list { + background-color:#292929; +} .card h3, .dashboard #nav, @@ -173,9 +166,6 @@ table th { .file-list li:before { color: var(--textSecondary); } -.file-list li[aria-selected=true]:before { - color: var(--icon); -} .shell { background: var(--surfacePrimary); @@ -196,16 +186,18 @@ nav { background: var(--surfaceSecondary) !important; } -@media (max-width: 800px) { - #file-selection { - background: var(--surfaceSecondary) !important; - } - #file-selection span { - color: var(--textPrimary) !important; - } - #dropdown { - background: var(--surfaceSecondary) !important; - } +#file-selection { + background: var(--surfaceSecondary) !important; +} +#file-selection span { + color: var(--textPrimary) !important; +} +#dropdown { + background: var(--surfaceSecondary) !important; +} + +.button-group button { + background-color:darkgray; } .share__box { diff --git a/frontend/src/components/Search.vue b/frontend/src/components/Search.vue index 985bb595..c4823010 100644 --- a/frontend/src/components/Search.vue +++ b/frontend/src/components/Search.vue @@ -48,7 +48,7 @@