let date looks nice

This commit is contained in:
Diaspora Europe 2012-03-15 16:43:46 +01:00
parent fe65058624
commit 563e94b804
2 changed files with 12 additions and 3 deletions

View file

@ -8,7 +8,8 @@
- @group_days.each do |day, notes| - @group_days.each do |day, notes|
%li %li
.notification_day_header .notification_day_header
= day %span.label
= day
%ul.notifications_for_day %ul.notifications_for_day
- notes.each do |note| - notes.each do |note|
.stream_element{:data=>{:guid => note.id}, :class => "#{note.unread ? 'unread' : ''}"} .stream_element{:data=>{:guid => note.id}, :class => "#{note.unread ? 'unread' : ''}"}

View file

@ -601,9 +601,17 @@ select {
.navbar-fixed-top { .navbar-fixed-top {
position: fixed !important; position: fixed !important;
max-height: 45px !important; max-height: 45px !important;
min-height: 45px !important; min-height: 45px !important;
height: 45px !important; height: 45px !important;
overflow: hidden; overflow: hidden;
} }
.notifications {
list-style: none;
}
.notification_day_header {
margin-bottom: 5px;
}