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 @@