tables.less 774 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. // Tables
  2. // --------------------------------------------------
  3. .table-footer {
  4. background: darken(@bodyBackground, 8%);
  5. border-top: 1px solid darken(@bodyBackground, 18%);
  6. .border-radius(0px 0px 3px 3px);
  7. margin-top: -20px;
  8. margin-bottom: 20px;
  9. overflow: auto;
  10. padding: 0px 12px;
  11. .form-inline {
  12. margin: 0px;
  13. padding: 6px 0px;
  14. }
  15. }
  16. // Vertically centered table
  17. .table {
  18. td {
  19. vertical-align: middle;
  20. }
  21. }
  22. // Checkbox cell
  23. td, th {
  24. &.check-cell {
  25. width: 32px;
  26. }
  27. .checkbox {
  28. margin-bottom: 0px;
  29. position: relative;
  30. bottom: 1px;
  31. input {
  32. position: relative;
  33. left: 9px;
  34. }
  35. }
  36. }
  37. // Lead cell
  38. td.lead-cell {
  39. color: @gray;
  40. font-weight: bold;
  41. }