Fix snippet form
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
This commit is contained in:
parent
a81002d920
commit
34245ceb99
3 changed files with 8 additions and 19 deletions
|
@ -119,18 +119,6 @@ p.time {
|
|||
margin: 30px 3px 3px 2px;
|
||||
}
|
||||
|
||||
.search-holder {
|
||||
label, input {
|
||||
height: 30px;
|
||||
padding: 0;
|
||||
font-size: 14px;
|
||||
}
|
||||
label {
|
||||
line-height: 30px;
|
||||
color: #666;
|
||||
}
|
||||
}
|
||||
|
||||
.highlight {
|
||||
text-shadow: none;
|
||||
}
|
||||
|
|
|
@ -6,8 +6,9 @@
|
|||
.clearfix
|
||||
.pull-left
|
||||
= form_tag public_projects_path, method: :get, class: 'form-inline form-tiny' do |f|
|
||||
.search-holder
|
||||
= search_field_tag :search, params[:search], placeholder: "Filter by name", class: "span4 search-text-input", id: "projects_search"
|
||||
.form-group
|
||||
= search_field_tag :search, params[:search], placeholder: "Filter by name", class: "form-control search-text-input", id: "projects_search"
|
||||
.form-group
|
||||
= submit_tag 'Search', class: "btn btn-primary wide"
|
||||
|
||||
.pull-right
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
= @snippet.new_record? ? "New Snippet" : "Edit Snippet ##{@snippet.id}"
|
||||
%hr
|
||||
.snippet-form-holder
|
||||
= form_for @snippet, as: :personal_snippet, url: url do |f|
|
||||
= form_for @snippet, as: :personal_snippet, url: url, html: { class: "form-horizontal snippet-form" } do |f|
|
||||
-if @snippet.errors.any?
|
||||
.alert.alert-danger
|
||||
%ul
|
||||
|
@ -10,10 +10,10 @@
|
|||
%li= msg
|
||||
|
||||
.form-group
|
||||
= f.label :title
|
||||
= f.label :title, class: 'control-label'
|
||||
.col-sm-10= f.text_field :title, placeholder: "Example Snippet", class: 'form-control', required: true
|
||||
.form-group
|
||||
= f.label "Access"
|
||||
= f.label "Access", class: 'control-label'
|
||||
.col-sm-10
|
||||
= f.label :private_true, class: 'radio-label' do
|
||||
= f.radio_button :private, true
|
||||
|
@ -29,11 +29,11 @@
|
|||
|
||||
.form-group
|
||||
.file-editor
|
||||
= f.label :file_name, "File"
|
||||
= f.label :file_name, "File", class: 'control-label'
|
||||
.col-sm-10
|
||||
.file-holder.snippet
|
||||
.file-title
|
||||
= f.text_field :file_name, placeholder: "example.rb", class: 'snippet-file-name', required: true
|
||||
= f.text_field :file_name, placeholder: "example.rb", class: 'form-control snippet-file-name', required: true
|
||||
.file-content.code
|
||||
%pre#editor= @snippet.content
|
||||
= f.hidden_field :content, class: 'snippet-file-content'
|
||||
|
|
Loading…
Reference in a new issue