DT_bootstrap.css 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. div.dataTables_length label {
  2. float: left;
  3. text-align: left;
  4. }
  5. div.dataTables_length select {
  6. width: 75px;
  7. }
  8. div.dataTables_filter label {
  9. float: right;
  10. }
  11. div.dataTables_info {
  12. padding-top: 8px;
  13. }
  14. div.dataTables_paginate {
  15. float: right;
  16. margin: 0;
  17. }
  18. table.table {
  19. clear: both;
  20. margin-bottom: 6px !important;
  21. max-width: none !important;
  22. }
  23. table.table thead .sorting,
  24. table.table thead .sorting_asc,
  25. table.table thead .sorting_desc,
  26. table.table thead .sorting_asc_disabled,
  27. table.table thead .sorting_desc_disabled {
  28. cursor: pointer;
  29. *cursor: hand;
  30. }
  31. table.table thead .sorting { background: url('images/sort_both.png') no-repeat center right; }
  32. table.table thead .sorting_asc { background: url('images/sort_asc.png') no-repeat center right; }
  33. table.table thead .sorting_desc { background: url('images/sort_desc.png') no-repeat center right; }
  34. table.table thead .sorting_asc_disabled { background: url('images/sort_asc_disabled.png') no-repeat center right; }
  35. table.table thead .sorting_desc_disabled { background: url('images/sort_desc_disabled.png') no-repeat center right; }
  36. table.dataTable th:active {
  37. outline: none;
  38. }
  39. /* Scrolling */
  40. div.dataTables_scrollHead table {
  41. margin-bottom: 0 !important;
  42. border-bottom-left-radius: 0;
  43. border-bottom-right-radius: 0;
  44. }
  45. div.dataTables_scrollHead table thead tr:last-child th:first-child,
  46. div.dataTables_scrollHead table thead tr:last-child td:first-child {
  47. border-bottom-left-radius: 0 !important;
  48. border-bottom-right-radius: 0 !important;
  49. }
  50. div.dataTables_scrollBody table {
  51. border-top: none;
  52. margin-bottom: 0 !important;
  53. }
  54. div.dataTables_scrollBody tbody tr:first-child th,
  55. div.dataTables_scrollBody tbody tr:first-child td {
  56. border-top: none;
  57. }
  58. div.dataTables_scrollFoot table {
  59. border-top: none;
  60. }
  61. /*
  62. * TableTools styles
  63. */
  64. .table tbody tr.active td,
  65. .table tbody tr.active th {
  66. background-color: #08C;
  67. color: white;
  68. }
  69. .table tbody tr.active:hover td,
  70. .table tbody tr.active:hover th {
  71. background-color: #0075b0 !important;
  72. }
  73. .table-striped tbody tr.active:nth-child(odd) td,
  74. .table-striped tbody tr.active:nth-child(odd) th {
  75. background-color: #017ebc;
  76. }
  77. table.DTTT_selectable tbody tr {
  78. cursor: pointer;
  79. *cursor: hand;
  80. }
  81. div.DTTT .btn {
  82. color: #333 !important;
  83. font-size: 12px;
  84. }
  85. div.DTTT .btn:hover {
  86. text-decoration: none !important;
  87. }
  88. ul.DTTT_dropdown.dropdown-menu a {
  89. color: #333 !important; /* needed only when demo_page.css is included */
  90. }
  91. ul.DTTT_dropdown.dropdown-menu li:hover a {
  92. background-color: #0088cc;
  93. color: white !important;
  94. }
  95. /* TableTools information display */
  96. div.DTTT_print_info.modal {
  97. height: 150px;
  98. margin-top: -75px;
  99. text-align: center;
  100. }
  101. div.DTTT_print_info h6 {
  102. font-weight: normal;
  103. font-size: 28px;
  104. line-height: 28px;
  105. margin: 1em;
  106. }
  107. div.DTTT_print_info p {
  108. font-size: 14px;
  109. line-height: 20px;
  110. }
  111. /*
  112. * FixedColumns styles
  113. */
  114. div.DTFC_LeftHeadWrapper table,
  115. div.DTFC_LeftFootWrapper table,
  116. table.DTFC_Cloned tr.even {
  117. background-color: white;
  118. }
  119. div.DTFC_LeftHeadWrapper table {
  120. margin-bottom: 0 !important;
  121. border-top-right-radius: 0 !important;
  122. border-bottom-left-radius: 0 !important;
  123. border-bottom-right-radius: 0 !important;
  124. }
  125. div.DTFC_LeftHeadWrapper table thead tr:last-child th:first-child,
  126. div.DTFC_LeftHeadWrapper table thead tr:last-child td:first-child {
  127. border-bottom-left-radius: 0 !important;
  128. border-bottom-right-radius: 0 !important;
  129. }
  130. div.DTFC_LeftBodyWrapper table {
  131. border-top: none;
  132. margin-bottom: 0 !important;
  133. }
  134. div.DTFC_LeftBodyWrapper tbody tr:first-child th,
  135. div.DTFC_LeftBodyWrapper tbody tr:first-child td {
  136. border-top: none;
  137. }
  138. div.DTFC_LeftFootWrapper table {
  139. border-top: none;
  140. }