Merge branch 'change-notes-order' of https://github.com/riyad/gitlabhq into riyad-change-notes-order

This commit is contained in:
randx 2012-09-15 01:02:58 +03:00
commit caeb65b189
32 changed files with 384 additions and 270 deletions

View file

@ -3,14 +3,17 @@
*
*/
#notes-list,
#new_notes_list {
#new-notes-list {
display:block;
list-style:none;
margin:0px;
padding:0px;
}
#new_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,18 @@
.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;
}
p.notify_controls input{