tooltip feature is finalized for widgets
This commit is contained in:
parent
be212a9847
commit
7afc34ef11
@ -3,15 +3,7 @@
|
|||||||
<div class="row align-items-center">
|
<div class="row align-items-center">
|
||||||
|
|
||||||
<div class="col-10 text-nowrap">
|
<div class="col-10 text-nowrap">
|
||||||
<h4 class="mb-0 long-texts">
|
<h4 class="mb-0 long-texts" title="{{ $class->model->name }}">{{ $class->model->name }}</h4>
|
||||||
<el-tooltip
|
|
||||||
content="{{ $class->model->name }}"
|
|
||||||
effect="dark"
|
|
||||||
:open-delay="100"
|
|
||||||
placement="top">
|
|
||||||
<span>{{ $class->model->name }}</span>
|
|
||||||
</el-tooltip>
|
|
||||||
</h4>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="col-2 hidden-sm">
|
<div class="col-2 hidden-sm">
|
||||||
|
@ -17,15 +17,7 @@
|
|||||||
@foreach($transactions as $item)
|
@foreach($transactions as $item)
|
||||||
<tr class="row border-top-1 tr-py">
|
<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">@date($item->paid_at)</td>
|
||||||
<td class="col-xs-4 col-md-4 text-left long-texts">
|
<td class="col-xs-4 col-md-4 text-left long-texts" title="{{ $item->category->name }}">{{ $item->category->name }}</td>
|
||||||
<el-tooltip
|
|
||||||
content="{{ $item->category->name }}"
|
|
||||||
effect="dark"
|
|
||||||
:open-delay="100"
|
|
||||||
placement="top">
|
|
||||||
<span>{{ $item->category->name }}</span>
|
|
||||||
</el-tooltip>
|
|
||||||
</td>
|
|
||||||
<td class="col-xs-4 col-md-4 text-right">@money($item->amount, $item->currency_code, true)</td>
|
<td class="col-xs-4 col-md-4 text-right">@money($item->amount, $item->currency_code, true)</td>
|
||||||
</tr>
|
</tr>
|
||||||
@endforeach
|
@endforeach
|
||||||
|
@ -17,15 +17,7 @@
|
|||||||
@foreach($transactions as $item)
|
@foreach($transactions as $item)
|
||||||
<tr class="row border-top-1 tr-py">
|
<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">@date($item->paid_at)</td>
|
||||||
<td class="col-xs-4 col-md-4 text-left long-texts">
|
<td class="col-xs-4 col-md-4 text-left long-texts" title="{{ $item->category->name }}">{{ $item->category->name }}</td>
|
||||||
<el-tooltip
|
|
||||||
content="{{ $item->category->name }}"
|
|
||||||
effect="dark"
|
|
||||||
:open-delay="100"
|
|
||||||
placement="top">
|
|
||||||
<span>{{ $item->category->name }}</span>
|
|
||||||
</el-tooltip>
|
|
||||||
</td>
|
|
||||||
<td class="col-xs-4 col-md-4 text-right">@money($item->amount, $item->currency_code, true)</td>
|
<td class="col-xs-4 col-md-4 text-right">@money($item->amount, $item->currency_code, true)</td>
|
||||||
</tr>
|
</tr>
|
||||||
@endforeach
|
@endforeach
|
||||||
|
Loading…
x
Reference in New Issue
Block a user