Commit e3f9bd231b0b071e4586b5134bae99367380a6bf
1 parent
df437f41
Exists in
master
and in
4 other branches
use control-group classes for inline forms in rest pages
Showing
3 changed files
with
3 additions
and
3 deletions
Show diff stats
app/views/projects/team_members/import.html.haml
... | ... | @@ -6,7 +6,7 @@ |
6 | 6 | = form_tag apply_import_project_team_members_path(@project), method: 'post' do |
7 | 7 | .padded |
8 | 8 | = label_tag :source_project_id, "Project" |
9 | - .input= 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) | |
9 | + .controls= 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) | |
10 | 10 | |
11 | 11 | .actions |
12 | 12 | = submit_tag 'Import project members', class: "btn btn-create" | ... | ... |
app/views/public/projects/index.html.haml
... | ... | @@ -7,7 +7,7 @@ |
7 | 7 | .pull-right |
8 | 8 | = form_tag public_projects_path, method: :get, class: 'form-inline' do |f| |
9 | 9 | .search-holder |
10 | - .input | |
10 | + .controls | |
11 | 11 | = search_field_tag :search, params[:search], placeholder: "gitlab-ci", class: "span3 search-text-input", id: "projects_search" |
12 | 12 | = submit_tag 'Search', class: "btn btn-primary wide" |
13 | 13 | ... | ... |
app/views/search/show.html.haml
... | ... | @@ -2,7 +2,7 @@ |
2 | 2 | .search-holder |
3 | 3 | = label_tag :search do |
4 | 4 | %span Looking for |
5 | - .input | |
5 | + .controls | |
6 | 6 | = search_field_tag :search, params[:search], placeholder: "issue 143", class: "input-xxlarge search-text-input", id: "dashboard_search" |
7 | 7 | = hidden_field_tag :project_id, params[:project_id] |
8 | 8 | = hidden_field_tag :group_id, params[:group_id] | ... | ... |