mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-28 01:36:33 +08:00
added assignment image
This commit is contained in:
parent
e1a1b93d44
commit
60a503f115
2 changed files with 29 additions and 7 deletions
|
@ -79,16 +79,16 @@ table {
|
|||
|
||||
#count-notifications {
|
||||
background-color: $color-theme-primary;
|
||||
border-radius: 5px;
|
||||
color: $color-wild-sand;
|
||||
font-size: 12px;
|
||||
font-weight: bold;
|
||||
z-index: 999999;
|
||||
position: fixed;
|
||||
margin-top: -10px;
|
||||
margin-left: 10px;
|
||||
margin-top: -10px;
|
||||
padding-left: 4px;
|
||||
padding-right: 4px;
|
||||
border-radius: 5px;
|
||||
position: fixed;
|
||||
z-index: 999999;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -99,11 +99,26 @@ table {
|
|||
margin-top: 10px !important;
|
||||
}
|
||||
}
|
||||
|
||||
.dropdown-notifications {
|
||||
min-width: 450px;
|
||||
padding-bottom: 0;
|
||||
padding-top: 0;
|
||||
|
||||
.notification {
|
||||
border-bottom: 1px solid $color-alto;
|
||||
padding-bottom: 10px;
|
||||
padding-top: 10px;
|
||||
}
|
||||
|
||||
.text-center {
|
||||
padding-top: 10px;
|
||||
}
|
||||
|
||||
.assignment {
|
||||
|
||||
}
|
||||
|
||||
.notifications-dropdown-header {
|
||||
background-color: $color-theme-primary;
|
||||
color: $color-wild-sand;
|
||||
|
|
|
@ -2,13 +2,20 @@
|
|||
<li class="notification">
|
||||
<div class="row">
|
||||
<div class="col-md-3">
|
||||
<% byebug %>
|
||||
<% if notification.type_of == :assignment %>
|
||||
<% if notification.type_of == 'recent_changes' %>
|
||||
<div class="text-center">
|
||||
<%= image_tag avatar_path(notification.generator_user, :icon_small), class: "avatar" %>
|
||||
</div>
|
||||
<% end %>
|
||||
<% if notification.type_of == 'assignment' %>
|
||||
<div class="text-center">
|
||||
<span class="assignment"><%= fa_icon 'newspaper-o' %></span>
|
||||
</div>
|
||||
<% end %>
|
||||
</div>
|
||||
<div class="col-md-9">
|
||||
<strong><%= notification.title %></strong> <br> <%= notification.message %></
|
||||
<strong><%= notification.title %></strong> <br>
|
||||
<%= l(notification.created_at, format: :full) %> | <%= notification.message %>
|
||||
</div>
|
||||
</div>
|
||||
<li>
|
||||
|
|
Loading…
Reference in a new issue