Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/css
diff options
context:
space:
mode:
Diffstat (limited to 'css')
-rw-r--r--css/merged-share-auth.scss1
-rw-r--r--css/publicshareauth.scss26
2 files changed, 24 insertions, 3 deletions
diff --git a/css/merged-share-auth.scss b/css/merged-share-auth.scss
index 5b7b1151e..dd134c5ec 100644
--- a/css/merged-share-auth.scss
+++ b/css/merged-share-auth.scss
@@ -1,2 +1,3 @@
+@import 'At.scss';
@import 'icons.scss';
@import 'publicshareauth.scss'
diff --git a/css/publicshareauth.scss b/css/publicshareauth.scss
index f685c9824..685c81776 100644
--- a/css/publicshareauth.scss
+++ b/css/publicshareauth.scss
@@ -5,9 +5,29 @@
* the style for the adjusted layout, which is not the proper one for them, and
* this would cause the elements to "jump" to their final position once the
* layout was adjusted. */
-#body-login.talk-sidebar-enabled {
- flex-direction: row;
- align-items: stretch;
+body.talk-sidebar-enabled {
+ /* Move rules set for body by guest.scss to the wrapped body. */
+ display: unset;
+ flex-direction: unset;
+ justify-content: unset;
+ align-items: unset;
+
+ #body-login {
+ display: flex;
+ justify-content: center;
+
+ background-position: 50% 50%;
+ background-repeat: repeat;
+ background-size: 275px, contain;
+ background-attachment: fixed;
+
+ width: 100%;
+ height: 100%;
+
+ /* Changed from guest.scss. */
+ flex-direction: row;
+ align-items: stretch;
+ }
}
/* #body-login should be used to override the #content rules set in server. */