summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKushal Pandya <kushalspandya@gmail.com>2019-06-03 06:33:58 +0000
committerKushal Pandya <kushalspandya@gmail.com>2019-06-03 06:33:58 +0000
commit985388b37efef52da64f635df15b5ad71845db6b (patch)
treeb9fcfe05fef6a0e4476c3f707c607824724e2882
parent427e651ca92103e45353be63b59e77cfcd6341fb (diff)
parentd24c0971f60dd67b75aa7c05113bc49eda56bc5b (diff)
downloadgitlab-ce-985388b37efef52da64f635df15b5ad71845db6b.tar.gz
Merge branch 'gitlab-ui-259-style-checkboxes' into 'master'
Style gitlab-ui checkboxes See merge request gitlab-org/gitlab-ce!28622
-rw-r--r--app/assets/stylesheets/framework/forms.scss14
1 files changed, 14 insertions, 0 deletions
diff --git a/app/assets/stylesheets/framework/forms.scss b/app/assets/stylesheets/framework/forms.scss
index 33930871cdc..9e5c3db70fb 100644
--- a/app/assets/stylesheets/framework/forms.scss
+++ b/app/assets/stylesheets/framework/forms.scss
@@ -290,3 +290,17 @@ label {
.input-group-text {
max-height: $input-height;
}
+
+.gl-form-checkbox {
+ align-items: baseline;
+
+ &.form-check-inline .form-check-input {
+ align-self: flex-start;
+ margin-right: $gl-padding-8;
+ height: 1.5 * $gl-font-size;
+ }
+
+ .help-text {
+ margin-bottom: 0;
+ }
+}