summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/framework/forms.scss
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/stylesheets/framework/forms.scss')
-rw-r--r--app/assets/stylesheets/framework/forms.scss13
1 files changed, 10 insertions, 3 deletions
diff --git a/app/assets/stylesheets/framework/forms.scss b/app/assets/stylesheets/framework/forms.scss
index 0edfe24f195..cc92966c458 100644
--- a/app/assets/stylesheets/framework/forms.scss
+++ b/app/assets/stylesheets/framework/forms.scss
@@ -22,9 +22,10 @@ input[type='text'].danger {
}
.form-actions {
- padding: 17px 20px 18px;
- margin-top: 18px;
- margin-bottom: 18px;
+ margin: -$gl-padding;
+ margin-top: 0;
+ margin-bottom: -$gl-padding;
+ padding: $gl-padding;
background-color: $background-color;
border-top: 1px solid $border-color;
}
@@ -73,6 +74,8 @@ label {
.form-control {
@include box-shadow(none);
+ height: 42px;
+ padding: 8px $gl-padding;
}
.wiki-content {
@@ -92,3 +95,7 @@ label {
background-color: #f7f8fa;
}
}
+
+.help-block {
+ margin-bottom: 0;
+}