mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-13 22:59:19 +10:00
Add 'notes/reversed_notes_with_form' partial
This commit is contained in:
@@ -10,7 +10,10 @@
|
||||
padding:0px;
|
||||
}
|
||||
|
||||
#notes-list li:last-child {
|
||||
#new-notes-list:not(.reversed) {
|
||||
border-top:1px solid #aaa;
|
||||
}
|
||||
#new-notes-list.reversed {
|
||||
border-bottom:1px solid #aaa;
|
||||
}
|
||||
|
||||
@@ -48,7 +51,6 @@
|
||||
|
||||
.note {
|
||||
padding: 8px 0;
|
||||
border-bottom: 1px solid #eee;
|
||||
overflow: hidden;
|
||||
display: block;
|
||||
img {float: left; margin-right: 10px;}
|
||||
@@ -70,6 +72,14 @@
|
||||
.delete-note { display:block; }
|
||||
}
|
||||
}
|
||||
#notes-list:not(.reversed) .note,
|
||||
#new-notes-list:not(.reversed) .note {
|
||||
border-bottom: 1px solid #eee;
|
||||
}
|
||||
#notes-list.reversed .note,
|
||||
#new-notes-list.reversed .note {
|
||||
border-top: 1px solid #eee;
|
||||
}
|
||||
|
||||
.notes-status {
|
||||
margin: 18px;
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
- if can? current_user, :write_note, @project
|
||||
= render "notes/common_form"
|
||||
|
||||
%ul.reversed#new-notes-list
|
||||
%ul.reversed#notes-list
|
||||
.notes-status
|
||||
|
||||
:javascript
|
||||
$(function(){
|
||||
NoteList.init("#{tid}", "#{tt}", "#{project_notes_path(@project)}");
|
||||
});
|
||||
@@ -1,2 +1,2 @@
|
||||
%div.wall_page
|
||||
= render "notes/notes_with_form", tid: nil, tt: "wall"
|
||||
= render "notes/reversed_notes_with_form", tid: nil, tt: "wall"
|
||||
|
||||
Reference in New Issue
Block a user