aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2014-03-27 16:06:37 +0100
committerJan-Christoph Borchardt <hey@jancborchardt.net>2014-04-01 18:55:37 +0200
commitbd5eec7bb7bac812d0c0353dd2615d102a097db1 (patch)
treea30ea1d5529e2c370937ba8df526115378f89990
parent2086e80e4d984687e864b4f387be59a4d07c294f (diff)
downloadnextcloud-server-bd5eec7bb7bac812d0c0353dd2615d102a097db1.tar.gz
nextcloud-server-bd5eec7bb7bac812d0c0353dd2615d102a097db1.zip
general styles for the content area
-rw-r--r--core/css/apps.css22
1 files changed, 19 insertions, 3 deletions
diff --git a/core/css/apps.css b/core/css/apps.css
index f68f53d6999..c9a07c41d43 100644
--- a/core/css/apps.css
+++ b/core/css/apps.css
@@ -151,9 +151,6 @@
transition: padding-bottom 500ms ease 0s;
padding-bottom: 40px;
}
-#app-navigation .personalblock > legend { /* TODO @Raydiation: still needed? */
- padding: 10px 0; margin: 0;
-}
#app-navigation .error {
color: #dd1144;
}
@@ -239,3 +236,22 @@ button.loading {
padding-right: 30px;
}
+
+/* general styles for the content area */
+.section {
+ display: block;
+ padding: 30px;
+ color: #555;
+ border-top: 1px solid #ddd;
+}
+.section h2 {
+ font-size: 20px;
+ font-weight: normal;
+ margin-bottom: 7px;
+}
+/* slight position correction of checkboxes and radio buttons */
+.section input[type="checkbox"],
+.section input[type="radio"] {
+ vertical-align: -2px;
+ margin-right: 4px;
+}