Project show page polished
This commit is contained in:
parent
788de6f1c8
commit
1647f46b1f
|
@ -1010,6 +1010,7 @@ p.time {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.project_box,
|
||||||
.issue_box,
|
.issue_box,
|
||||||
.commit_box,
|
.commit_box,
|
||||||
.merge_request_box{
|
.merge_request_box{
|
||||||
|
@ -1028,8 +1029,8 @@ p.time {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.commit_box {
|
.project_box .project_descr,
|
||||||
.commit_message {
|
.commit_box .commit_message {
|
||||||
margin: -20px;
|
margin: -20px;
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
margin-top:10px;
|
margin-top:10px;
|
||||||
|
@ -1039,7 +1040,6 @@ p.time {
|
||||||
background-color:#f5f5f5;
|
background-color:#f5f5f5;
|
||||||
border:none;
|
border:none;
|
||||||
border-top:1px solid #eee;
|
border-top:1px solid #eee;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.highlight_word {
|
.highlight_word {
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
= render "project_head"
|
= render "project_head"
|
||||||
%h3
|
.project_box
|
||||||
|
%h3
|
||||||
= @project.name
|
= @project.name
|
||||||
%span.right
|
%span.right
|
||||||
- if can? current_user, :download_code, @project
|
- if can? current_user, :download_code, @project
|
||||||
|
@ -10,18 +11,18 @@
|
||||||
- if @project.issues_enabled && can?(current_user, :write_issue, @project)
|
- if @project.issues_enabled && can?(current_user, :write_issue, @project)
|
||||||
= link_to new_project_issue_path(@project), :title => "New Issue", :class => "btn small" do
|
= link_to new_project_issue_path(@project), :title => "New Issue", :class => "btn small" do
|
||||||
Issue
|
Issue
|
||||||
.back_link
|
.back_link
|
||||||
= link_to projects_path do
|
= link_to projects_path do
|
||||||
← To projects list
|
← To projects list
|
||||||
%br
|
%br
|
||||||
.alert-message.block-message.warning
|
.alert-message.block-message.warning
|
||||||
.input
|
.input
|
||||||
.input-prepend
|
.input-prepend
|
||||||
%span.add-on git clone
|
%span.add-on git clone
|
||||||
= text_field_tag :project_clone, @project.url_to_repo, :class => "xlarge one_click_select git_clone_url"
|
= text_field_tag :project_clone, @project.url_to_repo, :class => "xlarge one_click_select git_clone_url"
|
||||||
|
|
||||||
- if @project.description.present?
|
- if @project.description.present?
|
||||||
.markdown.prettyprint= markdown @project.description
|
.markdown.project_descr= markdown @project.description
|
||||||
- unless @events.blank?
|
- unless @events.blank?
|
||||||
%br
|
%br
|
||||||
%h5.cgray
|
%h5.cgray
|
||||||
|
|
Loading…
Reference in a new issue