_table.scss 359 B

123456789101112131415161718192021222324
  1. // bs table
  2. .table {
  3. &.b-table {
  4. &.b-table-selectable {
  5. tr {
  6. outline: none;
  7. }
  8. }
  9. > tbody {
  10. .b-table-row-selected {
  11. &.table-active {
  12. td {
  13. background-color: $table-hover-bg;
  14. }
  15. }
  16. }
  17. }
  18. // Reason: Remove outline on focus
  19. th {
  20. outline: none;
  21. }
  22. }
  23. }