aboutsummaryrefslogtreecommitdiffstats
path: root/view
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2017-12-01 21:06:44 +0100
committerMario Vavti <mario@mariovavti.com>2017-12-01 21:06:44 +0100
commit9a04b49585f06b61cbdd31065bee0e3be52ad16a (patch)
treedf4c14e8a0bcf73b26a914378f137a7968adacc6 /view
parentdcad9ce26a0de72ba3ad5b86ddb62298598ac380 (diff)
downloadvolse-hubzilla-9a04b49585f06b61cbdd31065bee0e3be52ad16a.tar.gz
volse-hubzilla-9a04b49585f06b61cbdd31065bee0e3be52ad16a.tar.bz2
volse-hubzilla-9a04b49585f06b61cbdd31065bee0e3be52ad16a.zip
add a cursor-pointer class
Diffstat (limited to 'view')
-rw-r--r--view/theme/redbasic/css/style.css3
-rw-r--r--view/tpl/notifications_widget.tpl4
2 files changed, 4 insertions, 3 deletions
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css
index 38b01a16f..33536dee4 100644
--- a/view/theme/redbasic/css/style.css
+++ b/view/theme/redbasic/css/style.css
@@ -113,7 +113,8 @@ a:focus,
color: $link_colour;
}
-.fakelink {
+.fakelink,
+.cursor-pointer {
cursor: pointer;
}
diff --git a/view/tpl/notifications_widget.tpl b/view/tpl/notifications_widget.tpl
index 90f03faf0..9751f2e75 100644
--- a/view/tpl/notifications_widget.tpl
+++ b/view/tpl/notifications_widget.tpl
@@ -101,12 +101,12 @@
</a>
{{/if}}
{{if $notification.markall}}
- <div class="list-group-item" id="nav-{{$notification.type}}-mark-all" onclick="markRead('{{$notification.type}}'); return false;">
+ <div class="list-group-item cursor-pointer" id="nav-{{$notification.type}}-mark-all" onclick="markRead('{{$notification.type}}'); return false;">
<i class="fa fa-fw fa-check"></i> {{$notification.markall.label}}
</div>
{{/if}}
{{if $notification.filter}}
- <div class="list-group-item" id="tt-{{$notification.type}}-only">
+ <div class="list-group-item cursor-pointer" id="tt-{{$notification.type}}-only">
<i class="fa fa-fw fa-filter"></i> {{$notification.filter.label}}
</div>
{{/if}}