diff --git a/frontend/src/components/prompts/Prompts.vue b/frontend/src/components/prompts/Prompts.vue index 36cb0349..18b0c9a6 100644 --- a/frontend/src/components/prompts/Prompts.vue +++ b/frontend/src/components/prompts/Prompts.vue @@ -1,7 +1,6 @@ @@ -104,16 +103,6 @@ export default { return (matched && this.show) || null; }, - showOverlay: function () { - return ( - this.show !== null && this.show !== "search" && this.show !== "more" - ); - }, - }, - methods: { - resetPrompts() { - this.$store.commit("closeHovers"); - }, }, }; diff --git a/frontend/src/css/base.css b/frontend/src/css/base.css index 4c55994a..720316b5 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: 25em; + 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/dashboard.css b/frontend/src/css/dashboard.css index e36a7bd5..9d3ebcce 100644 --- a/frontend/src/css/dashboard.css +++ b/frontend/src/css/dashboard.css @@ -311,18 +311,6 @@ body.rtl .card .card-title>*:first-child { flex: 1; } -.overlay { - background-color: rgba(0, 0, 0, 0); - position: fixed; - top: 0; - left: 0; - height: 100%; - width: 100%; - z-index: 9999; - animation: .1s show forwards; -} - - /* * * * * * * * * * * * * * * * * PROMPT - MOVE * * * * * * * * * * * * * * * * */ 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/css/styles.css b/frontend/src/css/styles.css index 2ba99532..4496d3ab 100644 --- a/frontend/src/css/styles.css +++ b/frontend/src/css/styles.css @@ -117,20 +117,6 @@ main .spinner .bounce2 { background-color: rgba(0, 0, 0, 0.04); } -#click-overlay { - display: none; - position: fixed; - cursor: pointer; - top: 0; - left: 0; - height: 100%; - width: 100%; -} - -#click-overlay.active { - display: block; -} - .action .counter { display: block; position: absolute; diff --git a/frontend/src/views/files/Listing.vue b/frontend/src/views/files/Listing.vue index b9c2e501..c98fffe9 100644 --- a/frontend/src/views/files/Listing.vue +++ b/frontend/src/views/files/Listing.vue @@ -3,52 +3,6 @@