_tables.scss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. table {
  2. @extend .table;
  3. max-width: 100% !important;
  4. > thead > tr,
  5. > tbody > tr {
  6. > th, > td {
  7. //max-width: 0;
  8. overflow: hidden;
  9. text-overflow: ellipsis;
  10. }
  11. }
  12. > tr {
  13. > th, > td {
  14. //max-width: 0;
  15. overflow: hidden;
  16. text-overflow: ellipsis;
  17. }
  18. }
  19. .tripal-contents-table-td {
  20. white-space: nowrap;
  21. }
  22. &.tripal-organism-data-table {
  23. th {
  24. min-width: 10px;
  25. }
  26. }
  27. .form-control,
  28. .form-group {
  29. display: inline-block;
  30. }
  31. }
  32. td.views-field.extra-short-column,
  33. th.views-field.extra-short-column {
  34. width: 25px;
  35. word-wrap: normal;
  36. }
  37. td.views-field.short-column,
  38. th.views-field.short-column {
  39. width: 75px;
  40. word-wrap: normal;
  41. }
  42. .table-valign-middle {
  43. > tbody > tr > td,
  44. > tbody > tr > th,
  45. > thead > tr > th {
  46. vertical-align: middle;
  47. }
  48. }
  49. .table tr.no-border {
  50. > td,
  51. > th {
  52. border: 0;
  53. }
  54. }
  55. .tripal-data-pane {
  56. overflow-x: auto;
  57. }
  58. td.views-ui-path {
  59. max-width: 100px;
  60. overflow: hidden;
  61. text-overflow: ellipsis;
  62. white-space: nowrap;
  63. }
  64. .download-td {
  65. font-size: 40px;
  66. width: 45px;
  67. }
  68. #menu-overview {
  69. @extend .table-sm;
  70. td, th {
  71. vertical-align: middle;
  72. }
  73. }
  74. .action-links {
  75. @extend .nav;
  76. @extend .nav-pills;
  77. @extend .flex-column;
  78. @extend .flex-sm-row;
  79. > li {
  80. @extend .nav-item;
  81. > a {
  82. @extend .nav-link;
  83. }
  84. }
  85. }
  86. tr.error {
  87. background-color: $state-danger-bg;
  88. }
  89. tr.warning {
  90. background: $state-warning-bg;
  91. }
  92. .sticky-header th {
  93. background-color: #fff;
  94. }
  95. #elasticsearch_hits_table th {
  96. white-space: nowrap;
  97. img {
  98. margin-left: 5px;
  99. }
  100. }
  101. table.table {
  102. table-layout: auto !important;
  103. }
  104. #page-wrapper {
  105. overflow-x: hidden;
  106. }
  107. .indentation {
  108. display: inline-block !important;
  109. margin-right: 20px;
  110. }
  111. .main-content-wrapper {
  112. overflow-x: auto;
  113. width: 100%;
  114. }
  115. a.tabledrag-handle {
  116. cursor: move !important;
  117. ~ .form-group {
  118. display: inline-block;
  119. width: 70%;
  120. }
  121. }
  122. .table > thead > tr > th > a {
  123. white-space: nowrap !important;
  124. > img {
  125. margin-left: 10px;
  126. }
  127. }
  128. .table td,
  129. .table th {
  130. p:empty {
  131. display: none;
  132. }
  133. }
  134. .table td table,
  135. .table th table {
  136. margin: 0;
  137. th,
  138. td {
  139. padding: 0;
  140. }
  141. }
  142. table.table-layout-fixed,
  143. table.sticky-table {
  144. table-layout: fixed !important;
  145. }
  146. table caption {
  147. caption-side: top;
  148. color: #444;
  149. font-weight: bold;
  150. }
  151. @include media-breakpoint-down(md) {
  152. .field-item {
  153. max-width: 100%;
  154. overflow-x: auto;
  155. }
  156. }