ActivityLogTable: use more space, hover texts

This commit is contained in:
Thomas Gelf 2022-02-09 15:43:09 +01:00
parent 4f38557374
commit ecf7bce482
2 changed files with 7 additions and 1 deletions

View File

@ -172,7 +172,10 @@ class ActivityLogTable extends ZfQueryBasedTable
// This can be replaced once we get theme-safe colors for such messages
return Html::tag('div', [
'class' => 'range-comment-container',
], Link::create($this->continueRange ? '' : $range->remark, '#', null, ['class' => 'range-comment']));
], Link::create($this->continueRange ? '' : $range->remark, '#', null, [
'title' => $range->remark,
'class' => 'range-comment'
]));
}
protected function growCurrentRange()

View File

@ -1388,6 +1388,8 @@ table.activity-log {
-ms-overflow-style: none;
overflow-y:auto;
overflow-x:hidden;
text-overflow: ellipsis;
word-break: break-word;
&:hover {
text-decoration: none;
}
@ -1399,6 +1401,7 @@ table.activity-log {
td.comment-cell {
padding: 0;
min-width: 10em;
width: 40%;
position: relative;
&.continuing div.range-comment-container {
border-bottom-left-radius: 0;