diff options
author | Annabel Dunstone Gray <annabel.dunstone@gmail.com> | 2019-05-20 13:43:00 -0500 |
---|---|---|
committer | Annabel Dunstone Gray <annabel.dunstone@gmail.com> | 2019-05-20 13:43:00 -0500 |
commit | 360646ead37a59397eb1d4a174cd43f3edd111c6 (patch) | |
tree | dce0fc7ab43683836c3b3318427df356cb64ed04 /app | |
parent | 0c5b3d08dedccb5808c6df6560b3e277035691db (diff) | |
download | gitlab-ce-360646ead37a59397eb1d4a174cd43f3edd111c6.tar.gz |
Fix height of input groups60778-input-text-height
Diffstat (limited to 'app')
-rw-r--r-- | app/assets/stylesheets/framework/forms.scss | 4 | ||||
-rw-r--r-- | app/assets/stylesheets/framework/variables_overrides.scss | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/app/assets/stylesheets/framework/forms.scss b/app/assets/stylesheets/framework/forms.scss index d0f99c2df7e..4a9c73a1bc9 100644 --- a/app/assets/stylesheets/framework/forms.scss +++ b/app/assets/stylesheets/framework/forms.scss @@ -280,3 +280,7 @@ label { max-width: $input-lg-width; width: 100%; } + +.input-group-text { + max-height: $input-height; +} diff --git a/app/assets/stylesheets/framework/variables_overrides.scss b/app/assets/stylesheets/framework/variables_overrides.scss index fb4d3f23cd9..ea96381a098 100644 --- a/app/assets/stylesheets/framework/variables_overrides.scss +++ b/app/assets/stylesheets/framework/variables_overrides.scss @@ -7,6 +7,7 @@ $secondary: $gray-light; $input-disabled-bg: $gray-light; $input-border-color: $gray-200; $input-color: $gl-text-color; +$input-font-size: $gl-font-size; $font-family-sans-serif: $regular-font; $font-family-monospace: $monospace-font; $btn-line-height: 20px; |