Commit 7563abbe authored by Riyad Preukschas's avatar Riyad Preukschas

Add 'notes/reversed_notes_with_form' partial

parent e63d7b60
...@@ -10,7 +10,10 @@ ...@@ -10,7 +10,10 @@
padding:0px; 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; border-bottom:1px solid #aaa;
} }
...@@ -48,7 +51,6 @@ ...@@ -48,7 +51,6 @@
.note { .note {
padding: 8px 0; padding: 8px 0;
border-bottom: 1px solid #eee;
overflow: hidden; overflow: hidden;
display: block; display: block;
img {float: left; margin-right: 10px;} img {float: left; margin-right: 10px;}
...@@ -70,6 +72,14 @@ ...@@ -70,6 +72,14 @@
.delete-note { display:block; } .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 { .notes-status {
margin: 18px; margin: 18px;
......
- 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)}");
});
\ No newline at end of file
%div.wall_page %div.wall_page
= render "notes/notes_with_form", tid: nil, tt: "wall" = render "notes/reversed_notes_with_form", tid: nil, tt: "wall"
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment