summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJarek Ostrowski <jarek.j.ostrowski@gmail.com>2019-05-29 15:46:53 -0400
committerJarek Ostrowski <jarek.j.ostrowski@gmail.com>2019-05-29 16:31:21 -0400
commit40d9418c3255138d0ccb60bcca67bb14cb57b247 (patch)
tree208243ac04761dfabda9df8c8c4da39b809e3420
parent6aa0df5a0f9a71de3e64f8170ebdc1c041a238ff (diff)
downloadgitlab-ce-62485-label-weights.tar.gz
Give all labels bold weight62485-label-weights
Form check labels get normal weight Add changelog
-rw-r--r--app/assets/stylesheets/framework/forms.scss6
-rw-r--r--changelogs/unreleased/62485-label-weights.yml5
2 files changed, 11 insertions, 0 deletions
diff --git a/app/assets/stylesheets/framework/forms.scss b/app/assets/stylesheets/framework/forms.scss
index 4a9c73a1bc9..33930871cdc 100644
--- a/app/assets/stylesheets/framework/forms.scss
+++ b/app/assets/stylesheets/framework/forms.scss
@@ -27,10 +27,16 @@ input[type='text'].danger {
}
label {
+ font-weight: $gl-font-weight-bold;
+
&.inline-label {
margin: 0;
}
+ &.form-check-label {
+ font-weight: $gl-font-weight-normal;
+ }
+
&.label-bold {
font-weight: $gl-font-weight-bold;
}
diff --git a/changelogs/unreleased/62485-label-weights.yml b/changelogs/unreleased/62485-label-weights.yml
new file mode 100644
index 00000000000..354b18be11e
--- /dev/null
+++ b/changelogs/unreleased/62485-label-weights.yml
@@ -0,0 +1,5 @@
+---
+title: Give labels consistent weight
+merge_request: 28895
+author:
+type: fixed