diff options
author | zotlabs <mike@macgirvin.com> | 2017-10-11 15:13:57 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-10-11 15:13:57 -0700 |
commit | 48d2b3afa88feefa4718803408e289af6379dffe (patch) | |
tree | 405481302fc6a7b2054c713865d67541cb32b46e /view/tpl/notifications_widget.tpl | |
parent | f273815d8ff45a28b36bd5121c58422dfc28d0ff (diff) | |
parent | 56a675f713f3e971b1c9ccb60ab818f583dfc29e (diff) | |
download | volse-hubzilla-48d2b3afa88feefa4718803408e289af6379dffe.tar.gz volse-hubzilla-48d2b3afa88feefa4718803408e289af6379dffe.tar.bz2 volse-hubzilla-48d2b3afa88feefa4718803408e289af6379dffe.zip |
Merge branch 'dev' of https://github.com/redmatrix/hubzilla into dev_merge
Diffstat (limited to 'view/tpl/notifications_widget.tpl')
-rw-r--r-- | view/tpl/notifications_widget.tpl | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/view/tpl/notifications_widget.tpl b/view/tpl/notifications_widget.tpl index 73cf24071..6865879ad 100644 --- a/view/tpl/notifications_widget.tpl +++ b/view/tpl/notifications_widget.tpl @@ -17,7 +17,7 @@ width: 100%; max-width: 100%; height: 100%; - z-index: 1025; + z-index: 1029; overflow: auto; } @@ -26,6 +26,7 @@ } </style> +{{if $notifications}} <div id="notifications_wrapper"> <div id="notifications" class="navbar-nav" data-children=".nav-item"> <div id="nav-notifications-template" rel="template"> @@ -43,10 +44,14 @@ </a> <div id="nav-{{$notification.type}}-menu" class="collapse notification-content" rel="{{$notification.type}}"> {{if $notification.viewall}} - <a class="list-group-item" id="nav-{{$notification.type}}-see-all" href="{{$notification.viewall.url}}">{{$notification.viewall.label}}</a> + <a class="list-group-item text-dark" id="nav-{{$notification.type}}-see-all" href="{{$notification.viewall.url}}"> + <i class="fa fa-fw fa-external-link"></i> {{$notification.viewall.label}} + </a> {{/if}} {{if $notification.markall}} - <a class="list-group-item" id="nav-{{$notification.type}}-mark-all" href="{{$notification.markall.url}}" onclick="markRead('{{$notification.type}}'); return false;">{{$notification.markall.label}}</a> + <a class="list-group-item text-dark" id="nav-{{$notification.type}}-mark-all" href="{{$notification.markall.url}}" onclick="markRead('{{$notification.type}}'); return false;"> + <i class="fa fa-fw fa-check"></i> {{$notification.markall.label}} + </a> {{/if}} {{$loading}} </div> @@ -54,3 +59,4 @@ {{/foreach}} </div> </div> +{{/if}} |