let date looks nice
This commit is contained in:
parent
fe65058624
commit
563e94b804
2 changed files with 12 additions and 3 deletions
|
|
@ -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' : ''}"}
|
||||||
|
|
|
||||||
|
|
@ -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;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue