From 5364b3fb13aa831afec2537e4a7773ad2f015a2c Mon Sep 17 00:00:00 2001 From: Graham Steffaniak Date: Sat, 29 Jul 2023 10:37:16 -0500 Subject: [PATCH 1/4] updated hovers --- frontend/src/store/mutations.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/store/mutations.js b/frontend/src/store/mutations.js index b60973b7..31ea1b51 100644 --- a/frontend/src/store/mutations.js +++ b/frontend/src/store/mutations.js @@ -3,6 +3,7 @@ import moment from "moment"; const mutations = { closeHovers: (state) => { + console.log("closing hovers") state.show = null; state.showConfirm = null; }, @@ -10,6 +11,7 @@ const mutations = { state.showShell = !state.showShell; }, showHover: (state, value) => { + console.log("showing hovers") if (typeof value !== "object") { state.show = value; return; From c768f3762a52f227288c0b0cc4465624d24cb9c1 Mon Sep 17 00:00:00 2001 From: Graham Steffaniak Date: Sat, 29 Jul 2023 10:38:55 -0500 Subject: [PATCH 2/4] add everything back --- frontend/src/css/base.css | 29 ++++++++++++++++- frontend/src/css/mobile.css | 27 ---------------- frontend/src/views/files/Listing.vue | 48 +--------------------------- 3 files changed, 29 insertions(+), 75 deletions(-) diff --git a/frontend/src/css/base.css b/frontend/src/css/base.css index 4c55994a..9e06d9e7 100644 --- a/frontend/src/css/base.css +++ b/frontend/src/css/base.css @@ -170,4 +170,31 @@ body.rtl .breadcrumbs a { .break-word { word-break: break-all; -} \ No newline at end of file +} + +#file-selection { + position: fixed; + bottom: 1em; + left: 50%; + transform: translateX(-50%); + display: flex; + align-items: center; + background: #fff; + box-shadow: rgba(0, 0, 0, 0.06) 0px 1px 3px, rgba(0, 0, 0, 0.12) 0px 1px 2px; + width: 95%; + max-width: 20em; + z-index: 1; +} +#file-selection .action { + border-radius: 50%; + width: auto; +} +#file-selection > span { + display: inline-block; + margin-left: 1em; + color: #6f6f6f; + margin-right: auto; +} +#file-selection .action span { + display: none; +} diff --git a/frontend/src/css/mobile.css b/frontend/src/css/mobile.css index 2caa9339..c98ff871 100644 --- a/frontend/src/css/mobile.css +++ b/frontend/src/css/mobile.css @@ -25,33 +25,6 @@ transform-origin: top left; } - #file-selection { - position: fixed; - bottom: 1em; - left: 50%; - transform: translateX(-50%); - display: flex; - align-items: center; - background: #fff; - box-shadow: rgba(0, 0, 0, 0.06) 0px 1px 3px, rgba(0, 0, 0, 0.12) 0px 1px 2px; - width: 95%; - max-width: 20em; - z-index: 1; - } - #file-selection .action { - border-radius: 50%; - width: auto; - } - #file-selection > span { - display: inline-block; - margin-left: 1em; - color: #6f6f6f; - margin-right: auto; - } - #file-selection .action span { - display: none; - } - header img { display: none; } diff --git a/frontend/src/views/files/Listing.vue b/frontend/src/views/files/Listing.vue index b9c2e501..73c06e29 100644 --- a/frontend/src/views/files/Listing.vue +++ b/frontend/src/views/files/Listing.vue @@ -3,52 +3,6 @@