| 123456789101112131415161718192021222324252627282930313233 |
- <span class="ext-name">
- {{ $value }}
- @if($row->homepage)
- <a href='{!! $row->homepage !!}' target='_blank' class="feather icon-chrome"></a>
- @endif
- </span>
- <div style="height: 10px"></div>
- @if($row->version)
- @if($row->enabled)
- {!! $disableAction !!}
- @else
- {!! $enableAction !!}
- @endif
- <span class="hover-display" onclick="$(this).css({display: 'inline'})">
- | {!! $uninstallAction !!}
- </span>
- @endif
- <style>
- .hover-display {
- display:none;
- }
- table tbody tr:hover .hover-display {
- display: inline;
- }
- .ext-name {
- font-size: 1.1rem;
- }
- </style>
|