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
diff options
context:
space:
mode:
authorDaniel Calviño Sánchez <danxuliu@gmail.com>2019-02-04 15:31:18 +0300
committerDaniel Calviño Sánchez <danxuliu@gmail.com>2019-02-04 16:18:42 +0300
commit3c78f92f2c4a8cf8e11a6b7b1e229fcd1689b472 (patch)
treee9ac5c4e9f666de92ec8257170636cf341903f15 /css/publicshareauth.scss
parentc2ac08ddda562929c8f2f7da944da42bdc49db84 (diff)
Fix guest name input field and submit button in public share auth page
"guest.css" overrides the default style of inputs set in "input.scss", which causes all inputs in the public share auth page to look like the main password input. Due to this, the rules from "input.scss" need to be restored for inputs in the Talk sidebar to get the proper appearance. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Diffstat (limited to 'css/publicshareauth.scss')
-rw-r--r--css/publicshareauth.scss29
1 files changed, 29 insertions, 0 deletions
diff --git a/css/publicshareauth.scss b/css/publicshareauth.scss
index 42997a90e..55f36da48 100644
--- a/css/publicshareauth.scss
+++ b/css/publicshareauth.scss
@@ -231,12 +231,41 @@ input#request-password-button:disabled ~ .icon {
display: unset;
}
+/* Restore rules from input.scss overriden by guest.css for the sidebar */
+#talk-sidebar input:not([type='range']) {
+ margin: 3px 3px 3px 0;
+ padding: 7px 6px;
+ font-size: 13px;
+ border: 1px solid var(--color-border-dark);
+ box-sizing: border-box;
+
+ &:not(:disabled):not(.primary) {
+ &:hover,
+ &:focus {
+ border-color: var(--color-primary-element);
+ }
+ }
+}
+
+#talk-sidebar input[type="text"],
+#talk-sidebar input[type="password"] {
+ width: 130px;
+
+ padding-right: 34px;
+}
+
/* Unset conflicting rules from publicshareauth.css (core) for the sidebar */
#talk-sidebar input[type="submit"],
#talk-sidebar input.icon-confirm[type="submit"] {
top: unset;
}
+#talk-sidebar .guest-name input.icon-confirm[type="submit"] {
+ top: -5px;
+ right: 0px;
+ border: none;
+}
+
/* Unset conflicting rules from guest.css for the sidebar */
#talk-sidebar input[type="submit"].hidden,
#talk-sidebar input.icon-confirm[type="submit"].hidden {