]> source.dussan.org Git - nextcloud-server.git/commitdiff
proper padding for checkboxes in app-settings 3741/head
authorJan-Christoph Borchardt <hey@jancborchardt.net>
Mon, 6 Mar 2017 17:07:07 +0000 (18:07 +0100)
committerMorris Jobke <hey@morrisjobke.de>
Tue, 4 Apr 2017 21:49:43 +0000 (16:49 -0500)
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
core/css/inputs.scss

index 37405172d3a796bc850fc02b9220fdc4931873ee..13a164e13f2eab38255b5f77732c18ed28a0aec2 100644 (file)
@@ -1,12 +1,12 @@
 /**
  * @copyright Copyright (c) 2016, John Molakvoæ <skjnldsv@protonmail.com>
  * @copyright Copyright (c) 2016, Morris Jobke <hey@morrisjobke.de>
- * @copyright Copyright (c) 2016, Jan-Christoph Borchardt <hey@jancborchardt.net>
  * @copyright Copyright (c) 2016, Joas Schilling <coding@schilljs.com>
  * @copyright Copyright (c) 2016, Julius Haertl <jus@bitgrid.net>
  * @copyright Copyright (c) 2016, jowi <sjw@gmx.ch>
  * @copyright Copyright (c) 2015, Joas Schilling <nickvergessen@owncloud.com>
  * @copyright Copyright (c) 2015, Hendrik Leppelsack <hendrik@leppelsack.de>
+ * @copyright Copyright (c) 2014-2017, Jan-Christoph Borchardt <hey@jancborchardt.net>
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -301,6 +301,21 @@ input {
                }
        }
 }
+#app-settings-content {
+       input {
+               &[type='checkbox'],
+               &[type='radio'] {
+                       &.radio,
+                       &.checkbox {
+                               + label {
+                                       display: inline-block;
+                                       width: 100%;
+                                       padding: 5px 0;
+                               }
+                       }
+               }
+       }
+}
 
 /* Select2 overriding. Merged to core with vendor stylesheet */
 .select2-drop {