responsive.bootstrap.css 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,
  2. table.dataTable.dtr-inline.collapsed > tbody > tr > th.child,
  3. table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty {
  4. cursor: default !important;
  5. }
  6. table.dataTable.dtr-inline.collapsed > tbody > tr > td.child:before,
  7. table.dataTable.dtr-inline.collapsed > tbody > tr > th.child:before,
  8. table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty:before {
  9. display: none !important;
  10. }
  11. table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child,
  12. table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child {
  13. position: relative;
  14. padding-left: 30px;
  15. cursor: pointer;
  16. }
  17. table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before,
  18. table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {
  19. top: 9px;
  20. left: 4px;
  21. height: 14px;
  22. width: 14px;
  23. display: block;
  24. position: absolute;
  25. color: white;
  26. border: 2px solid white;
  27. border-radius: 14px;
  28. box-shadow: 0 0 3px #444;
  29. box-sizing: content-box;
  30. text-align: center;
  31. font-family: 'Courier New', Courier, monospace;
  32. line-height: 14px;
  33. content: '+';
  34. background-color: #337ab7;
  35. }
  36. table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,
  37. table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {
  38. content: '-';
  39. background-color: #d33333;
  40. }
  41. table.dataTable.dtr-inline.collapsed > tbody > tr.child td:before {
  42. display: none;
  43. }
  44. table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child,
  45. table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child {
  46. padding-left: 27px;
  47. }
  48. table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child:before,
  49. table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child:before {
  50. top: 5px;
  51. left: 4px;
  52. height: 14px;
  53. width: 14px;
  54. border-radius: 14px;
  55. line-height: 14px;
  56. text-indent: 3px;
  57. }
  58. table.dataTable.dtr-column > tbody > tr > td.control,
  59. table.dataTable.dtr-column > tbody > tr > th.control {
  60. position: relative;
  61. cursor: pointer;
  62. }
  63. table.dataTable.dtr-column > tbody > tr > td.control:before,
  64. table.dataTable.dtr-column > tbody > tr > th.control:before {
  65. top: 50%;
  66. left: 50%;
  67. height: 16px;
  68. width: 16px;
  69. margin-top: -10px;
  70. margin-left: -10px;
  71. display: block;
  72. position: absolute;
  73. color: white;
  74. border: 2px solid white;
  75. border-radius: 14px;
  76. box-shadow: 0 0 3px #444;
  77. box-sizing: content-box;
  78. text-align: center;
  79. font-family: 'Courier New', Courier, monospace;
  80. line-height: 14px;
  81. content: '+';
  82. background-color: #337ab7;
  83. }
  84. table.dataTable.dtr-column > tbody > tr.parent td.control:before,
  85. table.dataTable.dtr-column > tbody > tr.parent th.control:before {
  86. content: '-';
  87. background-color: #d33333;
  88. }
  89. table.dataTable > tbody > tr.child {
  90. padding: 0.5em 1em;
  91. }
  92. table.dataTable > tbody > tr.child:hover {
  93. background: transparent !important;
  94. }
  95. table.dataTable > tbody > tr.child ul {
  96. display: inline-block;
  97. list-style-type: none;
  98. margin: 0;
  99. padding: 0;
  100. }
  101. table.dataTable > tbody > tr.child ul li {
  102. border-bottom: 1px solid #efefef;
  103. padding: 0.5em 0;
  104. }
  105. table.dataTable > tbody > tr.child ul li:first-child {
  106. padding-top: 0;
  107. }
  108. table.dataTable > tbody > tr.child ul li:last-child {
  109. border-bottom: none;
  110. }
  111. table.dataTable > tbody > tr.child span.dtr-title {
  112. display: inline-block;
  113. min-width: 75px;
  114. font-weight: bold;
  115. }
  116. div.dtr-modal {
  117. position: fixed;
  118. box-sizing: border-box;
  119. top: 0;
  120. left: 0;
  121. height: 100%;
  122. width: 100%;
  123. z-index: 100;
  124. padding: 10em 1em;
  125. }
  126. div.dtr-modal div.dtr-modal-display {
  127. position: absolute;
  128. top: 0;
  129. left: 0;
  130. bottom: 0;
  131. right: 0;
  132. width: 50%;
  133. height: 50%;
  134. overflow: auto;
  135. margin: auto;
  136. z-index: 102;
  137. overflow: auto;
  138. background-color: #f5f5f7;
  139. border: 1px solid black;
  140. border-radius: 0.5em;
  141. box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
  142. }
  143. div.dtr-modal div.dtr-modal-content {
  144. position: relative;
  145. padding: 1em;
  146. }
  147. div.dtr-modal div.dtr-modal-close {
  148. position: absolute;
  149. top: 6px;
  150. right: 6px;
  151. width: 22px;
  152. height: 22px;
  153. border: 1px solid #eaeaea;
  154. background-color: #f9f9f9;
  155. text-align: center;
  156. border-radius: 3px;
  157. cursor: pointer;
  158. z-index: 12;
  159. }
  160. div.dtr-modal div.dtr-modal-close:hover {
  161. background-color: #eaeaea;
  162. }
  163. div.dtr-modal div.dtr-modal-background {
  164. position: fixed;
  165. top: 0;
  166. left: 0;
  167. right: 0;
  168. bottom: 0;
  169. z-index: 101;
  170. background: rgba(0, 0, 0, 0.6);
  171. }
  172. @media screen and (max-width: 767px) {
  173. div.dtr-modal div.dtr-modal-display {
  174. width: 95%;
  175. }
  176. }
  177. div.dtr-bs-modal table.table tr:first-child td {
  178. border-top: none;
  179. }