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.

76 lines
1.2 KiB

  1. .table {
  2. width: 100%;
  3. max-width: 100%;
  4. border-spacing: 0;
  5. border-collapse: collapse;
  6. th,
  7. td {
  8. padding: 8px;
  9. line-height: 18px;
  10. vertical-align: top;
  11. border-top: 1px solid $ui-base-color;
  12. text-align: left;
  13. }
  14. & > thead > tr > th {
  15. vertical-align: bottom;
  16. border-bottom: 2px solid $ui-base-color;
  17. border-top: 0;
  18. font-weight: 500;
  19. }
  20. & > tbody > tr > th {
  21. font-weight: 500;
  22. }
  23. & > tbody > tr:nth-child(odd) > td,
  24. & > tbody > tr:nth-child(odd) > th {
  25. background: $ui-base-color;
  26. }
  27. a {
  28. color: $ui-highlight-color;
  29. text-decoration: underline;
  30. &:hover {
  31. text-decoration: none;
  32. }
  33. }
  34. strong {
  35. font-weight: 500;
  36. }
  37. &.inline-table > tbody > tr:nth-child(odd) > td,
  38. &.inline-table > tbody > tr:nth-child(odd) > th {
  39. background: transparent;
  40. }
  41. }
  42. .table-wrapper {
  43. overflow: auto;
  44. margin-bottom: 20px;
  45. }
  46. samp {
  47. font-family: 'mastodon-font-monospace', monospace;
  48. }
  49. a.table-action-link {
  50. text-decoration: none;
  51. display: inline-block;
  52. margin-right: 5px;
  53. padding: 0 10px;
  54. color: rgba($primary-text-color, 0.7);
  55. font-weight: 500;
  56. &:hover {
  57. color: $primary-text-color;
  58. }
  59. i.fa {
  60. font-weight: 400;
  61. margin-right: 5px;
  62. }
  63. }