summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClement Ho <ClemMakesApps@gmail.com>2018-06-04 21:22:59 -0500
committerClement Ho <ClemMakesApps@gmail.com>2018-06-04 21:22:59 -0500
commit5b7da9243968fa75eb3401d3661ca136bf2837ee (patch)
tree3121149c67d121caee3ce285dabae836cb0476e6
parentdbcec6394a786608dd7e5172d557c746e0fb88ba (diff)
downloadgitlab-ce-fix-admin-user-form.tar.gz
-rw-r--r--app/views/admin/users/_access_levels.html.haml4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/admin/users/_access_levels.html.haml b/app/views/admin/users/_access_levels.html.haml
index 0ace0b28a4b..04acc5f8423 100644
--- a/app/views/admin/users/_access_levels.html.haml
+++ b/app/views/admin/users/_access_levels.html.haml
@@ -14,13 +14,13 @@
- editing_current_user = (current_user == @user)
= f.radio_button :access_level, :regular, disabled: editing_current_user
- = label_tag :regular do
+ = label_tag :regular, class: 'font-weight-bold' do
Regular
%p.light
Regular users have access to their groups and projects
= f.radio_button :access_level, :admin, disabled: editing_current_user
- = label_tag :admin do
+ = label_tag :admin, class: 'font-weight-bold' do
Admin
%p.light
Administrators have access to all groups, projects and users and can manage all features in this installation