diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-12-31 02:50:36 +0200 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-12-31 02:50:36 +0200 |
commit | 010a770b3fa15119b40a994fde6ffdde3acf6d2d (patch) | |
tree | d0d90a2aefe78dae9db490f8b5ca168ce4809e28 /app/views | |
parent | 16eb3ac360df60469cc9b1a93870c0273c7fe78f (diff) | |
download | gitlab-ce-010a770b3fa15119b40a994fde6ffdde3acf6d2d.tar.gz |
Migrate forms and inputs pt1
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'app/views')
32 files changed, 78 insertions, 74 deletions
diff --git a/app/views/admin/broadcast_messages/index.html.haml b/app/views/admin/broadcast_messages/index.html.haml index 220bf759cea..204b8cdd696 100644 --- a/app/views/admin/broadcast_messages/index.html.haml +++ b/app/views/admin/broadcast_messages/index.html.haml @@ -14,7 +14,7 @@ .form-group = f.label :message .col-sm-10 - = f.text_area :message, class: "input-xxlarge", rows: 2, required: true + = f.text_area :message, class: "input-lg", rows: 2, required: true %div = link_to '#', class: 'js-toggle-colors-link' do Customize colors diff --git a/app/views/admin/groups/edit.html.haml b/app/views/admin/groups/edit.html.haml index c7d87448f1d..8183454c763 100644 --- a/app/views/admin/groups/edit.html.haml +++ b/app/views/admin/groups/edit.html.haml @@ -8,18 +8,18 @@ = f.label :name do Group name .col-sm-10 - = f.text_field :name, placeholder: "Example Group", class: "input-xxlarge" + = f.text_field :name, placeholder: "Example Group", class: "input-lg" .form-group.group-description-holder = f.label :description, "Details" .col-sm-10 - = f.text_area :description, maxlength: 250, class: "input-xxlarge js-gfm-input", rows: 4 + = f.text_area :description, maxlength: 250, class: "input-lg js-gfm-input", rows: 4 .form-group.group_name_holder = f.label :path do %span.cred Group path .col-sm-10 - = f.text_field :path, placeholder: "example-group", class: "input-xxlarge danger" + = f.text_field :path, placeholder: "example-group", class: "input-lg danger" %ul.cred %li Changing group path can have unintended side effects. %li Renaming group path will rename directory for all related projects diff --git a/app/views/admin/groups/new.html.haml b/app/views/admin/groups/new.html.haml index 76e49dbbcde..301e9a61cbf 100644 --- a/app/views/admin/groups/new.html.haml +++ b/app/views/admin/groups/new.html.haml @@ -8,11 +8,11 @@ = f.label :name do Group name .col-sm-10 - = f.text_field :name, placeholder: "Ex. OpenSource", class: "input-xxlarge left" + = f.text_field :name, placeholder: "Ex. OpenSource", class: "input-lg left" .form-group.group-description-holder = f.label :description, "Details" .col-sm-10 - = f.text_area :description, maxlength: 250, class: "input-xxlarge js-gfm-input", rows: 4 + = f.text_area :description, maxlength: 250, class: "input-lg js-gfm-input", rows: 4 .form-actions = f.submit 'Create group', class: "btn btn-create" diff --git a/app/views/admin/hooks/index.html.haml b/app/views/admin/hooks/index.html.haml index 681ba14f3d5..0192cd0eb82 100644 --- a/app/views/admin/hooks/index.html.haml +++ b/app/views/admin/hooks/index.html.haml @@ -16,7 +16,7 @@ .form-group = f.label :url, "URL:" .col-sm-10 - = f.text_field :url, class: "text_field input-xxlarge input-xpadding" + = f.text_field :url, class: "text_field input-lg input-xpadding" = f.submit "Add System Hook", class: "btn btn-create" %hr diff --git a/app/views/dashboard/_groups.html.haml b/app/views/dashboard/_groups.html.haml index b4f3866228d..d6937ca4813 100644 --- a/app/views/dashboard/_groups.html.haml +++ b/app/views/dashboard/_groups.html.haml @@ -1,6 +1,6 @@ .ui-box .title.clearfix - = search_field_tag :filter_group, nil, placeholder: 'Filter by name', class: 'dash-filter' + = search_field_tag :filter_group, nil, placeholder: 'Filter by name', class: 'dash-filter form-control' - if current_user.can_create_group? %span.pull-right = link_to new_group_path, class: "btn btn-new" do diff --git a/app/views/dashboard/_projects.html.haml b/app/views/dashboard/_projects.html.haml index b79b27fc95a..8313cc07b5e 100644 --- a/app/views/dashboard/_projects.html.haml +++ b/app/views/dashboard/_projects.html.haml @@ -1,6 +1,6 @@ .ui-box .title.clearfix - = search_field_tag :filter_projects, nil, placeholder: 'Filter by name', class: 'dash-filter' + = search_field_tag :filter_projects, nil, placeholder: 'Filter by name', class: 'dash-filter form-control' - if current_user.can_create_project? %span.pull-right = link_to new_project_path, class: "btn btn-new" do diff --git a/app/views/groups/edit.html.haml b/app/views/groups/edit.html.haml index 7bd275ead0e..550c060da1f 100644 --- a/app/views/groups/edit.html.haml +++ b/app/views/groups/edit.html.haml @@ -28,12 +28,12 @@ = f.label :name do Group name .col-sm-10 - = f.text_field :name, placeholder: "Ex. OpenSource", class: "input-xxlarge left" + = f.text_field :name, placeholder: "Ex. OpenSource", class: "input-lg left" .form-group.group-description-holder = f.label :description, "Details" .col-sm-10 - = f.text_area :description, maxlength: 250, class: "input-xxlarge js-gfm-input", rows: 4 + = f.text_area :description, maxlength: 250, class: "input-lg js-gfm-input", rows: 4 .form-actions = f.submit 'Save group', class: "btn btn-save" diff --git a/app/views/groups/new.html.haml b/app/views/groups/new.html.haml index d9b7843cb33..7086630f515 100644 --- a/app/views/groups/new.html.haml +++ b/app/views/groups/new.html.haml @@ -6,12 +6,12 @@ = f.label :name do Group name .col-sm-10 - = f.text_field :name, placeholder: "Ex. OpenSource", class: "input-xxlarge left" + = f.text_field :name, placeholder: "Ex. OpenSource", class: "input-lg left" .form-group.group-description-holder = f.label :description, "Details" .col-sm-10 - = f.text_area :description, maxlength: 250, class: "input-xxlarge js-gfm-input", rows: 4 + = f.text_area :description, maxlength: 250, class: "input-lg js-gfm-input", rows: 4 .form-group .col-sm-10 diff --git a/app/views/kaminari/gitlab/_paginator.html.haml b/app/views/kaminari/gitlab/_paginator.html.haml index 6f9fb332261..4f7996e4996 100644 --- a/app/views/kaminari/gitlab/_paginator.html.haml +++ b/app/views/kaminari/gitlab/_paginator.html.haml @@ -6,8 +6,8 @@ -# remote: data-remote -# paginator: the paginator that renders the pagination tags inside = paginator.render do - %div.pagination - %ul + %div.gl-pagination + %ul.pagination = prev_page_tag unless current_page.first? - each_page do |page| - if page.left_outer? || page.right_outer? || page.inside_window? diff --git a/app/views/profiles/accounts/show.html.haml b/app/views/profiles/accounts/show.html.haml index 36cb8b66c1f..d48e266e8b2 100644 --- a/app/views/profiles/accounts/show.html.haml +++ b/app/views/profiles/accounts/show.html.haml @@ -23,8 +23,9 @@ %p.cgray - if current_user.private_token - = text_field_tag "token", current_user.private_token, class: "input-xlarge input-xpadding pull-left" - = f.submit 'Reset', data: { confirm: "Are you sure?" }, class: "btn btn-primary btn-build-token prepend-left-10" + = text_field_tag "token", current_user.private_token, class: "form-control" + %div + = f.submit 'Reset', data: { confirm: "Are you sure?" }, class: "btn btn-primary btn-build-token" - else %span You don`t have one yet. Click generate to fix it. = f.submit 'Generate', class: "btn success btn-build-token" @@ -47,7 +48,7 @@ %p Changing your username will change path to all personal projects! %div - = f.text_field :username, required: true, class: 'input-xlarge input-xpadding' + = f.text_field :username, required: true, class: 'form-control' %span.loading-gif.gl-hide= image_tag "ajax_loader.gif" %p.light diff --git a/app/views/profiles/keys/_form.html.haml b/app/views/profiles/keys/_form.html.haml index 671fd0dfd4e..54d64057922 100644 --- a/app/views/profiles/keys/_form.html.haml +++ b/app/views/profiles/keys/_form.html.haml @@ -1,5 +1,5 @@ %div - = form_for [:profile, @key] do |f| + = form_for [:profile, @key], html: { class: 'form-horizontal' } do |f| - if @key.errors.any? .alert.alert-error %ul @@ -7,14 +7,12 @@ %li= msg .form-group - = f.label :title - .col-sm-10= f.text_field :title, class: "input-xlarge" + = f.label :title, class: 'control-label' + .col-sm-10= f.text_field :title, class: "form-control" .form-group - = f.label :key + = f.label :key, class: 'control-label' .col-sm-10 - %p.light - Paste your public key here. Read more about how to generate a key on #{link_to "the SSH help page", help_ssh_path}. - = f.text_area :key, class: "input-xxlarge thin_area" + = f.text_area :key, class: "form-control", rows: 8 .form-actions diff --git a/app/views/profiles/keys/new.html.haml b/app/views/profiles/keys/new.html.haml index f1b8fe08d5c..3d5a947948d 100644 --- a/app/views/profiles/keys/new.html.haml +++ b/app/views/profiles/keys/new.html.haml @@ -1,4 +1,6 @@ %h3.page-title Add an SSH Key +%p.light + Paste your public key here. Read more about how to generate a key on #{link_to "the SSH help page", help_ssh_path}. %hr = render 'form' diff --git a/app/views/profiles/notifications/_settings.html.haml b/app/views/profiles/notifications/_settings.html.haml index 60fb405471e..ab64d8303a4 100644 --- a/app/views/profiles/notifications/_settings.html.haml +++ b/app/views/profiles/notifications/_settings.html.haml @@ -13,19 +13,19 @@ = hidden_field_tag :notification_type, type, id: dom_id(membership, 'notification_type') = hidden_field_tag :notification_id, membership.id, id: dom_id(membership, 'notification_id') - = label_tag do + = label_tag nil, class: 'radio-inline' do = radio_button_tag :notification_level, Notification::N_GLOBAL, notification.global?, id: dom_id(membership, 'notification_level'), class: 'trigger-submit' %span Use global setting - = label_tag do + = label_tag nil, class: 'radio-inline' do = radio_button_tag :notification_level, Notification::N_DISABLED, notification.disabled?, id: dom_id(membership, 'notification_level'), class: 'trigger-submit' %span Disabled - = label_tag do + = label_tag nil, class: 'radio-inline' do = radio_button_tag :notification_level, Notification::N_PARTICIPATING, notification.participating?, id: dom_id(membership, 'notification_level'), class: 'trigger-submit' %span Participating - = label_tag do + = label_tag nil, class: 'radio-inline' do = radio_button_tag :notification_level, Notification::N_WATCH, notification.watch?, id: dom_id(membership, 'notification_level'), class: 'trigger-submit' %span Watch diff --git a/app/views/profiles/notifications/show.html.haml b/app/views/profiles/notifications/show.html.haml index 519d2aa5937..ea3511f5080 100644 --- a/app/views/profiles/notifications/show.html.haml +++ b/app/views/profiles/notifications/show.html.haml @@ -26,15 +26,15 @@ = form_tag profile_notifications_path, method: :put, remote: true, class: 'update-notifications' do = hidden_field_tag :notification_type, 'global' - = label_tag do + = label_tag nil, class: 'radio-inline' do = radio_button_tag :notification_level, Notification::N_DISABLED, @notification.disabled?, class: 'trigger-submit' %span Disabled - = label_tag do + = label_tag nil, class: 'radio-inline' do = radio_button_tag :notification_level, Notification::N_PARTICIPATING, @notification.participating?, class: 'trigger-submit' %span Participating - = label_tag do + = label_tag nil, class: 'radio-inline' do = radio_button_tag :notification_level, Notification::N_WATCH, @notification.watch?, class: 'trigger-submit' %span Watch diff --git a/app/views/profiles/passwords/edit.html.haml b/app/views/profiles/passwords/edit.html.haml index e5fc5003843..72f6521d92b 100644 --- a/app/views/profiles/passwords/edit.html.haml +++ b/app/views/profiles/passwords/edit.html.haml @@ -3,7 +3,7 @@ Change your password or recover your current one. %hr .update-password - = form_for @user, url: profile_password_path, method: :put do |f| + = form_for @user, url: profile_password_path, method: :put, html: { class: 'form-horizontal' } do |f| %div %p.slead You must provide current password in order to change it. @@ -15,18 +15,18 @@ - @user.errors.full_messages.each do |msg| %li= msg .form-group - = f.label :current_password + = f.label :current_password, class: 'control-label' .col-sm-10 - = f.password_field :current_password, required: true + = f.password_field :current_password, required: true, class: 'form-control' %div = link_to "Forgot your password?", reset_profile_password_path, method: :put .form-group - = f.label :password, 'New password' - .col-sm-10= f.password_field :password, required: true + = f.label :password, 'New password', class: 'control-label' + .col-sm-10= f.password_field :password, required: true, class: 'form-control' .form-group - = f.label :password_confirmation + = f.label :password_confirmation, class: 'control-label' .col-sm-10 - = f.password_field :password_confirmation, required: true + = f.password_field :password_confirmation, required: true, class: 'form-control' .form-actions = f.submit 'Save password', class: "btn btn-save" diff --git a/app/views/profiles/show.html.haml b/app/views/profiles/show.html.haml index 7ecb4e56bc6..4e70820d09d 100644 --- a/app/views/profiles/show.html.haml +++ b/app/views/profiles/show.html.haml @@ -19,18 +19,18 @@ .form-group = f.label :name, class: "control-label" .col-sm-10 - = f.text_field :name, class: "input-xlarge", required: true + = f.text_field :name, class: "form-control", required: true %span.help-block Enter your name, so people you know can recognize you. .form-group = f.label :email, class: "control-label" .col-sm-10 - if @user.ldap_user? - = f.text_field :email, class: "input-xlarge", required: true, readonly: true + = f.text_field :email, class: "form-control", required: true, readonly: true %span.help-block.light Email is read-only for LDAP user - else - = f.text_field :email, class: "input-xlarge", required: true + = f.text_field :email, class: "form-control", required: true - if @user.unconfirmed_email.present? %span.help-block We sent confirmation email to @@ -39,17 +39,17 @@ %span.help-block We also use email for avatar detection if no avatar is uploaded. .form-group = f.label :skype, class: "control-label" - .col-sm-10= f.text_field :skype, class: "input-xlarge" + .col-sm-10= f.text_field :skype, class: "form-control" .form-group = f.label :linkedin, class: "control-label" - .col-sm-10= f.text_field :linkedin, class: "input-xlarge" + .col-sm-10= f.text_field :linkedin, class: "form-control" .form-group = f.label :twitter, class: "control-label" - .col-sm-10= f.text_field :twitter, class: "input-xlarge" + .col-sm-10= f.text_field :twitter, class: "form-control" .form-group = f.label :bio, class: "control-label" .col-sm-10 - = f.text_area :bio, rows: 6, class: "input-xlarge", maxlength: 250 + = f.text_area :bio, rows: 6, class: "form-control", maxlength: 250 %span.help-block Tell us about yourself in fewer than 250 characters. .col-md-5.pull-right diff --git a/app/views/projects/deploy_keys/_form.html.haml b/app/views/projects/deploy_keys/_form.html.haml index 388e297255d..5ee4aae54eb 100644 --- a/app/views/projects/deploy_keys/_form.html.haml +++ b/app/views/projects/deploy_keys/_form.html.haml @@ -8,14 +8,14 @@ .form-group = f.label :title - .col-sm-10= f.text_field :title, class: 'input-xlarge' + .col-sm-10= f.text_field :title, class: 'input-lg' .form-group = f.label :key .col-sm-10 %p.light Paste a machine public key here. Read more about how to generate it = link_to "here", help_ssh_path - = f.text_area :key, class: "input-xxlarge thin_area" + = f.text_area :key, class: "input-lg thin_area" .form-actions = f.submit 'Create', class: "btn-create btn" diff --git a/app/views/projects/hooks/index.html.haml b/app/views/projects/hooks/index.html.haml index 5df557add4f..9cfcb20ea8d 100644 --- a/app/views/projects/hooks/index.html.haml +++ b/app/views/projects/hooks/index.html.haml @@ -15,7 +15,7 @@ .form-group = f.label :url, "URL" .col-sm-10 - = f.text_field :url, class: "text_field input-xxlarge input-xpadding", placeholder: 'http://example.com/trigger-ci.json' + = f.text_field :url, class: "text_field input-lg input-xpadding", placeholder: 'http://example.com/trigger-ci.json' = f.submit "Add Web Hook", class: "btn btn-create" .form-group diff --git a/app/views/projects/issues/_form.html.haml b/app/views/projects/issues/_form.html.haml index be237ac245f..c51dbf820e7 100644 --- a/app/views/projects/issues/_form.html.haml +++ b/app/views/projects/issues/_form.html.haml @@ -12,7 +12,7 @@ = f.label :title do %strong= "Subject *" .col-sm-10 - = f.text_field :title, maxlength: 255, class: "input-xxlarge js-gfm-input", autofocus: true, required: true + = f.text_field :title, maxlength: 255, class: "input-lg js-gfm-input", autofocus: true, required: true .context .form-group .issue_assignee.pull-left @@ -37,13 +37,13 @@ %i.icon-tag Labels .col-sm-10 - = f.text_field :label_list, maxlength: 2000, class: "input-xxlarge" + = f.text_field :label_list, maxlength: 2000, class: "input-lg" %p.hint Separate labels with commas. .form-group = f.label :description, "Details" .col-sm-10 - = f.text_area :description, class: "input-xxlarge js-gfm-input", rows: 14 + = f.text_area :description, class: "input-lg js-gfm-input", rows: 14 %p.hint Issues are parsed with #{link_to "GitLab Flavored Markdown", help_markdown_path, target: '_blank'}. diff --git a/app/views/projects/issues/_head.html.haml b/app/views/projects/issues/_head.html.haml index a44db78a92b..1c3b39ae9d3 100644 --- a/app/views/projects/issues/_head.html.haml +++ b/app/views/projects/issues/_head.html.haml @@ -17,9 +17,10 @@ %li.pull-right .pull-right + = form_tag project_issues_path(@project), method: :get, id: "issue_search_form", class: 'inline issue-search-form' do + .append-right-10 + = search_field_tag :issue_search, nil, { placeholder: 'Filter by title or description', class: 'form-control issue_search search-text-input' } - if can? current_user, :write_issue, @project - = link_to new_project_issue_path(@project, issue: { assignee_id: params[:assignee_id], milestone_id: params[:milestone_id]}), class: "btn btn-new pull-right", title: "New Issue", id: "new_issue_link" do + = link_to new_project_issue_path(@project, issue: { assignee_id: params[:assignee_id], milestone_id: params[:milestone_id]}), class: "btn btn-new", title: "New Issue", id: "new_issue_link" do %i.icon-plus New Issue - = form_tag project_issues_path(@project), method: :get, id: "issue_search_form", class: 'pull-right issue-search-form' do - = search_field_tag :issue_search, nil, { placeholder: 'Filter by title or description', class: 'input-xpadding issue_search input-xlarge append-right-10 search-text-input' } diff --git a/app/views/projects/merge_requests/_form.html.haml b/app/views/projects/merge_requests/_form.html.haml index a868e964eeb..098596ff845 100644 --- a/app/views/projects/merge_requests/_form.html.haml +++ b/app/views/projects/merge_requests/_form.html.haml @@ -33,7 +33,7 @@ .form-group = f.label :title do %strong= "Title *" - .col-sm-10= f.text_field :title, class: "input-xxlarge pad js-gfm-input", maxlength: 255, rows: 5, required: true + .col-sm-10= f.text_field :title, class: "input-lg pad js-gfm-input", maxlength: 255, rows: 5, required: true .form-group .left = f.label :assignee_id do @@ -48,7 +48,7 @@ .form-group = f.label :description, "Description" .col-sm-10 - = f.text_area :description, class: "input-xxlarge js-gfm-input", rows: 14 + = f.text_area :description, class: "input-lg js-gfm-input", rows: 14 %p.hint Description is parsed with #{link_to "GitLab Flavored Markdown", help_markdown_path, target: '_blank'}. diff --git a/app/views/projects/milestones/_form.html.haml b/app/views/projects/milestones/_form.html.haml index 34f6ca8a4a3..a3dc9d8c9cb 100644 --- a/app/views/projects/milestones/_form.html.haml +++ b/app/views/projects/milestones/_form.html.haml @@ -16,12 +16,12 @@ .form-group = f.label :title, "Title", class: "control-label" .col-sm-10 - = f.text_field :title, maxlength: 255, class: "input-xlarge" + = f.text_field :title, maxlength: 255, class: "input-lg" %p.hint Required .form-group = f.label :description, "Description", class: "control-label" .col-sm-10 - = f.text_area :description, maxlength: 2000, class: "input-xlarge", rows: 10 + = f.text_area :description, maxlength: 2000, class: "input-lg", rows: 10 %p.hint Milestones are parsed with #{link_to "GitLab Flavored Markdown", help_markdown_path, target: '_blank'}. .col-md-6 .form-group diff --git a/app/views/projects/network/_head.html.haml b/app/views/projects/network/_head.html.haml index 2f16eaf3104..9d9324c2693 100644 --- a/app/views/projects/network/_head.html.haml +++ b/app/views/projects/network/_head.html.haml @@ -15,7 +15,7 @@ .form-group = label_tag :search , "Looking for commit:", class: 'control-label light' .col-sm-10 - = text_field_tag :extended_sha1, @options[:extended_sha1], placeholder: "Input an extended SHA1 syntax", class: "search-input input-xlarge" + = text_field_tag :extended_sha1, @options[:extended_sha1], placeholder: "Input an extended SHA1 syntax", class: "search-input input-lg" = button_tag type: 'submit', class: 'btn vtop' do %i.icon-search - @options.each do |key, value| diff --git a/app/views/projects/new.html.haml b/app/views/projects/new.html.haml index 85328a4599b..2de8a497746 100644 --- a/app/views/projects/new.html.haml +++ b/app/views/projects/new.html.haml @@ -8,7 +8,7 @@ = f.label :name do %strong Project name .col-sm-10 - = f.text_field :name, placeholder: "Example Project", class: "input-xlarge", tabindex: 1, autofocus: true + = f.text_field :name, placeholder: "Example Project", class: "input-lg", tabindex: 1, autofocus: true %span.help-inline = link_to "#", class: 'js-toggle-visibility-link' do %span Customize repository name? @@ -38,7 +38,7 @@ = f.label :import_url do %span Import existing repo .col-sm-10 - = f.text_field :import_url, class: 'input-xlarge', placeholder: 'https://github.com/randx/six.git' + = f.text_field :import_url, class: 'input-lg', placeholder: 'https://github.com/randx/six.git' .light URL must be cloneable .form-group @@ -46,7 +46,7 @@ Description %span.light (optional) .col-sm-10 - = f.text_area :description, placeholder: "Awesome project", class: "input-xlarge", rows: 3, maxlength: 250, tabindex: 3 + = f.text_area :description, placeholder: "Awesome project", class: "input-lg", rows: 3, maxlength: 250, tabindex: 3 = render "visibility_level", f: f, visibility_level: gitlab_config.default_projects_features.visibility_level, can_change_visibility_level: true .form-actions diff --git a/app/views/projects/services/_form.html.haml b/app/views/projects/services/_form.html.haml index f848f500f33..5f5a1bb9b67 100644 --- a/app/views/projects/services/_form.html.haml +++ b/app/views/projects/services/_form.html.haml @@ -32,9 +32,9 @@ = f.label name, class: "control-label" .col-sm-10 - if type == 'text' - = f.text_field name, class: "input-xlarge", placeholder: placeholder + = f.text_field name, class: "input-lg", placeholder: placeholder - elsif type == 'textarea' - = f.text_area name, rows: 5, class: "input-xxlarge", placeholder: placeholder + = f.text_area name, rows: 5, class: "input-lg", placeholder: placeholder - elsif type == 'checkbox' = f.check_box name diff --git a/app/views/projects/snippets/_form.html.haml b/app/views/projects/snippets/_form.html.haml index 62dd43a1e40..b37bee98f3f 100644 --- a/app/views/projects/snippets/_form.html.haml +++ b/app/views/projects/snippets/_form.html.haml @@ -11,7 +11,7 @@ .form-group = f.label :title - .col-sm-10= f.text_field :title, placeholder: "Example Snippet", class: 'input-xlarge', required: true + .col-sm-10= f.text_field :title, placeholder: "Example Snippet", class: 'input-lg', required: true .form-group = f.label "Lifetime" .col-sm-10= f.select :expires_at, lifetime_select_options, {}, {class: 'chosen span2'} diff --git a/app/views/projects/team_members/import.html.haml b/app/views/projects/team_members/import.html.haml index 953fce66ead..ca7b32d987f 100644 --- a/app/views/projects/team_members/import.html.haml +++ b/app/views/projects/team_members/import.html.haml @@ -6,7 +6,7 @@ = form_tag apply_import_project_team_members_path(@project), method: 'post' do .padded = label_tag :source_project_id, "Project" - .col-sm-10= select_tag(:source_project_id, options_from_collection_for_select(current_user.authorized_projects, :id, :name_with_namespace), prompt: "Select project", class: "chosen xxlarge", required: true) + .col-sm-10= select_tag(:source_project_id, options_from_collection_for_select(current_user.authorized_projects, :id, :name_with_namespace), prompt: "Select project", class: "chosen lg", required: true) .form-actions = submit_tag 'Import project members', class: "btn btn-create" diff --git a/app/views/projects/wikis/_new.html.haml b/app/views/projects/wikis/_new.html.haml index 86fbab0a67f..1d3f22b874d 100644 --- a/app/views/projects/wikis/_new.html.haml +++ b/app/views/projects/wikis/_new.html.haml @@ -5,7 +5,7 @@ .modal-body = label_tag :new_wiki_path do %span Page slug - = text_field_tag :new_wiki_path, nil, placeholder: 'how-to-setup', class: 'input-xlarge', required: true, :'data-wikis-path' => project_wikis_path(@project) + = text_field_tag :new_wiki_path, nil, placeholder: 'how-to-setup', class: 'input-lg', required: true, :'data-wikis-path' => project_wikis_path(@project) %p.hint Please don't use spaces and slashes .modal-footer diff --git a/app/views/projects/wikis/git_access.html.haml b/app/views/projects/wikis/git_access.html.haml index 692eda4e535..84ce77d0eeb 100644 --- a/app/views/projects/wikis/git_access.html.haml +++ b/app/views/projects/wikis/git_access.html.haml @@ -7,7 +7,7 @@ .git-clone-holder %button{class: "btn active", :"data-clone" => @gollum_wiki.ssh_url_to_repo} SSH %button{class: "btn", :"data-clone" => @gollum_wiki.http_url_to_repo}= gitlab_config.protocol.upcase - = text_field_tag :project_clone, @gollum_wiki.url_to_repo, class: "one_click_select input-xxlarge", readonly: true + = text_field_tag :project_clone, @gollum_wiki.url_to_repo, class: "one_click_select input-lg", readonly: true .git-empty %fieldset diff --git a/app/views/search/show.html.haml b/app/views/search/show.html.haml index 0e397df5418..e91e1c3e3ea 100644 --- a/app/views/search/show.html.haml +++ b/app/views/search/show.html.haml @@ -3,7 +3,7 @@ = label_tag :search do %span Looking for .col-sm-10 - = search_field_tag :search, params[:search], placeholder: "issue 143", class: "input-xxlarge search-text-input", id: "dashboard_search" + = search_field_tag :search, params[:search], placeholder: "issue 143", class: "input-lg search-text-input", id: "dashboard_search" = hidden_field_tag :project_id, params[:project_id] = hidden_field_tag :group_id, params[:group_id] = hidden_field_tag :search_code, params[:search_code] diff --git a/app/views/shared/_clone_panel.html.haml b/app/views/shared/_clone_panel.html.haml index 48d6c97ee43..be71236c52c 100644 --- a/app/views/shared/_clone_panel.html.haml +++ b/app/views/shared/_clone_panel.html.haml @@ -1,4 +1,6 @@ .git-clone-holder - %button{class: "btn #{ 'active' if default_clone_protocol == 'ssh' }", :"data-clone" => @project.ssh_url_to_repo} SSH - %button{class: "btn #{ 'active' if default_clone_protocol == 'http' }", :"data-clone" => @project.http_url_to_repo}= gitlab_config.protocol.upcase - = text_field_tag :project_clone, default_url_to_repo, class: "one_click_select span4", readonly: true + .protocol-btns + %button{class: "btn #{ 'active' if default_clone_protocol == 'ssh' }", :"data-clone" => @project.ssh_url_to_repo} SSH + %button{class: "btn #{ 'active' if default_clone_protocol == 'http' }", :"data-clone" => @project.http_url_to_repo}= gitlab_config.protocol.upcase + .protocol-clone + = text_field_tag :project_clone, default_url_to_repo, class: "one_click_select span4", readonly: true diff --git a/app/views/snippets/_form.html.haml b/app/views/snippets/_form.html.haml index 2ec22291d45..1bed2bdc90e 100644 --- a/app/views/snippets/_form.html.haml +++ b/app/views/snippets/_form.html.haml @@ -11,7 +11,7 @@ .form-group = f.label :title - .col-sm-10= f.text_field :title, placeholder: "Example Snippet", class: 'input-xlarge', required: true + .col-sm-10= f.text_field :title, placeholder: "Example Snippet", class: 'input-lg', required: true .form-group = f.label "Access" .col-sm-10 |