Built files from Bizgaze WebServer
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

style.datatable.css 6.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. /*Data Table*/
  2. table.dataTable {
  3. box-sizing: border-box;
  4. }
  5. table.dataTable th, table.dataTable td {
  6. box-sizing: border-box;
  7. }
  8. table.dataTable thead th, table.dataTable thead td, table.dataTable tbody th, table.dataTable tbody td {
  9. padding: .75rem 1.25rem;
  10. }
  11. table.dataTable thead td, table.dataTable thead th {
  12. border-bottom: none;
  13. font-weight: 500;
  14. position: relative;
  15. }
  16. table.dataTable thead td.sorting::before, table.dataTable thead td.sorting_asc::before, table.dataTable thead td.sorting_desc::before, table.dataTable thead td.sorting::after, table.dataTable thead td.sorting_asc::after, table.dataTable thead td.sorting_desc::after, table.dataTable thead th.sorting::before, table.dataTable thead th.sorting_asc::before, table.dataTable thead th.sorting_desc::before, table.dataTable thead th.sorting::after, table.dataTable thead th.sorting_asc::after, table.dataTable thead th.sorting_desc::after {
  17. display: inline-block;
  18. font-family: "Ionicons";
  19. speak: none;
  20. font-size: 18px;
  21. font-style: normal;
  22. font-weight: normal;
  23. font-variant: normal;
  24. text-transform: none;
  25. text-rendering: auto;
  26. line-height: 1;
  27. -webkit-font-smoothing: antialiased;
  28. -moz-osx-font-smoothing: grayscale;
  29. position: absolute;
  30. z-index: 10;
  31. right: 7px;
  32. }
  33. table.dataTable thead td.sorting::before, table.dataTable thead td.sorting_asc::before, table.dataTable thead td.sorting_desc::before, table.dataTable thead td.sorting::after, table.dataTable thead td.sorting_asc::after, table.dataTable thead td.sorting_desc::after, table.dataTable thead th.sorting::before, table.dataTable thead th.sorting_asc::before, table.dataTable thead th.sorting_desc::before, table.dataTable thead th.sorting::after, table.dataTable thead th.sorting_asc::after, table.dataTable thead th.sorting_desc::after {
  34. -webkit-transform: translateY(0);
  35. -moz-transform: translateY(0);
  36. -ms-transform: translateY(0);
  37. -o-transform: translateY(0);
  38. transform: translateY(0);
  39. content: "";
  40. color: #298DFF;
  41. }
  42. table.dataTable thead td.sorting_asc::before, table.dataTable thead th.sorting_asc::before {
  43. content: "\f11a";
  44. }
  45. table.dataTable thead td.sorting_desc::after, table.dataTable thead th.sorting_desc::after {
  46. content: "\f118";
  47. }
  48. table.dataTable tfoot td, table.dataTable tfoot th {
  49. border-top: none;
  50. font-weight: 500;
  51. padding: .75rem 1.25rem;
  52. background: #E6E9EB;
  53. }
  54. table.dataTable.no-footer {
  55. border-bottom: none;
  56. }
  57. table.dataTable.row-border tbody th, table.dataTable.row-border tbody td, table.dataTable.display tbody th, table.dataTable.display tbody td {
  58. border-top: 1px solid #E6E9EB;
  59. }
  60. table.dataTable.row-border tbody tr:first-child th, table.dataTable.row-border tbody tr:first-child td, table.dataTable.display tbody tr:first-child th, table.dataTable.display tbody tr:first-child td {
  61. border-top: 1px solid #E6E9EB;
  62. }
  63. table.dataTable.stripe tbody tr.odd, table.dataTable.display tbody tr.odd {
  64. background: rgba(244, 245, 246, 0.5);
  65. }
  66. table.dataTable.stripe tbody tr.odd.selected, table.dataTable.display tbody tr.odd.selected {
  67. background: #1F2327;
  68. color: #fff;
  69. }
  70. table.dataTable tbody tr.selected {
  71. background: #1F2327;
  72. color: #fff;
  73. }
  74. table.dataTable.display tbody tr.odd > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd > .sorting_1 {
  75. background: rgba(202, 207, 212, 0.2);
  76. }
  77. table.dataTable.display tbody tr.odd.selected > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_1 {
  78. background: #1F2327;
  79. color: #fff;
  80. }
  81. table.dataTable.display tbody tr.even > .sorting_1, table.dataTable.order-column.stripe tbody tr.even > .sorting_1 {
  82. background: rgba(230, 233, 235, 0.3);
  83. }
  84. table.dataTable.display tbody tr.even.selected > .sorting_1, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_1 {
  85. background: #1F2327;
  86. color: #fff;
  87. }
  88. table.dataTable.hover tbody tr:hover, table.dataTable.display tbody tr:hover {
  89. background-color: #298DFF;
  90. color: #fff;
  91. }
  92. table.dataTable.hover tbody tr:hover.selected, table.dataTable.display tbody tr:hover.selected {
  93. background: #1F2327;
  94. color: #fff;
  95. }
  96. table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > td:first-child, table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > tr:first-child {
  97. padding-left: 1.25rem;
  98. }
  99. table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > td:first-child:before, table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > tr:first-child:before {
  100. display: none;
  101. }
  102. table.dataTable > tbody > tr.child ul.dtr-details {
  103. width: 100%;
  104. }
  105. table.dataTable > tbody > tr.child ul.dtr-details > li {
  106. border-bottom: none;
  107. padding: 0.25em;
  108. }
  109. table.dataTable > tbody > tr.child ul.dtr-details > li:first-child {
  110. padding-top: 0.25em;
  111. }
  112. table.dataTable > tbody > tr.child span.dtr-title {
  113. min-width: 80px;
  114. font-weight: 500;
  115. font-size: 13px;
  116. text-transform: uppercase;
  117. color: #1F2327;
  118. }
  119. table.dataTable > tbody > tr.child span.dtr-data {
  120. color: #7C848B;
  121. }
  122. .dataTables_wrapper .dataTables_paginate .paginate_button {
  123. padding: 0;
  124. margin-left: 0;
  125. color: #1F2327 !important;
  126. border: none !important;
  127. background: transparent !important;
  128. box-shadow: none !important;
  129. border-radius: 0;
  130. }
  131. .dataTables_wrapper .dataTables_filter input {
  132. margin-left: 0;
  133. }
  134. .dataTables_wrapper .dataTables_length select {
  135. width: 80px;
  136. margin-right: 10px;
  137. }
  138. @media (max-width: 991px) {
  139. .dataTables_wrapper .dataTables_length {
  140. display: none;
  141. }
  142. }