journal: show default cursor on row hover (#47892)

This commit is contained in:
Valentin Deniaud 2021-04-21 14:18:44 +02:00
parent 7eee08d081
commit 5172ff70ee
2 changed files with 5 additions and 1 deletions

View File

@ -2,7 +2,7 @@
<div class="table-container">
{% for event in page %}
{% if forloop.first %}
<table class="main">
<table class="main plaintable">
<thead>
<tr>
<th class="journal-list--timestamp-column">{% trans "Timestamp" %}</th>

View File

@ -269,3 +269,7 @@ span.activity {
background: url(indicator.gif) no-repeat top right;
padding-right: 30px;
}
table.main.plaintable tr:hover td {
cursor: default;
}