fix inline forms
This commit is contained in:
parent
4b2e151fc6
commit
e2f19befbc
6 changed files with 6 additions and 5 deletions
|
@ -35,6 +35,7 @@
|
||||||
.btn {
|
.btn {
|
||||||
padding:6px;
|
padding:6px;
|
||||||
margin-left:10px;
|
margin-left:10px;
|
||||||
|
margin-bottom:8px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
Read more about system hooks
|
Read more about system hooks
|
||||||
%strong #{link_to "here", help_system_hooks_path, class: "vlink"}
|
%strong #{link_to "here", help_system_hooks_path, class: "vlink"}
|
||||||
|
|
||||||
= form_for @hook, as: :hook, url: admin_hooks_path do |f|
|
= form_for @hook, as: :hook, url: admin_hooks_path, html: { class: 'form-inline' } do |f|
|
||||||
-if @hook.errors.any?
|
-if @hook.errors.any?
|
||||||
.alert-message.block-message.error
|
.alert-message.block-message.error
|
||||||
- @hook.errors.full_messages.each do |msg|
|
- @hook.errors.full_messages.each do |msg|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
Projects
|
Projects
|
||||||
= link_to 'New Project', new_admin_project_path, class: "btn small right"
|
= link_to 'New Project', new_admin_project_path, class: "btn small right"
|
||||||
%br
|
%br
|
||||||
= form_tag admin_projects_path, method: :get do
|
= form_tag admin_projects_path, method: :get, class: 'form-inline' do
|
||||||
= text_field_tag :name, params[:name], class: "xlarge"
|
= text_field_tag :name, params[:name], class: "xlarge"
|
||||||
= submit_tag "Search", class: "btn submit primary"
|
= submit_tag "Search", class: "btn submit primary"
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
= link_to 'New User', new_admin_user_path, class: "btn small right"
|
= link_to 'New User', new_admin_user_path, class: "btn small right"
|
||||||
%br
|
%br
|
||||||
|
|
||||||
= form_tag admin_users_path, method: :get do
|
= form_tag admin_users_path, method: :get, class: 'form-inline' do
|
||||||
= text_field_tag :name, params[:name], class: "xlarge"
|
= text_field_tag :name, params[:name], class: "xlarge"
|
||||||
= submit_tag "Search", class: "btn submit primary"
|
= submit_tag "Search", class: "btn submit primary"
|
||||||
%ul.nav.nav-pills
|
%ul.nav.nav-pills
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
Read more about web hooks
|
Read more about web hooks
|
||||||
%strong #{link_to "here", help_web_hooks_path, class: "vlink"}
|
%strong #{link_to "here", help_web_hooks_path, class: "vlink"}
|
||||||
|
|
||||||
= form_for [@project, @hook], as: :hook, url: project_hooks_path(@project) do |f|
|
= form_for [@project, @hook], as: :hook, url: project_hooks_path(@project), html: { class: 'form-inline' } do |f|
|
||||||
-if @hook.errors.any?
|
-if @hook.errors.any?
|
||||||
.alert-message.block-message.error
|
.alert-message.block-message.error
|
||||||
- @hook.errors.full_messages.each do |msg|
|
- @hook.errors.full_messages.each do |msg|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
= form_tag search_path, method: :get do |f|
|
= form_tag search_path, method: :get, class: 'form-inline' do |f|
|
||||||
.padded
|
.padded
|
||||||
= label_tag :search do
|
= label_tag :search do
|
||||||
%strong Looking for
|
%strong Looking for
|
||||||
|
|
Loading…
Add table
Reference in a new issue