You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

91 lines
1.6 KiB

  1. .table
  2. background-color: $white
  3. color: $text-strong
  4. margin-bottom: 20px
  5. width: 100%
  6. td,
  7. th
  8. border: 1px solid $border
  9. border-width: 0 0 1px
  10. padding: 8px 10px
  11. vertical-align: top
  12. // Modifiers
  13. &.is-icon
  14. padding: 5px
  15. text-align: center
  16. white-space: nowrap
  17. width: 1%
  18. .fa
  19. +fa(21px, 24px)
  20. &.is-link
  21. padding: 0
  22. & > a
  23. padding: 5px
  24. &.is-link
  25. padding: 0
  26. & > a
  27. display: block
  28. padding: 8px 10px
  29. &:hover
  30. background-color: $link
  31. color: $link-invert
  32. &.is-narrow
  33. white-space: nowrap
  34. width: 1%
  35. th
  36. color: $text-strong
  37. text-align: left
  38. tr
  39. &:hover
  40. background-color: $background
  41. color: $text-strong
  42. thead
  43. td,
  44. th
  45. border-width: 0 0 2px
  46. color: $text-light
  47. tbody
  48. tr
  49. &:last-child
  50. td,
  51. th
  52. border-bottom-width: 0
  53. tfoot
  54. td,
  55. th
  56. border-width: 2px 0 0
  57. color: $text-light
  58. // Modifiers
  59. &.is-bordered
  60. td,
  61. th
  62. border-width: 1px
  63. tr
  64. &:last-child
  65. td,
  66. th
  67. border-bottom-width: 1px
  68. &.is-narrow
  69. td,
  70. th
  71. padding: 5px 10px
  72. // Modifiers
  73. &.is-icon
  74. padding: 2px
  75. &.is-link
  76. padding: 0
  77. & > a
  78. padding: 2px
  79. &.is-link
  80. padding: 0
  81. & > a
  82. padding: 5px 10px
  83. &.is-striped
  84. tbody
  85. tr
  86. &:hover
  87. background-color: darken($background, 2%)
  88. &:nth-child(2n)
  89. background-color: $background
  90. &:hover
  91. background-color: darken($background, 2%)