Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorJarek Ostrowski <jarek.j.ostrowski@gmail.com>2019-05-29 22:46:53 +0300
committerJarek Ostrowski <jarek.j.ostrowski@gmail.com>2019-05-29 23:31:21 +0300
commit40d9418c3255138d0ccb60bcca67bb14cb57b247 (patch)
tree208243ac04761dfabda9df8c8c4da39b809e3420 /app
parent6aa0df5a0f9a71de3e64f8170ebdc1c041a238ff (diff)
Give all labels bold weight
Form check labels get normal weight Add changelog
Diffstat (limited to 'app')
-rw-r--r--app/assets/stylesheets/framework/forms.scss6
1 files changed, 6 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;
}