table.less 365 B

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. * Component: Table
  3. * ----------------
  4. */
  5. .table {
  6. //progress bars in tables
  7. tr td .progress {
  8. margin-top: 5px;
  9. }
  10. }
  11. .table.no-border {
  12. &, td, th {
  13. border: 0;
  14. }
  15. }
  16. /* .text-center in tables */
  17. table.text-center {
  18. &, td, th {
  19. text-align: center;
  20. }
  21. }
  22. .table.align {
  23. th {
  24. text-align: left;
  25. }
  26. td {
  27. text-align: right;
  28. }
  29. }