issue search styleup
This commit is contained in:
parent
7d773ecb40
commit
fb01f45890
3 changed files with 49 additions and 30 deletions
|
@ -681,3 +681,20 @@ tbody tr:nth-child(2n) td, tbody tr.even td {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.top_panel_issues{
|
||||||
|
#issue_search_form {
|
||||||
|
margin:5px 0;
|
||||||
|
input {
|
||||||
|
border:1px solid #D3D3D3;
|
||||||
|
padding: 3px;
|
||||||
|
height: 20px;
|
||||||
|
width: 300px;
|
||||||
|
|
||||||
|
&:focus {
|
||||||
|
border-color:#c2e1ef;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,25 +1,26 @@
|
||||||
%div
|
%div
|
||||||
- if can? current_user, :write_issue, @project
|
.top_panel_issues
|
||||||
.left
|
- if can? current_user, :write_issue, @project
|
||||||
= form_tag search_project_issues_path(@project), :method => :get, :remote => true do
|
%div{:class => "left", :style => "margin-right: 10px;" }
|
||||||
= hidden_field_tag :project_id, @project.id, { :id => 'project_id' }
|
= link_to 'New Issue', new_project_issue_path(@project), :remote => true, :class => "lbutton vm"
|
||||||
= search_field_tag :issue_search, nil, { :placeholder => 'Search', :class => 'issue_search' }
|
= form_tag search_project_issues_path(@project), :method => :get, :remote => true, :class => :left, :id => "issue_search_form" do
|
||||||
= link_to 'New Issue', new_project_issue_path(@project), :remote => true, :class => "lbutton vm"
|
= hidden_field_tag :project_id, @project.id, { :id => 'project_id' }
|
||||||
|
= search_field_tag :issue_search, nil, { :placeholder => 'Search', :class => 'issue_search' }
|
||||||
.right
|
|
||||||
= form_tag project_issues_path(@project), :method => :get do
|
.right
|
||||||
.span-2
|
= form_tag project_issues_path(@project), :method => :get do
|
||||||
= radio_button_tag :f, 0, (params[:f] || "0") == "0", :onclick => "this.form.submit()", :id => "open_issues", :class => "status"
|
.span-2
|
||||||
= label_tag "open_issues","Open"
|
= radio_button_tag :f, 0, (params[:f] || "0") == "0", :onclick => "this.form.submit()", :id => "open_issues", :class => "status"
|
||||||
.span-2
|
= label_tag "open_issues","Open"
|
||||||
= radio_button_tag :f, 2, params[:f] == "2", :onclick => "this.form.submit()", :id => "closed_issues", :class => "status"
|
.span-2
|
||||||
= label_tag "closed_issues","Closed"
|
= radio_button_tag :f, 2, params[:f] == "2", :onclick => "this.form.submit()", :id => "closed_issues", :class => "status"
|
||||||
.span-2
|
= label_tag "closed_issues","Closed"
|
||||||
= radio_button_tag :f, 3, params[:f] == "3", :onclick => "this.form.submit()", :id => "my_issues", :class => "status"
|
.span-2
|
||||||
= label_tag "my_issues","To Me"
|
= radio_button_tag :f, 3, params[:f] == "3", :onclick => "this.form.submit()", :id => "my_issues", :class => "status"
|
||||||
.span-2
|
= label_tag "my_issues","To Me"
|
||||||
= radio_button_tag :f, 1, params[:f] == "1", :onclick => "this.form.submit()", :id => "all_issues", :class => "status"
|
.span-2
|
||||||
= label_tag "all_issues","All"
|
= radio_button_tag :f, 1, params[:f] == "1", :onclick => "this.form.submit()", :id => "all_issues", :class => "status"
|
||||||
|
= label_tag "all_issues","All"
|
||||||
|
|
||||||
#issues-table-holder= render "issues"
|
#issues-table-holder= render "issues"
|
||||||
%br
|
%br
|
||||||
|
|
|
@ -4,9 +4,8 @@
|
||||||
# Ensure the SQLite 3 gem is defined in your Gemfile
|
# Ensure the SQLite 3 gem is defined in your Gemfile
|
||||||
# gem 'sqlite3'
|
# gem 'sqlite3'
|
||||||
development:
|
development:
|
||||||
adapter: mysql2
|
adapter: sqlite3
|
||||||
database: gitlab_development
|
database: db/development.sqlite3
|
||||||
username: root
|
|
||||||
pool: 5
|
pool: 5
|
||||||
timeout: 5000
|
timeout: 5000
|
||||||
|
|
||||||
|
@ -14,11 +13,13 @@ development:
|
||||||
# re-generated from your development database when you run "rake".
|
# re-generated from your development database when you run "rake".
|
||||||
# Do not set this db to the same as development or production.
|
# Do not set this db to the same as development or production.
|
||||||
test:
|
test:
|
||||||
adapter: mysql2
|
adapter: sqlite3
|
||||||
database: gitlab_development
|
database: db/test.sqlite3
|
||||||
username: root
|
pool: 5
|
||||||
|
timeout: 5000
|
||||||
|
|
||||||
production:
|
production:
|
||||||
adatper: mysql2
|
adapter: sqlite3
|
||||||
database: gitlab_test
|
database: db/production.sqlite3
|
||||||
username: root
|
pool: 5
|
||||||
|
timeout: 5000
|
||||||
|
|
Loading…
Reference in a new issue