diff options
author | Richard Steinmetz <richard@steinmetz.cloud> | 2023-09-18 16:06:18 +0200 |
---|---|---|
committer | Richard Steinmetz <richard@steinmetz.cloud> | 2023-09-19 21:57:01 +0200 |
commit | 9a5a392bf9b622d942b6cc8b41ef8b0d7f282fd6 (patch) | |
tree | 2319ab10cc15a2da61b724a02d8bf0f0b3d42660 /core/src | |
parent | ec72121153b3f9ea0019fc5c3910f345e55c1628 (diff) | |
download | nextcloud-server-9a5a392bf9b622d942b6cc8b41ef8b0d7f282fd6.tar.gz nextcloud-server-9a5a392bf9b622d942b6cc8b41ef8b0d7f282fd6.zip |
fix: content info footer on guest pages
Signed-off-by: Richard Steinmetz <richard@steinmetz.cloud>
Diffstat (limited to 'core/src')
-rw-r--r-- | core/src/views/Login.vue | 28 |
1 files changed, 1 insertions, 27 deletions
diff --git a/core/src/views/Login.vue b/core/src/views/Login.vue index 20f02c4766e..643cf66c07b 100644 --- a/core/src/views/Login.vue +++ b/core/src/views/Login.vue @@ -2,6 +2,7 @@ - @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at> - - @author 2019 Christoph Wurst <christoph@winzerhof-wurst.at> + - @author Richard Steinmetz <richard@steinmetz.cloud> - - @license GNU AGPL version 3 or any later version - @@ -209,33 +210,6 @@ body { } } -// Same look like a dashboard panel -.login-box.guest-box, footer { - color: var(--color-main-text); - background-color: var(--color-main-background-blur); - -webkit-backdrop-filter: var(--filter-background-blur); - backdrop-filter: var(--filter-background-blur); -} - -footer { - // Usually the same size as the login box, but allow longer texts - min-width: 320px; - box-sizing: border-box; - // align with login box - box-shadow: 0 0 10px var(--color-box-shadow); - // set border to pill style and adjust padding for it - border-radius: var(--border-radius-pill); - padding: 6px 24px; - // always show above bottom - margin-bottom: 1rem; - min-height: unset; - - // reset margin to reduce height of pill - p.info { - margin: auto 0px; - } -} - .fade-enter-active, .fade-leave-active { transition: opacity .3s; } |