summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnnabel Dunstone Gray <annabel.m.gray@gmail.com>2019-05-30 14:54:08 +0000
committerAnnabel Dunstone Gray <annabel.m.gray@gmail.com>2019-05-30 14:54:08 +0000
commit84a39659a2b1383cd064c1d2171660aad8a4da14 (patch)
treea214f7e5130f823eb7d95b93883f9840987f74ee
parent4c81993c245e5117e81036e69d6b2b9950e2de6e (diff)
parent40d9418c3255138d0ccb60bcca67bb14cb57b247 (diff)
downloadgitlab-ce-84a39659a2b1383cd064c1d2171660aad8a4da14.tar.gz
Merge branch '62485-label-weights' into 'master'
Give all labels bold weight Closes #62485 See merge request gitlab-org/gitlab-ce!28895
-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