summaryrefslogtreecommitdiff
path: root/app/views/projects/deploy_tokens/_form.html.haml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/projects/deploy_tokens/_form.html.haml')
-rw-r--r--app/views/projects/deploy_tokens/_form.html.haml10
1 files changed, 5 insertions, 5 deletions
diff --git a/app/views/projects/deploy_tokens/_form.html.haml b/app/views/projects/deploy_tokens/_form.html.haml
index 329b9e7e562..578a9e2f74d 100644
--- a/app/views/projects/deploy_tokens/_form.html.haml
+++ b/app/views/projects/deploy_tokens/_form.html.haml
@@ -5,24 +5,24 @@
= form_errors(token)
.form-group
- = f.label :name, class: 'label-light'
+ = f.label :name, class: 'label-bold'
= f.text_field :name, class: 'form-control', required: true
.form-group
- = f.label :expires_at, class: 'label-light'
+ = f.label :expires_at, class: 'label-bold'
= f.text_field :expires_at, class: 'datepicker form-control', value: f.object.expires_at
.form-group
- = f.label :scopes, class: 'label-light'
+ = f.label :scopes, class: 'label-bold'
%fieldset.form-group.form-check
= f.check_box :read_repository, class: 'form-check-input'
- = label_tag ("deploy_token_read_repository"), 'read_repository', class: 'label-light form-check-label'
+ = label_tag ("deploy_token_read_repository"), 'read_repository', class: 'label-bold form-check-label'
.text-secondary= s_('DeployTokens|Allows read-only access to the repository')
- if container_registry_enabled?(project)
%fieldset.form-group.form-check
= f.check_box :read_registry, class: 'form-check-input'
- = label_tag ("deploy_token_read_registry"), 'read_registry', class: 'label-light form-check-label'
+ = label_tag ("deploy_token_read_registry"), 'read_registry', class: 'label-bold form-check-label'
.text-secondary= s_('DeployTokens|Allows read-only access to the registry images')
.prepend-top-default