Commit 4e54f5ae authored by Clement Ho's avatar Clement Ho

[skip ci] add col-sm-* for form-horizontal changes to keep layout

parent 53bf57f3
...@@ -7,12 +7,12 @@ ...@@ -7,12 +7,12 @@
= f.hidden_field :user_id = f.hidden_field :user_id
.form-group.row .form-group.row
= f.label :user_id, class: 'col-form-label' = f.label :user_id, class: 'col-sm-2 col-form-label'
.col-sm-10 .col-sm-10
- name = "#{@abuse_report.user.name} (@#{@abuse_report.user.username})" - name = "#{@abuse_report.user.name} (@#{@abuse_report.user.username})"
= text_field_tag :user_name, name, class: "form-control", readonly: true = text_field_tag :user_name, name, class: "form-control", readonly: true
.form-group.row .form-group.row
= f.label :message, class: 'col-form-label' = f.label :message, class: 'col-sm-2 col-form-label'
.col-sm-10 .col-sm-10
= f.text_area :message, class: "form-control", rows: 2, required: true, value: sanitize(@ref_url) = f.text_area :message, class: "form-control", rows: 2, required: true, value: sanitize(@ref_url)
.form-text.text-muted .form-text.text-muted
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
%legend %legend
Navigation bar: Navigation bar:
.form-group.row .form-group.row
= f.label :header_logo, 'Header logo', class: 'col-form-label' = f.label :header_logo, 'Header logo', class: 'col-sm-2 col-form-label'
.col-sm-10 .col-sm-10
- if @appearance.header_logo? - if @appearance.header_logo?
= image_tag @appearance.header_logo_url, class: 'appearance-light-logo-preview' = image_tag @appearance.header_logo_url, class: 'appearance-light-logo-preview'
...@@ -22,17 +22,17 @@ ...@@ -22,17 +22,17 @@
%legend %legend
Sign in/Sign up pages: Sign in/Sign up pages:
.form-group.row .form-group.row
= f.label :title, class: 'col-form-label' = f.label :title, class: 'col-sm-2 col-form-label'
.col-sm-10 .col-sm-10
= f.text_field :title, class: "form-control" = f.text_field :title, class: "form-control"
.form-group.row .form-group.row
= f.label :description, class: 'col-form-label' = f.label :description, class: 'col-sm-2 col-form-label'
.col-sm-10 .col-sm-10
= f.text_area :description, class: "form-control", rows: 10 = f.text_area :description, class: "form-control", rows: 10
.hint .hint
Description parsed with #{link_to "GitLab Flavored Markdown", help_page_path('user/markdown'), target: '_blank'}. Description parsed with #{link_to "GitLab Flavored Markdown", help_page_path('user/markdown'), target: '_blank'}.
.form-group.row .form-group.row
= f.label :logo, class: 'col-form-label' = f.label :logo, class: 'col-sm-2 col-form-label'
.col-sm-10 .col-sm-10
- if @appearance.logo? - if @appearance.logo?
= image_tag @appearance.logo_url, class: 'appearance-logo-preview' = image_tag @appearance.logo_url, class: 'appearance-logo-preview'
...@@ -49,7 +49,7 @@ ...@@ -49,7 +49,7 @@
%legend %legend
New project pages: New project pages:
.form-group.row .form-group.row
= f.label :new_project_guidelines, class: 'col-form-label' = f.label :new_project_guidelines, class: 'col-sm-2 col-form-label'
.col-sm-10 .col-sm-10
= f.text_area :new_project_guidelines, class: "form-control", rows: 10 = f.text_area :new_project_guidelines, class: "form-control", rows: 10
.hint .hint
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
= form_errors(@broadcast_message) = form_errors(@broadcast_message)
.form-group.row .form-group.row
= f.label :message, class: 'col-form-label' = f.label :message, class: 'col-form-label col-sm-2'
.col-sm-10 .col-sm-10
= f.text_area :message, class: "form-control js-autosize", = f.text_area :message, class: "form-control js-autosize",
required: true, required: true,
...@@ -19,19 +19,19 @@ ...@@ -19,19 +19,19 @@
.col-sm-10.col-sm-offset-2 .col-sm-10.col-sm-offset-2
= link_to 'Customize colors', '#', class: 'js-toggle-colors-link' = link_to 'Customize colors', '#', class: 'js-toggle-colors-link'
.form-group.row.js-toggle-colors-container.d-none .form-group.row.js-toggle-colors-container.d-none
= f.label :color, "Background Color", class: 'col-form-label' = f.label :color, "Background Color", class: 'col-form-label col-sm-2'
.col-sm-10 .col-sm-10
= f.color_field :color, class: "form-control" = f.color_field :color, class: "form-control"
.form-group.row.js-toggle-colors-container.d-none .form-group.row.js-toggle-colors-container.d-none
= f.label :font, "Font Color", class: 'col-form-label' = f.label :font, "Font Color", class: 'col-form-label col-sm-2'
.col-sm-10 .col-sm-10
= f.color_field :font, class: "form-control" = f.color_field :font, class: "form-control"
.form-group.row .form-group.row
= f.label :starts_at, class: 'col-form-label' = f.label :starts_at, class: 'col-form-label col-sm-2'
.col-sm-10.datetime-controls .col-sm-10.datetime-controls
= f.datetime_select :starts_at, {}, class: 'form-control form-control-inline' = f.datetime_select :starts_at, {}, class: 'form-control form-control-inline'
.form-group.row .form-group.row
= f.label :ends_at, class: 'col-form-label' = f.label :ends_at, class: 'col-form-label col-sm-2'
.col-sm-10.datetime-controls .col-sm-10.datetime-controls
= f.datetime_select :ends_at, {}, class: 'form-control form-control-inline' = f.datetime_select :ends_at, {}, class: 'form-control form-control-inline'
.form-actions .form-actions
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
= render 'shared/group_form', f: f = render 'shared/group_form', f: f
.form-group.row.group-description-holder .form-group.row.group-description-holder
= f.label :avatar, "Group avatar", class: 'col-form-label' = f.label :avatar, "Group avatar", class: 'col-form-label col-sm-2'
.col-sm-10 .col-sm-10
= render 'shared/choose_group_avatar_button', f: f = render 'shared/choose_group_avatar_button', f: f
......
...@@ -2,12 +2,12 @@ ...@@ -2,12 +2,12 @@
= form_errors(@identity) = form_errors(@identity)
.form-group.row .form-group.row
= f.label :provider, class: 'col-form-label' = f.label :provider, class: 'col-form-label col-sm-2'
.col-sm-10 .col-sm-10
- values = Gitlab::Auth::OAuth::Provider.providers.map { |name| ["#{Gitlab::Auth::OAuth::Provider.label_for(name)} (#{name})", name] } - values = Gitlab::Auth::OAuth::Provider.providers.map { |name| ["#{Gitlab::Auth::OAuth::Provider.label_for(name)} (#{name})", name] }
= f.select :provider, values, { allow_blank: false }, class: 'form-control' = f.select :provider, values, { allow_blank: false }, class: 'form-control'
.form-group.row .form-group.row
= f.label :extern_uid, "Identifier", class: 'col-form-label' = f.label :extern_uid, "Identifier", class: 'col-form-label col-sm-2'
.col-sm-10 .col-sm-10
= f.text_field :extern_uid, class: 'form-control', required: true = f.text_field :extern_uid, class: 'form-control', required: true
......
...@@ -2,15 +2,15 @@ ...@@ -2,15 +2,15 @@
= form_errors(@label) = form_errors(@label)
.form-group.row .form-group.row
= f.label :title, class: 'col-form-label' = f.label :title, class: 'col-form-label col-sm-2'
.col-sm-10 .col-sm-10
= f.text_field :title, class: "form-control", required: true = f.text_field :title, class: "form-control", required: true
.form-group.row .form-group.row
= f.label :description, class: 'col-form-label' = f.label :description, class: 'col-form-label col-sm-2'
.col-sm-10 .col-sm-10
= f.text_field :description, class: "form-control js-quick-submit" = f.text_field :description, class: "form-control js-quick-submit"
.form-group.row .form-group.row
= f.label :color, "Background color", class: 'col-form-label' = f.label :color, "Background color", class: 'col-form-label col-sm-2'
.col-sm-10 .col-sm-10
.input-group .input-group
.input-group-prepend .input-group-prepend
......
...@@ -116,7 +116,7 @@ ...@@ -116,7 +116,7 @@
.card-body .card-body
= form_for @project, url: transfer_admin_project_path(@project), method: :put do |f| = form_for @project, url: transfer_admin_project_path(@project), method: :put do |f|
.form-group.row .form-group.row
= f.label :new_namespace_id, "Namespace", class: 'col-form-label' = f.label :new_namespace_id, "Namespace", class: 'col-form-label col-sm-2'
.col-sm-10 .col-sm-10
.dropdown .dropdown
= dropdown_toggle('Search for Namespace', { toggle: 'dropdown', field_name: 'new_namespace_id' }, { toggle_class: 'js-namespace-select large' }) = dropdown_toggle('Search for Namespace', { toggle: 'dropdown', field_name: 'new_namespace_id' }, { toggle_class: 'js-namespace-select large' })
......
...@@ -5,17 +5,17 @@ ...@@ -5,17 +5,17 @@
%fieldset %fieldset
%legend Account %legend Account
.form-group.row .form-group.row
= f.label :name, class: 'col-form-label' = f.label :name, class: 'col-form-label col-sm-2'
.col-sm-10 .col-sm-10
= f.text_field :name, required: true, autocomplete: 'off', class: 'form-control' = f.text_field :name, required: true, autocomplete: 'off', class: 'form-control'
%span.help-inline * required %span.help-inline * required
.form-group.row .form-group.row
= f.label :username, class: 'col-form-label' = f.label :username, class: 'col-form-label col-sm-2'
.col-sm-10 .col-sm-10
= f.text_field :username, required: true, autocomplete: 'off', autocorrect: 'off', autocapitalize: 'off', spellcheck: false, class: 'form-control' = f.text_field :username, required: true, autocomplete: 'off', autocorrect: 'off', autocapitalize: 'off', spellcheck: false, class: 'form-control'
%span.help-inline * required %span.help-inline * required
.form-group.row .form-group.row
= f.label :email, class: 'col-form-label' = f.label :email, class: 'col-form-label col-sm-2'
.col-sm-10 .col-sm-10
= f.text_field :email, required: true, autocomplete: 'off', class: 'form-control' = f.text_field :email, required: true, autocomplete: 'off', class: 'form-control'
%span.help-inline * required %span.help-inline * required
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
%fieldset %fieldset
%legend Password %legend Password
.form-group.row .form-group.row
= f.label :password, class: 'col-form-label' = f.label :password, class: 'col-form-label col-sm-2'
.col-sm-10 .col-sm-10
%strong %strong
Reset link will be generated and sent to the user. Reset link will be generated and sent to the user.
...@@ -34,10 +34,10 @@ ...@@ -34,10 +34,10 @@
%fieldset %fieldset
%legend Password %legend Password
.form-group.row .form-group.row
= f.label :password, class: 'col-form-label' = f.label :password, class: 'col-form-label col-sm-2'
.col-sm-10= f.password_field :password, disabled: f.object.force_random_password, class: 'form-control' .col-sm-10= f.password_field :password, disabled: f.object.force_random_password, class: 'form-control'
.form-group.row .form-group.row
= f.label :password_confirmation, class: 'col-form-label' = f.label :password_confirmation, class: 'col-form-label col-sm-2'
.col-sm-10= f.password_field :password_confirmation, disabled: f.object.force_random_password, class: 'form-control' .col-sm-10= f.password_field :password_confirmation, disabled: f.object.force_random_password, class: 'form-control'
= render partial: 'access_levels', locals: { f: f } = render partial: 'access_levels', locals: { f: f }
...@@ -45,21 +45,21 @@ ...@@ -45,21 +45,21 @@
%fieldset %fieldset
%legend Profile %legend Profile
.form-group.row .form-group.row
= f.label :avatar, class: 'col-form-label' = f.label :avatar, class: 'col-form-label col-sm-2'
.col-sm-10 .col-sm-10
= f.file_field :avatar = f.file_field :avatar
.form-group.row .form-group.row
= f.label :skype, class: 'col-form-label' = f.label :skype, class: 'col-form-label col-sm-2'
.col-sm-10= f.text_field :skype, class: 'form-control' .col-sm-10= f.text_field :skype, class: 'form-control'
.form-group.row .form-group.row
= f.label :linkedin, class: 'col-form-label' = f.label :linkedin, class: 'col-form-label col-sm-2'
.col-sm-10= f.text_field :linkedin, class: 'form-control' .col-sm-10= f.text_field :linkedin, class: 'form-control'
.form-group.row .form-group.row
= f.label :twitter, class: 'col-form-label' = f.label :twitter, class: 'col-form-label'
.col-sm-10= f.text_field :twitter, class: 'form-control' .col-sm-10= f.text_field :twitter, class: 'form-control'
.form-group.row .form-group.row
= f.label :website_url, 'Website', class: 'col-form-label' = f.label :website_url, 'Website', class: 'col-form-label col-sm-2'
.col-sm-10= f.text_field :website_url, class: 'form-control' .col-sm-10= f.text_field :website_url, class: 'form-control'
.form-actions .form-actions
......
...@@ -4,11 +4,11 @@ ...@@ -4,11 +4,11 @@
.col-md-6 .col-md-6
.form-group.row .form-group.row
= f.label :title, "Title", class: "col-form-label" = f.label :title, "Title", class: "col-form-label col-sm-2"
.col-sm-10 .col-sm-10
= f.text_field :title, maxlength: 255, class: "form-control", required: true, autofocus: true = f.text_field :title, maxlength: 255, class: "form-control", required: true, autofocus: true
.form-group.row.milestone-description .form-group.row.milestone-description
= f.label :description, "Description", class: "col-form-label" = f.label :description, "Description", class: "col-form-label col-sm-2"
.col-sm-10 .col-sm-10
= render layout: 'projects/md_preview', locals: { url: group_preview_markdown_path } do = render layout: 'projects/md_preview', locals: { url: group_preview_markdown_path } do
= render 'projects/zen', f: f, attr: :description, classes: 'note-textarea', placeholder: 'Write milestone description...', supports_autocomplete: false = render 'projects/zen', f: f, attr: :description, classes: 'note-textarea', placeholder: 'Write milestone description...', supports_autocomplete: false
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
= render 'shared/group_form', f: f, autofocus: true = render 'shared/group_form', f: f, autofocus: true
.form-group.row.group-description-holder .form-group.row.group-description-holder
= f.label :avatar, "Group avatar", class: 'col-form-label' = f.label :avatar, "Group avatar", class: 'col-form-label col-sm-2'
.col-sm-10 .col-sm-10
= render 'shared/choose_group_avatar_button', f: f = render 'shared/choose_group_avatar_button', f: f
......
...@@ -11,15 +11,15 @@ ...@@ -11,15 +11,15 @@
In the next steps, you'll be able to map users and select the projects In the next steps, you'll be able to map users and select the projects
you want to import. you want to import.
.form-group.row .form-group.row
= label_tag :uri, 'FogBugz URL', class: 'col-form-label' = label_tag :uri, 'FogBugz URL', class: 'col-form-label col-sm-8'
.col-sm-4 .col-sm-4
= text_field_tag :uri, nil, placeholder: 'https://mycompany.fogbugz.com', class: 'form-control' = text_field_tag :uri, nil, placeholder: 'https://mycompany.fogbugz.com', class: 'form-control'
.form-group.row .form-group.row
= label_tag :email, 'FogBugz Email', class: 'col-form-label' = label_tag :email, 'FogBugz Email', class: 'col-form-label col-sm-8'
.col-sm-4 .col-sm-4
= text_field_tag :email, nil, class: 'form-control' = text_field_tag :email, nil, class: 'form-control'
.form-group.row .form-group.row
= label_tag :password, 'FogBugz Password', class: 'col-form-label' = label_tag :password, 'FogBugz Password', class: 'col-form-label col-sm-8'
.col-sm-4 .col-sm-4
= password_field_tag :password, nil, class: 'form-control' = password_field_tag :password, nil, class: 'form-control'
.form-actions .form-actions
......
...@@ -12,11 +12,11 @@ ...@@ -12,11 +12,11 @@
= form_tag personal_access_token_import_gitea_path do = form_tag personal_access_token_import_gitea_path do
.form-group.row .form-group.row
= label_tag :gitea_host_url, 'Gitea Host URL', class: 'col-form-label' = label_tag :gitea_host_url, 'Gitea Host URL', class: 'col-form-label col-sm-8'
.col-sm-4 .col-sm-4
= text_field_tag :gitea_host_url, nil, placeholder: 'https://try.gitea.io', class: 'form-control' = text_field_tag :gitea_host_url, nil, placeholder: 'https://try.gitea.io', class: 'form-control'
.form-group.row .form-group.row
= label_tag :personal_access_token, 'Personal Access Token', class: 'col-form-label' = label_tag :personal_access_token, 'Personal Access Token', class: 'col-form-label col-sm-8'
.col-sm-4 .col-sm-4
= text_field_tag :personal_access_token, nil, class: 'form-control' = text_field_tag :personal_access_token, nil, class: 'form-control'
.form-actions .form-actions
......
...@@ -12,13 +12,13 @@ ...@@ -12,13 +12,13 @@
- unless @user.password_automatically_set? - unless @user.password_automatically_set?
.form-group.row .form-group.row
= f.label :current_password, class: 'col-form-label' = f.label :current_password, class: 'col-form-label col-sm-2'
.col-sm-10= f.password_field :current_password, required: true, class: 'form-control' .col-sm-10= f.password_field :current_password, required: true, class: 'form-control'
.form-group.row .form-group.row
= f.label :password, class: 'col-form-label' = f.label :password, class: 'col-form-label col-sm-2'
.col-sm-10= f.password_field :password, required: true, class: 'form-control' .col-sm-10= f.password_field :password, required: true, class: 'form-control'
.form-group.row .form-group.row
= f.label :password_confirmation, class: 'col-form-label' = f.label :password_confirmation, class: 'col-form-label col-sm-2'
.col-sm-10 .col-sm-10
= f.password_field :password_confirmation, required: true, class: 'form-control' = f.password_field :password_confirmation, required: true, class: 'form-control'
.form-actions .form-actions
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
.modal-body .modal-body
= form_tag project_create_dir_path(@project, @id), method: :post, remote: false, class: 'js-create-dir-form js-quick-submit js-requires-input' do = form_tag project_create_dir_path(@project, @id), method: :post, remote: false, class: 'js-create-dir-form js-quick-submit js-requires-input' do
.form-group.row .form-group.row
= label_tag :dir_name, _('Directory name'), class: 'col-form-label' = label_tag :dir_name, _('Directory name'), class: 'col-form-label col-sm-2'
.col-sm-10 .col-sm-10
= text_field_tag :dir_name, params[:dir_name], required: true, class: 'form-control' = text_field_tag :dir_name, params[:dir_name], required: true, class: 'form-control'
......
...@@ -11,12 +11,12 @@ ...@@ -11,12 +11,12 @@
= form_tag namespace_project_branches_path, method: :post, id: "new-branch-form", class: "js-create-branch-form js-requires-input" do = form_tag namespace_project_branches_path, method: :post, id: "new-branch-form", class: "js-create-branch-form js-requires-input" do
.form-group.row .form-group.row
= label_tag :branch_name, nil, class: 'col-form-label' = label_tag :branch_name, nil, class: 'col-form-label col-sm-2'
.col-sm-10 .col-sm-10
= text_field_tag :branch_name, params[:branch_name], required: true, autofocus: true, class: 'form-control js-branch-name' = text_field_tag :branch_name, params[:branch_name], required: true, autofocus: true, class: 'form-control js-branch-name'
.form-text.text-muted.text-danger.js-branch-name-error .form-text.text-muted.text-danger.js-branch-name-error
.form-group.row .form-group.row
= label_tag :ref, 'Create from', class: 'col-form-label' = label_tag :ref, 'Create from', class: 'col-form-label col-sm-2'
.col-sm-10.create-from .col-sm-10.create-from
.dropdown .dropdown
= hidden_field_tag :ref, default_ref = hidden_field_tag :ref, default_ref
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
%p.append-bottom-20= description %p.append-bottom-20= description
= form_tag [type.underscore, @project.namespace.becomes(Namespace), @project, commit], method: :post, remote: false, class: "js-#{type}-form js-requires-input" do = form_tag [type.underscore, @project.namespace.becomes(Namespace), @project, commit], method: :post, remote: false, class: "js-#{type}-form js-requires-input" do
.form-group.row.branch .form-group.row.branch
= label_tag 'start_branch', branch_label, class: 'col-form-label' = label_tag 'start_branch', branch_label, class: 'col-form-label col-sm-2'
.col-sm-10 .col-sm-10
= hidden_field_tag :start_branch, @project.default_branch, id: 'start_branch' = hidden_field_tag :start_branch, @project.default_branch, id: 'start_branch'
= dropdown_tag(@project.default_branch, options: { title: s_("BranchSwitcherTitle|Switch branch"), filter: true, placeholder: s_("BranchSwitcherPlaceholder|Search branches"), toggle_class: 'js-project-refs-dropdown dynamic', dropdown_class: 'dropdown-menu-selectable', data: { field_name: "start_branch", selected: @project.default_branch, start_branch: @project.default_branch, refs_url: project_branches_path(@project), submit_form_on_click: false } }) = dropdown_tag(@project.default_branch, options: { title: s_("BranchSwitcherTitle|Switch branch"), filter: true, placeholder: s_("BranchSwitcherPlaceholder|Search branches"), toggle_class: 'js-project-refs-dropdown dynamic', dropdown_class: 'dropdown-menu-selectable', data: { field_name: "start_branch", selected: @project.default_branch, start_branch: @project.default_branch, refs_url: project_branches_path(@project), submit_form_on_click: false } })
......
...@@ -3,11 +3,11 @@ ...@@ -3,11 +3,11 @@
.row .row
.col-md-6 .col-md-6
.form-group.row .form-group.row
= f.label :title, "Title", class: "col-form-label" = f.label :title, "Title", class: "col-form-label col-sm-2"
.col-sm-10 .col-sm-10
= f.text_field :title, maxlength: 255, class: "form-control", required: true, autofocus: true = f.text_field :title, maxlength: 255, class: "form-control", required: true, autofocus: true
.form-group.row.milestone-description .form-group.row.milestone-description
= f.label :description, "Description", class: "col-form-label" = f.label :description, "Description", class: "col-form-label col-sm-2"
.col-sm-10 .col-sm-10
= render layout: 'projects/md_preview', locals: { url: preview_markdown_path(@project) } do = render layout: 'projects/md_preview', locals: { url: preview_markdown_path(@project) } do
= render 'projects/zen', f: f, attr: :description, classes: 'note-textarea', placeholder: 'Write milestone description...' = render 'projects/zen', f: f, attr: :description, classes: 'note-textarea', placeholder: 'Write milestone description...'
......
...@@ -5,21 +5,21 @@ ...@@ -5,21 +5,21 @@
%p= msg %p= msg
.form-group.row .form-group.row
= f.label :domain, class: 'col-form-label' do = f.label :domain, class: 'col-form-label col-sm-2' do
Domain Domain
.col-sm-10 .col-sm-10
= f.text_field :domain, required: true, autocomplete: 'off', class: 'form-control', disabled: @domain.persisted? = f.text_field :domain, required: true, autocomplete: 'off', class: 'form-control', disabled: @domain.persisted?
- if Gitlab.config.pages.external_https - if Gitlab.config.pages.external_https
.form-group.row .form-group.row
= f.label :certificate, class: 'col-form-label' do = f.label :certificate, class: 'col-form-label col-sm-2' do
Certificate (PEM) Certificate (PEM)
.col-sm-10 .col-sm-10
= f.text_area :certificate, rows: 5, class: 'form-control' = f.text_area :certificate, rows: 5, class: 'form-control'
%span.help-inline Upload a certificate for your domain with all intermediates %span.help-inline Upload a certificate for your domain with all intermediates
.form-group.row .form-group.row
= f.label :key, class: 'col-form-label' do = f.label :key, class: 'col-form-label col-sm-2' do
Key (PEM) Key (PEM)
.col-sm-10 .col-sm-10
= f.text_area :key, rows: 5, class: 'form-control' = f.text_area :key, rows: 5, class: 'form-control'
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
= form_for @pipeline, as: :pipeline, url: project_pipelines_path(@project), html: { id: "new-pipeline-form", class: "js-new-pipeline-form js-requires-input" } do |f| = form_for @pipeline, as: :pipeline, url: project_pipelines_path(@project), html: { id: "new-pipeline-form", class: "js-new-pipeline-form js-requires-input" } do |f|
= form_errors(@pipeline) = form_errors(@pipeline)
.form-group.row .form-group.row
= f.label :ref, 'Create for', class: 'col-form-label' = f.label :ref, 'Create for', class: 'col-form-label col-sm-2'
.col-sm-10 .col-sm-10
= hidden_field_tag 'pipeline[ref]', params[:ref] || @project.default_branch = hidden_field_tag 'pipeline[ref]', params[:ref] || @project.default_branch
= dropdown_tag(params[:ref] || @project.default_branch, = dropdown_tag(params[:ref] || @project.default_branch,
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
%hr %hr
= form_tag apply_import_project_project_members_path(@project), method: 'post' do = form_tag apply_import_project_project_members_path(@project), method: 'post' do
.form-group.row .form-group.row
= label_tag :source_project_id, "Project", class: 'col-form-label' = label_tag :source_project_id, "Project", class: 'col-form-label col-sm-2'
.col-sm-10= select_tag(:source_project_id, options_from_collection_for_select(@projects, :id, :name_with_namespace), prompt: "Select project", class: "select2 lg", required: true) .col-sm-10= select_tag(:source_project_id, options_from_collection_for_select(@projects, :id, :name_with_namespace), prompt: "Select project", class: "select2 lg", required: true)
.form-actions .form-actions
......
= form_for runner, url: runner_form_url do |f| = form_for runner, url: runner_form_url do |f|
= form_errors(runner) = form_errors(runner)
.form-group.row .form-group.row
= label :active, "Active", class: 'col-form-label' = label :active, "Active", class: 'col-form-label col-sm-2'
.col-sm-10 .col-sm-10
.form-check .form-check
= f.check_box :active = f.check_box :active
%span.light Paused Runners don't accept new jobs %span.light Paused Runners don't accept new jobs
.form-group.row .form-group.row
= label :protected, "Protected", class: 'col-form-label' = label :protected, "Protected", class: 'col-form-label col-sm-2'
.col-sm-10 .col-sm-10
.form-check .form-check
= f.check_box :access_level, {}, 'ref_protected', 'not_protected' = f.check_box :access_level, {}, 'ref_protected', 'not_protected'
%span.light This runner will only run on pipelines triggered on protected branches %span.light This runner will only run on pipelines triggered on protected branches
.form-group.row .form-group.row
= label :run_untagged, 'Run untagged jobs', class: 'col-form-label' = label :run_untagged, 'Run untagged jobs', class: 'col-form-label col-sm-2'
.col-sm-10 .col-sm-10
.form-check .form-check
= f.check_box :run_untagged = f.check_box :run_untagged
%span.light Indicates whether this runner can pick jobs without tags %span.light Indicates whether this runner can pick jobs without tags
.form-group.row .form-group.row
= label :locked, 'Lock to current projects', class: 'col-form-label' = label :locked, 'Lock to current projects', class: 'col-form-label col-sm-2'
.col-sm-10 .col-sm-10
.form-check .form-check
= f.check_box :locked = f.check_box :locked
%span.light When a runner is locked, it cannot be assigned to other projects %span.light When a runner is locked, it cannot be assigned to other projects
.form-group.row .form-group.row
= label_tag :token, class: 'col-form-label' do = label_tag :token, class: 'col-form-label col-sm-2' do
Token Token
.col-sm-10 .col-sm-10
= f.text_field :token, class: 'form-control', readonly: true = f.text_field :token, class: 'form-control', readonly: true
.form-group.row .form-group.row
= label_tag :ip_address, class: 'col-form-label' do = label_tag :ip_address, class: 'col-form-label col-sm-2' do
IP Address IP Address
.col-sm-10 .col-sm-10
= f.text_field :ip_address, class: 'form-control', readonly: true = f.text_field :ip_address, class: 'form-control', readonly: true
.form-group.row .form-group.row
= label_tag :description, class: 'col-form-label' do = label_tag :description, class: 'col-form-label col-sm-2' do
Description Description
.col-sm-10 .col-sm-10
= f.text_field :description, class: 'form-control' = f.text_field :description, class: 'form-control'
.form-group.row .form-group.row
= label_tag :maximum_timeout_human_readable, class: 'col-form-label' do = label_tag :maximum_timeout_human_readable, class: 'col-form-label col-sm-2' do
Maximum job timeout Maximum job timeout
.col-sm-10 .col-sm-10
= f.text_field :maximum_timeout_human_readable, class: 'form-control' = f.text_field :maximum_timeout_human_readable, class: 'form-control'
.form-text.text-muted This timeout will take precedence when lower than Project-defined timeout .form-text.text-muted This timeout will take precedence when lower than Project-defined timeout
.form-group.row .form-group.row
= label_tag :tag_list, class: 'col-form-label' do = label_tag :tag_list, class: 'col-form-label col-sm-2' do
Tags Tags
.col-sm-10 .col-sm-10
= f.text_field :tag_list, value: runner.tag_list.sort.join(', '), class: 'form-control' = f.text_field :tag_list, value: runner.tag_list.sort.join(', '), class: 'form-control'
......
...@@ -12,11 +12,11 @@ ...@@ -12,11 +12,11 @@
= form_tag namespace_project_tags_path, method: :post, id: "new-tag-form", class: "common-note-form tag-form js-quick-submit js-requires-input" do = form_tag namespace_project_tags_path, method: :post, id: "new-tag-form", class: "common-note-form tag-form js-quick-submit js-requires-input" do
.form-group.row .form-group.row
= label_tag :tag_name, nil, class: 'col-form-label' = label_tag :tag_name, nil, class: 'col-form-label col-sm-2'
.col-sm-10 .col-sm-10
= text_field_tag :tag_name, params[:tag_name], required: true, autofocus: true, class: 'form-control' = text_field_tag :tag_name, params[:tag_name], required: true, autofocus: true, class: 'form-control'
.form-group.row .form-group.row
= label_tag :ref, 'Create from', class: 'col-form-label' = label_tag :ref, 'Create from', class: 'col-form-label col-sm-2'
.col-sm-10.create-from .col-sm-10.create-from
.dropdown .dropdown
= hidden_field_tag :ref, default_ref = hidden_field_tag :ref, default_ref
...@@ -26,14 +26,14 @@ ...@@ -26,14 +26,14 @@
.form-text.text-muted .form-text.text-muted
= s_('TagsPage|Existing branch name, tag, or commit SHA') = s_('TagsPage|Existing branch name, tag, or commit SHA')
.form-group.row .form-group.row
= label_tag :message, nil, class: 'col-form-label' = label_tag :message, nil, class: 'col-form-label col-sm-2'
.col-sm-10 .col-sm-10
= text_area_tag :message, @message, required: false, class: 'form-control', rows: 5 = text_area_tag :message, @message, required: false, class: 'form-control', rows: 5
.form-text.text-muted .form-text.text-muted
= s_('TagsPage|Optionally, add a message to the tag.') = s_('TagsPage|Optionally, add a message to the tag.')
%hr %hr
.form-group.row .form-group.row
= label_tag :release_description, s_('TagsPage|Release notes'), class: 'col-form-label' = label_tag :release_description, s_('TagsPage|Release notes'), class: 'col-form-label col-sm-2'
.col-sm-10 .col-sm-10
= render layout: 'projects/md_preview', locals: { url: preview_markdown_path(@project), referenced_users: true } do = render layout: 'projects/md_preview', locals: { url: preview_markdown_path(@project), referenced_users: true } do
= render 'projects/zen', attr: :release_description, classes: 'note-textarea', placeholder: s_('TagsPage|Write your release notes or drag files here...'), current_text: @release_description = render 'projects/zen', attr: :release_description, classes: 'note-textarea', placeholder: s_('TagsPage|Write your release notes or drag files here...'), current_text: @release_description
......
.form-group.row.commit_message-group .form-group.row.commit_message-group
- nonce = SecureRandom.hex - nonce = SecureRandom.hex
- descriptions = local_assigns.slice(:message_with_description, :message_without_description) - descriptions = local_assigns.slice(:message_with_description, :message_without_description)
= label_tag "commit_message-#{nonce}", class: 'col-form-label' do = label_tag "commit_message-#{nonce}", class: 'col-form-label col-sm-2' do
#{ _('Commit message') } #{ _('Commit message') }
.col-sm-10 .col-sm-10
.commit-message-container .commit-message-container
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
- else - else
- if can?(current_user, :push_code, @project) - if can?(current_user, :push_code, @project)
.form-group.row.branch .form-group.row.branch
= label_tag 'branch_name', _('Target Branch'), class: 'col-form-label' = label_tag 'branch_name', _('Target Branch'), class: 'col-form-label col-sm-2'
.col-sm-10 .col-sm-10
= text_field_tag 'branch_name', branch_name, required: true, class: "form-control js-branch-name ref-name" = text_field_tag 'branch_name', branch_name, required: true, class: "form-control js-branch-name ref-name"
......
...@@ -9,13 +9,13 @@ ...@@ -9,13 +9,13 @@
.service-settings .service-settings
- if @service.show_active_box? - if @service.show_active_box?
.form-group.row .form-group.row
= form.label :active, "Active", class: "col-form-label" = form.label :active, "Active", class: "col-form-label col-sm-2"
.col-sm-10 .col-sm-10
= form.check_box :active, disabled: disable_fields_service?(@service) = form.check_box :active, disabled: disable_fields_service?(@service)
- if @service.configurable_events.present? - if @service.configurable_events.present?
.form-group.row .form-group.row
= form.label :url, "Trigger", class: 'col-form-label' = form.label :url, "Trigger", class: 'col-form-label col-sm-2'
.col-sm-10 .col-sm-10
- @service.configurable_events.each do |event| - @service.configurable_events.each do |event|
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
.form-group.row.visibility-level-setting .form-group.row.visibility-level-setting
- if with_label - if with_label
= f.label :visibility_level, class: 'col-form-label' do = f.label :visibility_level, class: 'col-form-label col-sm-2' do
Visibility Level Visibility Level
= link_to icon('question-circle'), help_page_path("public_access/public_access") = link_to icon('question-circle'), help_page_path("public_access/public_access")
%div{ :class => ("col-sm-10" if with_label) } %div{ :class => ("col-sm-10" if with_label) }
......
...@@ -5,26 +5,26 @@ ...@@ -5,26 +5,26 @@
= form_errors(deploy_key) = form_errors(deploy_key)
.form-group .form-group
= form.label :title, class: 'col-form-label' = form.label :title, class: 'col-form-label col-sm-2'
.col-sm-10= form.text_field :title, class: 'form-control' .col-sm-10= form.text_field :title, class: 'form-control'
.form-group .form-group
- if deploy_key.new_record? - if deploy_key.new_record?
= form.label :key, class: 'col-form-label' = form.label :key, class: 'col-form-label col-sm-2'
.col-sm-10 .col-sm-10
%p.light %p.light
Paste a machine public key here. Read more about how to generate it Paste a machine public key here. Read more about how to generate it
= link_to 'here', help_page_path('ssh/README') = link_to 'here', help_page_path('ssh/README')
= form.text_area :key, class: 'form-control thin_area', rows: 5 = form.text_area :key, class: 'form-control thin_area', rows: 5
- else - else
= form.label :fingerprint, class: 'col-form-label' = form.label :fingerprint, class: 'col-form-label col-sm-2'
.col-sm-10 .col-sm-10
= form.text_field :fingerprint, class: 'form-control', readonly: 'readonly' = form.text_field :fingerprint, class: 'form-control', readonly: 'readonly'
- if deploy_keys_project.present? - if deploy_keys_project.present?
= form.fields_for :deploy_keys_projects, deploy_keys_project do |deploy_keys_project_form| = form.fields_for :deploy_keys_projects, deploy_keys_project do |deploy_keys_project_form|
.form-group .form-group
.col-form-label .col-form-label.col-sm-2
.col-sm-10 .col-sm-10
= deploy_keys_project_form.label :can_push do = deploy_keys_project_form.label :can_push do
= deploy_keys_project_form.check_box :can_push = deploy_keys_project_form.check_box :can_push
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
- preview_url = preview_markdown_path(project) - preview_url = preview_markdown_path(project)
.form-group.row.detail-page-description .form-group.row.detail-page-description
= form.label :description, 'Description', class: 'col-form-label' = form.label :description, 'Description', class: 'col-form-label col-sm-2'
.col-sm-10 .col-sm-10
= render layout: 'projects/md_preview', locals: { url: preview_url, referenced_users: true } do = render layout: 'projects/md_preview', locals: { url: preview_url, referenced_users: true } do
......
...@@ -2,15 +2,15 @@ ...@@ -2,15 +2,15 @@
= form_errors(@label) = form_errors(@label)
.form-group.row .form-group.row
= f.label :title, class: 'col-form-label' = f.label :title, class: 'col-form-label col-sm-2'
.col-sm-10 .col-sm-10
= f.text_field :title, class: "form-control", required: true, autofocus: true = f.text_field :title, class: "form-control", required: true, autofocus: true
.form-group.row .form-group.row
= f.label :description, class: 'col-form-label' = f.label :description, class: 'col-form-label col-sm-2'
.col-sm-10 .col-sm-10
= f.text_field :description, class: "form-control js-quick-submit" = f.text_field :description, class: "form-control js-quick-submit"
.form-group.row .form-group.row
= f.label :color, "Background color", class: 'col-form-label' = f.label :color, "Background color", class: 'col-form-label col-sm-2'
.col-sm-10 .col-sm-10
.input-group .input-group
.input-group-prepend .input-group-prepend
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
= form_errors(@snippet) = form_errors(@snippet)
.form-group.row .form-group.row
= f.label :title, class: 'col-form-label' = f.label :title, class: 'col-form-label col-sm-2'
.col-sm-10 .col-sm-10
= f.text_field :title, class: 'form-control', required: true, autofocus: true = f.text_field :title, class: 'form-control', required: true, autofocus: true
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
.file-editor .file-editor
.form-group.row .form-group.row
= f.label :file_name, "File", class: 'col-form-label' = f.label :file_name, "File", class: 'col-form-label col-sm-2'
.col-sm-10 .col-sm-10
.file-holder.snippet .file-holder.snippet
.js-file-title.file-title .js-file-title.file-title
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment