summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnnabel Gray <annabel.m.gray@gmail.com>2018-06-07 20:34:38 +0000
committerClement Ho <clemmakesapps@gmail.com>2018-06-07 20:34:38 +0000
commit587afe45fc4605704907ef8da45043da3770ada3 (patch)
tree0aee6ad1fc944b0ef82f845f791ce41ede3d4d7e
parentc9e3a73efd6339706ad88837f78f017e0a55d809 (diff)
downloadgitlab-ce-587afe45fc4605704907ef8da45043da3770ada3.tar.gz
Resolve "Labels were bold in 10.8 but not with bootstrap4"
-rw-r--r--app/views/shared/tokens/_scopes_form.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/shared/tokens/_scopes_form.html.haml b/app/views/shared/tokens/_scopes_form.html.haml
index ae437dd16d6..2d0bb722189 100644
--- a/app/views/shared/tokens/_scopes_form.html.haml
+++ b/app/views/shared/tokens/_scopes_form.html.haml
@@ -5,6 +5,6 @@
- scopes.each do |scope|
%fieldset
= check_box_tag "#{prefix}[scopes][]", scope, token.scopes.include?(scope), id: "#{prefix}_scopes_#{scope}"
- = label_tag ("#{prefix}_scopes_#{scope}"), scope
+ = label_tag ("#{prefix}_scopes_#{scope}"), scope, class: "label-light"
%span= t(scope, scope: [:doorkeeper, :scopes])
.scope-description= t scope, scope: [:doorkeeper, :scope_desc]