Merge pull request #1528 from SevanNerse/dev
tooltip feature is added to some reports and widgets
This commit is contained in:
commit
0467a9f49d
@ -1,6 +1,6 @@
|
||||
@if ($row_total = array_sum($rows))
|
||||
<tr class="row rp-border-top-1 font-size-unset">
|
||||
<td class="{{ $class->column_name_width }} long-texts pr-0">{{ $class->row_names[$table][$id] }}</td>
|
||||
<td class="{{ $class->column_name_width }} long-texts pr-0" title="{{ $class->row_names[$table][$id] }}">{{ $class->row_names[$table][$id] }}</td>
|
||||
@foreach($rows as $row)
|
||||
<td class="{{ $class->column_value_width }} text-right px-0">@money($row, setting('default.currency'), true)</td>
|
||||
@endforeach
|
||||
|
@ -3,7 +3,7 @@
|
||||
<div class="row align-items-center">
|
||||
|
||||
<div class="col-10 text-nowrap">
|
||||
<h4 class="mb-0 long-texts">{{ $class->model->name }}</h4>
|
||||
<h4 class="mb-0 long-texts" title="{{ $class->model->name }}">{{ $class->model->name }}</h4>
|
||||
</div>
|
||||
|
||||
<div class="col-2 hidden-sm">
|
||||
|
@ -17,7 +17,7 @@
|
||||
@foreach($transactions as $item)
|
||||
<tr class="row border-top-1 tr-py">
|
||||
<td class="col-xs-4 col-md-4 text-left">@date($item->paid_at)</td>
|
||||
<td class="col-xs-4 col-md-4 text-left long-texts">{{ $item->category->name }}</td>
|
||||
<td class="col-xs-4 col-md-4 text-left long-texts" title="{{ $item->category->name }}">{{ $item->category->name }}</td>
|
||||
<td class="col-xs-4 col-md-4 text-right">@money($item->amount, $item->currency_code, true)</td>
|
||||
</tr>
|
||||
@endforeach
|
||||
|
@ -17,7 +17,7 @@
|
||||
@foreach($transactions as $item)
|
||||
<tr class="row border-top-1 tr-py">
|
||||
<td class="col-xs-4 col-md-4 text-left">@date($item->paid_at)</td>
|
||||
<td class="col-xs-4 col-md-4 text-left long-texts">{{ $item->category->name }}</td>
|
||||
<td class="col-xs-4 col-md-4 text-left long-texts" title="{{ $item->category->name }}">{{ $item->category->name }}</td>
|
||||
<td class="col-xs-4 col-md-4 text-right">@money($item->amount, $item->currency_code, true)</td>
|
||||
</tr>
|
||||
@endforeach
|
||||
|
Loading…
x
Reference in New Issue
Block a user