name.blade.php 687 B

123456789101112131415161718192021222324252627282930313233
  1. <span class="ext-name">
  2. {{ $value }}
  3. @if($row->homepage)
  4. <a href='{!! $row->homepage !!}' target='_blank' class="feather icon-chrome"></a>
  5. @endif
  6. </span>
  7. <div style="height: 10px"></div>
  8. @if($row->version)
  9. @if($row->enabled)
  10. {!! $disableAction !!}
  11. @else
  12. {!! $enableAction !!}
  13. @endif
  14. <span class="hover-display" onclick="$(this).css({display: 'inline'})">
  15. | {!! $uninstallAction !!}
  16. </span>
  17. @endif
  18. <style>
  19. .hover-display {
  20. display:none;
  21. }
  22. table tbody tr:hover .hover-display {
  23. display: inline;
  24. }
  25. .ext-name {
  26. font-size: 1.1rem;
  27. }
  28. </style>