You are here

tables.css in Open Social 8.5

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #c3e7f7;
}

.table-hover .table-primary:hover {
  background-color: #addef4;
}

.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: #addef4;
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: #c0dbe7;
}

.table-hover .table-secondary:hover {
  background-color: #aed0e0;
}

.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: #aed0e0;
}

.table-accent,
.table-accent > th,
.table-accent > td {
  background-color: #ffeeca;
}

.table-hover .table-accent:hover {
  background-color: #ffe6b1;
}

.table-hover .table-accent:hover > td,
.table-hover .table-accent:hover > th {
  background-color: #ffe6b1;
}

.table-success,
.table-success > th,
.table-success > td {
  background-color: #d1ebd1;
}

.table-hover .table-success:hover {
  background-color: #bfe3bf;
}

.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: #bfe3bf;
}

.table-info,
.table-info > th,
.table-info > td {
  background-color: #c6eaf8;
}

.table-hover .table-info:hover {
  background-color: #afe2f5;
}

.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: #afe2f5;
}

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: #ffdeb8;
}

.table-hover .table-warning:hover {
  background-color: #ffd29f;
}

.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: #ffd29f;
}

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: #f4cfce;
}

.table-hover .table-danger:hover {
  background-color: #efbbb9;
}

.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: #efbbb9;
}

.table-light,
.table-light > th,
.table-light > td {
  background-color: #f8f8f8;
}

.table-hover .table-light:hover {
  background-color: #ebebeb;
}

.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: #ebebeb;
}

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: #c6c6c6;
}

.table-hover .table-dark:hover {
  background-color: #b9b9b9;
}

.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: #b9b9b9;
}

.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}

.table .table {
  background-color: #f3f3f3;
}

.table th a {
  color: #1d789e;
}

.table th.is-active > a {
  color: #29abe2;
}

.table .icon-tablesort {
  fill: #29abe2;
}

File

themes/socialblue/assets/css/tables.css
View source
  1. .table-primary,
  2. .table-primary > th,
  3. .table-primary > td {
  4. background-color: #c3e7f7;
  5. }
  6. .table-hover .table-primary:hover {
  7. background-color: #addef4;
  8. }
  9. .table-hover .table-primary:hover > td,
  10. .table-hover .table-primary:hover > th {
  11. background-color: #addef4;
  12. }
  13. .table-secondary,
  14. .table-secondary > th,
  15. .table-secondary > td {
  16. background-color: #c0dbe7;
  17. }
  18. .table-hover .table-secondary:hover {
  19. background-color: #aed0e0;
  20. }
  21. .table-hover .table-secondary:hover > td,
  22. .table-hover .table-secondary:hover > th {
  23. background-color: #aed0e0;
  24. }
  25. .table-accent,
  26. .table-accent > th,
  27. .table-accent > td {
  28. background-color: #ffeeca;
  29. }
  30. .table-hover .table-accent:hover {
  31. background-color: #ffe6b1;
  32. }
  33. .table-hover .table-accent:hover > td,
  34. .table-hover .table-accent:hover > th {
  35. background-color: #ffe6b1;
  36. }
  37. .table-success,
  38. .table-success > th,
  39. .table-success > td {
  40. background-color: #d1ebd1;
  41. }
  42. .table-hover .table-success:hover {
  43. background-color: #bfe3bf;
  44. }
  45. .table-hover .table-success:hover > td,
  46. .table-hover .table-success:hover > th {
  47. background-color: #bfe3bf;
  48. }
  49. .table-info,
  50. .table-info > th,
  51. .table-info > td {
  52. background-color: #c6eaf8;
  53. }
  54. .table-hover .table-info:hover {
  55. background-color: #afe2f5;
  56. }
  57. .table-hover .table-info:hover > td,
  58. .table-hover .table-info:hover > th {
  59. background-color: #afe2f5;
  60. }
  61. .table-warning,
  62. .table-warning > th,
  63. .table-warning > td {
  64. background-color: #ffdeb8;
  65. }
  66. .table-hover .table-warning:hover {
  67. background-color: #ffd29f;
  68. }
  69. .table-hover .table-warning:hover > td,
  70. .table-hover .table-warning:hover > th {
  71. background-color: #ffd29f;
  72. }
  73. .table-danger,
  74. .table-danger > th,
  75. .table-danger > td {
  76. background-color: #f4cfce;
  77. }
  78. .table-hover .table-danger:hover {
  79. background-color: #efbbb9;
  80. }
  81. .table-hover .table-danger:hover > td,
  82. .table-hover .table-danger:hover > th {
  83. background-color: #efbbb9;
  84. }
  85. .table-light,
  86. .table-light > th,
  87. .table-light > td {
  88. background-color: #f8f8f8;
  89. }
  90. .table-hover .table-light:hover {
  91. background-color: #ebebeb;
  92. }
  93. .table-hover .table-light:hover > td,
  94. .table-hover .table-light:hover > th {
  95. background-color: #ebebeb;
  96. }
  97. .table-dark,
  98. .table-dark > th,
  99. .table-dark > td {
  100. background-color: #c6c6c6;
  101. }
  102. .table-hover .table-dark:hover {
  103. background-color: #b9b9b9;
  104. }
  105. .table-hover .table-dark:hover > td,
  106. .table-hover .table-dark:hover > th {
  107. background-color: #b9b9b9;
  108. }
  109. .table-active,
  110. .table-active > th,
  111. .table-active > td {
  112. background-color: rgba(0, 0, 0, 0.075);
  113. }
  114. .table-hover .table-active:hover {
  115. background-color: rgba(0, 0, 0, 0.075);
  116. }
  117. .table-hover .table-active:hover > td,
  118. .table-hover .table-active:hover > th {
  119. background-color: rgba(0, 0, 0, 0.075);
  120. }
  121. .table .table {
  122. background-color: #f3f3f3;
  123. }
  124. .table th a {
  125. color: #1d789e;
  126. }
  127. .table th.is-active > a {
  128. color: #29abe2;
  129. }
  130. .table .icon-tablesort {
  131. fill: #29abe2;
  132. }