_tables.css.scss 620 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. table {
  2. th {
  3. background: #eee;
  4. font-size: 15px;
  5. }
  6. td {
  7. .checkbox {
  8. margin: 0;
  9. }
  10. }
  11. .action {
  12. text-align: right;
  13. width: 100px;
  14. }
  15. .actions {
  16. text-align: right;
  17. width: 240px;
  18. .btn-danger {
  19. margin-left: 15px;
  20. }
  21. }
  22. }
  23. // Override Bootstrap's default of stripes on odd number columns
  24. .table-striped > tbody > tr:nth-child(odd) > {
  25. td, th {
  26. background-color: white;
  27. }
  28. }
  29. .table-striped > tbody > tr:nth-child(even) > {
  30. td, th {
  31. background-color: #e8eeee;
  32. }
  33. }
  34. .table-striped > tbody > tr:hover > {
  35. td {
  36. background-color: #fafae3;
  37. }
  38. }