summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClement Ho <clemmakesapps@gmail.com>2018-06-07 20:34:38 +0000
committerClement Ho <clemmakesapps@gmail.com>2018-06-07 20:34:38 +0000
commit039725311255a2060f4fdf6689b57972b04fc9b5 (patch)
tree0aee6ad1fc944b0ef82f845f791ce41ede3d4d7e
parentc9e3a73efd6339706ad88837f78f017e0a55d809 (diff)
parent587afe45fc4605704907ef8da45043da3770ada3 (diff)
downloadgitlab-ce-039725311255a2060f4fdf6689b57972b04fc9b5.tar.gz
Merge branch '47358-labels' into 'master'
Resolve "Labels were bold in 10.8 but not with bootstrap4" Closes #47358 See merge request gitlab-org/gitlab-ce!19504
-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]