summaryrefslogtreecommitdiffstats
path: root/core/css
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2012-12-04 16:58:42 +0100
committerJan-Christoph Borchardt <hey@jancborchardt.net>2012-12-04 16:58:42 +0100
commit855a011697c018d5e30dd380227cbf992c967fd1 (patch)
tree764430460b5d80324f5d98c69d7309b956d474bc /core/css
parent9e6ffece64ab8b44bc58ecb01249b682e8d45ba6 (diff)
downloadnextcloud-server-855a011697c018d5e30dd380227cbf992c967fd1.tar.gz
nextcloud-server-855a011697c018d5e30dd380227cbf992c967fd1.zip
group related input fields visually
Diffstat (limited to 'core/css')
-rw-r--r--core/css/styles.css18
1 files changed, 18 insertions, 0 deletions
diff --git a/core/css/styles.css b/core/css/styles.css
index 646a760f989..4de9cbd8fef 100644
--- a/core/css/styles.css
+++ b/core/css/styles.css
@@ -79,7 +79,25 @@ input[type="submit"].highlight{ background:#ffc100; border:1px solid #db0; text-
#login form { width:22em; margin:2em auto 2em; padding:0; }
#login form fieldset { background:0; border:0; margin-bottom:2em; padding:0; }
#login form fieldset legend { font-weight:bold; }
+
+/* Nicely grouping input field sets */
+.grouptop input {
+ margin-bottom:0;
+ border-bottom:0; border-bottom-left-radius:0; border-bottom-right-radius:0;
+}
+.groupmiddle input {
+ margin-top:0; margin-bottom:0;
+ border-top:0; border-radius:0;
+ box-shadow:0 1px 1px #fff,0 1px 0 #ddd inset;
+}
+.groupbottom input {
+ margin-top:0;
+ border-top:0; border-top-right-radius:0; border-top-left-radius:0;
+ box-shadow:0 1px 1px #fff,0 1px 0 #ddd inset;
+}
+
#login form label { margin:.95em 0 0 .85em; color:#666; }
+#login .groupmiddle label, #login .groupbottom label { margin-top:13px; }
/* NEEDED FOR INFIELD LABELS */
p.infield { position: relative; }
label.infield { cursor: text !important; }