summaryrefslogtreecommitdiffstats
path: root/core/css
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2018-06-11 14:15:03 +0200
committerRoeland Jago Douma <roeland@famdouma.nl>2018-06-20 08:53:37 +0200
commit31392c24434c8dfbe770cec93ccb3c209392334e (patch)
treeb489fe7d181223b06c8c358be6922a47433ce1d8 /core/css
parent366981fba6d01167c1ac38f559bd611062d8e534 (diff)
downloadnextcloud-server-31392c24434c8dfbe770cec93ccb3c209392334e.tar.gz
nextcloud-server-31392c24434c8dfbe770cec93ccb3c209392334e.zip
Move public auth page over
Now this is in core so the basics (that 99% of the app will want to use) looks always the same. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'core/css')
-rw-r--r--core/css/publicshareauth.css27
1 files changed, 27 insertions, 0 deletions
diff --git a/core/css/publicshareauth.css b/core/css/publicshareauth.css
new file mode 100644
index 00000000000..7f83e0b41e7
--- /dev/null
+++ b/core/css/publicshareauth.css
@@ -0,0 +1,27 @@
+form fieldset {
+ display: flex !important;
+ flex-direction: column;
+}
+
+#password {
+ margin-right: 0 !important;
+ border-top-right-radius: 0;
+ border-bottom-right-radius: 0;
+ height: 45px;
+ box-sizing: border-box;
+ flex: 1 1 auto;
+ width: 100% !important;
+ min-width: 0; /* FF hack for to override default value */
+}
+
+input[type='submit'] {
+ width: 45px;
+ height: 45px;
+ margin-left: 0 !important;
+ border-top-left-radius: 0;
+ border-bottom-left-radius: 0;
+}
+
+fieldset > p {
+ display: inline-flex;
+}