64 lines
1.9 KiB
Smarty
64 lines
1.9 KiB
Smarty
<style>
|
|
#notifications {
|
|
position: fixed;
|
|
top: 4.5rem;
|
|
width: 266px;
|
|
padding: 0 .5rem;
|
|
}
|
|
|
|
.notification-content {
|
|
max-height: 50vh;
|
|
overflow: auto;
|
|
}
|
|
|
|
.notification-content.collapsing {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.fs {
|
|
position: fixed;
|
|
top: 0px;
|
|
left: 0px;
|
|
display: block !important;
|
|
background-color: white;
|
|
width: 100%;
|
|
max-width: 100%;
|
|
height: 100vh;
|
|
z-index: 1020;
|
|
}
|
|
|
|
.fs #notifications {
|
|
position: relative;
|
|
width: 100%;
|
|
top: 0px;
|
|
}
|
|
</style>
|
|
|
|
<div id="nav-notifications-template" rel="template">
|
|
<a class="dropdown-item clearfix dropdown-notification {5}" href="{0}" title="{2} {3}">
|
|
<img class="menu-img-3" data-src="{1}">
|
|
<span class="contactname">{2}</span>
|
|
<span class="dropdown-sub-text">{3}<br>{4}</span>
|
|
</a>
|
|
</div>
|
|
|
|
<div id="notifications" class="navbar-nav" data-children=".nav-item">
|
|
{{foreach $notifications as $notification}}
|
|
<div class="collapse {{$notification.type}}-button">
|
|
<a class="list-group-item" href="#nav-{{$notification.type}}-menu" title="{{$notification.title}}" data-toggle="collapse" data-parent="#notifications" rel="#nav-{{$notification.type}}-menu">
|
|
<i class="fa fa-fw fa-{{$notification.icon}}"></i> {{$notification.label}}
|
|
<span class="float-right badge badge-{{$notification.severity}} {{$notification.type}}-update"></span>
|
|
</a>
|
|
<div id="nav-{{$notification.type}}-menu" class="collapse notification-content" rel="{{$notification.type}}">
|
|
{{if $notification.viewall}}
|
|
<a class="dropdown-item" id="nav-{{$notification.type}}-see-all" href="{{$notification.viewall.url}}">{{$notification.viewall.label}}</a>
|
|
{{/if}}
|
|
{{if $notification.markall}}
|
|
<a class="dropdown-item" id="nav-{{$notification.type}}-mark-all" href="{{$notification.markall.url}}" onclick="markRead('{{$notification.type}}'); return false;">{{$notification.markall.label}}</a>
|
|
{{/if}}
|
|
{{$loading}}
|
|
</div>
|
|
</div>
|
|
{{/foreach}}
|
|
</div>
|