rowlink.less 386 B

1234567891011121314151617181920212223
  1. // Rowlink
  2. // --------------------------------------------------
  3. .table.rowlink,
  4. .table .rowlink {
  5. td:not(.rowlink-skip) {
  6. cursor: pointer;
  7. a {
  8. color: inherit;
  9. font: inherit;
  10. text-decoration: inherit;
  11. }
  12. }
  13. }
  14. .table-hover.rowlink,
  15. .table-hover .rowlink {
  16. tr:hover td {
  17. background-color: darken(@table-bg-hover, 15%);
  18. }
  19. }