jquery.dataTables.css 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477
  1. /*
  2. * Table styles
  3. */
  4. table.dataTable {
  5. width: 100%;
  6. margin: 0 auto;
  7. clear: both;
  8. border-collapse: separate;
  9. border-spacing: 0;
  10. /*
  11. * Header and footer styles
  12. */
  13. /*
  14. * Body styles
  15. */
  16. }
  17. table.dataTable thead th,
  18. table.dataTable tfoot th {
  19. font-weight: bold;
  20. }
  21. table.dataTable thead th,
  22. table.dataTable thead td {
  23. padding: 10px 18px;
  24. border-bottom: 1px solid #111111;
  25. }
  26. table.dataTable thead th:active,
  27. table.dataTable thead td:active {
  28. outline: none;
  29. }
  30. table.dataTable tfoot th,
  31. table.dataTable tfoot td {
  32. padding: 10px 18px 6px 18px;
  33. border-top: 1px solid #111111;
  34. }
  35. table.dataTable thead .sorting_asc,
  36. table.dataTable thead .sorting_desc,
  37. table.dataTable thead .sorting {
  38. cursor: pointer;
  39. *cursor: hand;
  40. }
  41. table.dataTable thead .sorting {
  42. background: url("../images/sort_both.png") no-repeat center right;
  43. }
  44. table.dataTable thead .sorting_asc {
  45. background: url("../images/sort_asc.png") no-repeat center right;
  46. }
  47. table.dataTable thead .sorting_desc {
  48. background: url("../images/sort_desc.png") no-repeat center right;
  49. }
  50. table.dataTable thead .sorting_asc_disabled {
  51. background: url("../images/sort_asc_disabled.png") no-repeat center right;
  52. }
  53. table.dataTable thead .sorting_desc_disabled {
  54. background: url("../images/sort_desc_disabled.png") no-repeat center right;
  55. }
  56. table.dataTable tbody tr {
  57. background-color: white;
  58. }
  59. table.dataTable tbody tr.selected {
  60. background-color: #b0bed9;
  61. }
  62. table.dataTable tbody th,
  63. table.dataTable tbody td {
  64. padding: 8px 10px;
  65. }
  66. table.dataTable.row-border tbody th, table.dataTable.row-border tbody td, table.dataTable.display tbody th, table.dataTable.display tbody td {
  67. border-top: 1px solid #dddddd;
  68. }
  69. table.dataTable.row-border tbody tr:first-child th,
  70. table.dataTable.row-border tbody tr:first-child td, table.dataTable.display tbody tr:first-child th,
  71. table.dataTable.display tbody tr:first-child td {
  72. border-top: none;
  73. }
  74. table.dataTable.cell-border tbody th, table.dataTable.cell-border tbody td {
  75. border-top: 1px solid #dddddd;
  76. border-right: 1px solid #dddddd;
  77. }
  78. table.dataTable.cell-border tbody tr th:first-child,
  79. table.dataTable.cell-border tbody tr td:first-child {
  80. border-left: 1px solid #dddddd;
  81. }
  82. table.dataTable.cell-border tbody tr:first-child th,
  83. table.dataTable.cell-border tbody tr:first-child td {
  84. border-top: none;
  85. }
  86. table.dataTable.stripe tbody tr.odd, table.dataTable.display tbody tr.odd {
  87. background-color: #f9f9f9;
  88. }
  89. table.dataTable.stripe tbody tr.odd.selected, table.dataTable.display tbody tr.odd.selected {
  90. background-color: #abb9d3;
  91. }
  92. table.dataTable.hover tbody tr:hover,
  93. table.dataTable.hover tbody tr.odd:hover,
  94. table.dataTable.hover tbody tr.even:hover, table.dataTable.display tbody tr:hover,
  95. table.dataTable.display tbody tr.odd:hover,
  96. table.dataTable.display tbody tr.even:hover {
  97. background-color: whitesmoke;
  98. }
  99. table.dataTable.hover tbody tr:hover.selected,
  100. table.dataTable.hover tbody tr.odd:hover.selected,
  101. table.dataTable.hover tbody tr.even:hover.selected, table.dataTable.display tbody tr:hover.selected,
  102. table.dataTable.display tbody tr.odd:hover.selected,
  103. table.dataTable.display tbody tr.even:hover.selected {
  104. background-color: #a9b7d1;
  105. }
  106. table.dataTable.order-column tbody tr > .sorting_1,
  107. table.dataTable.order-column tbody tr > .sorting_2,
  108. table.dataTable.order-column tbody tr > .sorting_3, table.dataTable.display tbody tr > .sorting_1,
  109. table.dataTable.display tbody tr > .sorting_2,
  110. table.dataTable.display tbody tr > .sorting_3 {
  111. background-color: #f9f9f9;
  112. }
  113. table.dataTable.order-column tbody tr.selected > .sorting_1,
  114. table.dataTable.order-column tbody tr.selected > .sorting_2,
  115. table.dataTable.order-column tbody tr.selected > .sorting_3, table.dataTable.display tbody tr.selected > .sorting_1,
  116. table.dataTable.display tbody tr.selected > .sorting_2,
  117. table.dataTable.display tbody tr.selected > .sorting_3 {
  118. background-color: #acbad4;
  119. }
  120. table.dataTable.display tbody tr.odd > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd > .sorting_1 {
  121. background-color: #f1f1f1;
  122. }
  123. table.dataTable.display tbody tr.odd > .sorting_2, table.dataTable.order-column.stripe tbody tr.odd > .sorting_2 {
  124. background-color: #f3f3f3;
  125. }
  126. table.dataTable.display tbody tr.odd > .sorting_3, table.dataTable.order-column.stripe tbody tr.odd > .sorting_3 {
  127. background-color: whitesmoke;
  128. }
  129. table.dataTable.display tbody tr.odd.selected > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_1 {
  130. background-color: #a6b3cd;
  131. }
  132. table.dataTable.display tbody tr.odd.selected > .sorting_2, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_2 {
  133. background-color: #a7b5ce;
  134. }
  135. table.dataTable.display tbody tr.odd.selected > .sorting_3, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_3 {
  136. background-color: #a9b6d0;
  137. }
  138. table.dataTable.display tbody tr.even > .sorting_1, table.dataTable.order-column.stripe tbody tr.even > .sorting_1 {
  139. background-color: #f9f9f9;
  140. }
  141. table.dataTable.display tbody tr.even > .sorting_2, table.dataTable.order-column.stripe tbody tr.even > .sorting_2 {
  142. background-color: #fbfbfb;
  143. }
  144. table.dataTable.display tbody tr.even > .sorting_3, table.dataTable.order-column.stripe tbody tr.even > .sorting_3 {
  145. background-color: #fdfdfd;
  146. }
  147. table.dataTable.display tbody tr.even.selected > .sorting_1, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_1 {
  148. background-color: #acbad4;
  149. }
  150. table.dataTable.display tbody tr.even.selected > .sorting_2, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_2 {
  151. background-color: #adbbd6;
  152. }
  153. table.dataTable.display tbody tr.even.selected > .sorting_3, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_3 {
  154. background-color: #afbdd8;
  155. }
  156. table.dataTable.display tbody tr:hover > .sorting_1,
  157. table.dataTable.display tbody tr.odd:hover > .sorting_1,
  158. table.dataTable.display tbody tr.even:hover > .sorting_1, table.dataTable.order-column.hover tbody tr:hover > .sorting_1,
  159. table.dataTable.order-column.hover tbody tr.odd:hover > .sorting_1,
  160. table.dataTable.order-column.hover tbody tr.even:hover > .sorting_1 {
  161. background-color: #eaeaea;
  162. }
  163. table.dataTable.display tbody tr:hover > .sorting_2,
  164. table.dataTable.display tbody tr.odd:hover > .sorting_2,
  165. table.dataTable.display tbody tr.even:hover > .sorting_2, table.dataTable.order-column.hover tbody tr:hover > .sorting_2,
  166. table.dataTable.order-column.hover tbody tr.odd:hover > .sorting_2,
  167. table.dataTable.order-column.hover tbody tr.even:hover > .sorting_2 {
  168. background-color: #ebebeb;
  169. }
  170. table.dataTable.display tbody tr:hover > .sorting_3,
  171. table.dataTable.display tbody tr.odd:hover > .sorting_3,
  172. table.dataTable.display tbody tr.even:hover > .sorting_3, table.dataTable.order-column.hover tbody tr:hover > .sorting_3,
  173. table.dataTable.order-column.hover tbody tr.odd:hover > .sorting_3,
  174. table.dataTable.order-column.hover tbody tr.even:hover > .sorting_3 {
  175. background-color: #eeeeee;
  176. }
  177. table.dataTable.display tbody tr:hover.selected > .sorting_1,
  178. table.dataTable.display tbody tr.odd:hover.selected > .sorting_1,
  179. table.dataTable.display tbody tr.even:hover.selected > .sorting_1, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_1,
  180. table.dataTable.order-column.hover tbody tr.odd:hover.selected > .sorting_1,
  181. table.dataTable.order-column.hover tbody tr.even:hover.selected > .sorting_1 {
  182. background-color: #a1aec7;
  183. }
  184. table.dataTable.display tbody tr:hover.selected > .sorting_2,
  185. table.dataTable.display tbody tr.odd:hover.selected > .sorting_2,
  186. table.dataTable.display tbody tr.even:hover.selected > .sorting_2, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_2,
  187. table.dataTable.order-column.hover tbody tr.odd:hover.selected > .sorting_2,
  188. table.dataTable.order-column.hover tbody tr.even:hover.selected > .sorting_2 {
  189. background-color: #a2afc8;
  190. }
  191. table.dataTable.display tbody tr:hover.selected > .sorting_3,
  192. table.dataTable.display tbody tr.odd:hover.selected > .sorting_3,
  193. table.dataTable.display tbody tr.even:hover.selected > .sorting_3, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_3,
  194. table.dataTable.order-column.hover tbody tr.odd:hover.selected > .sorting_3,
  195. table.dataTable.order-column.hover tbody tr.even:hover.selected > .sorting_3 {
  196. background-color: #a4b2cb;
  197. }
  198. table.dataTable.no-footer {
  199. border-bottom: 1px solid #111111;
  200. }
  201. table.dataTable.nowrap th, table.dataTable.nowrap td {
  202. white-space: nowrap;
  203. }
  204. table.dataTable.compact thead th,
  205. table.dataTable.compact thead td {
  206. padding: 5px 9px;
  207. }
  208. table.dataTable.compact tfoot th,
  209. table.dataTable.compact tfoot td {
  210. padding: 5px 9px 3px 9px;
  211. }
  212. table.dataTable.compact tbody th,
  213. table.dataTable.compact tbody td {
  214. padding: 4px 5px;
  215. }
  216. table.dataTable th.dt-left,
  217. table.dataTable td.dt-left {
  218. text-align: left;
  219. }
  220. table.dataTable th.dt-center,
  221. table.dataTable td.dt-center,
  222. table.dataTable td.dataTables_empty {
  223. text-align: center;
  224. }
  225. table.dataTable th.dt-right,
  226. table.dataTable td.dt-right {
  227. text-align: right;
  228. }
  229. table.dataTable th.dt-justify,
  230. table.dataTable td.dt-justify {
  231. text-align: justify;
  232. }
  233. table.dataTable th.dt-nowrap,
  234. table.dataTable td.dt-nowrap {
  235. white-space: nowrap;
  236. }
  237. table.dataTable thead th.dt-head-left,
  238. table.dataTable thead td.dt-head-left,
  239. table.dataTable tfoot th.dt-head-left,
  240. table.dataTable tfoot td.dt-head-left {
  241. text-align: left;
  242. }
  243. table.dataTable thead th.dt-head-center,
  244. table.dataTable thead td.dt-head-center,
  245. table.dataTable tfoot th.dt-head-center,
  246. table.dataTable tfoot td.dt-head-center {
  247. text-align: center;
  248. }
  249. table.dataTable thead th.dt-head-right,
  250. table.dataTable thead td.dt-head-right,
  251. table.dataTable tfoot th.dt-head-right,
  252. table.dataTable tfoot td.dt-head-right {
  253. text-align: right;
  254. }
  255. table.dataTable thead th.dt-head-justify,
  256. table.dataTable thead td.dt-head-justify,
  257. table.dataTable tfoot th.dt-head-justify,
  258. table.dataTable tfoot td.dt-head-justify {
  259. text-align: justify;
  260. }
  261. table.dataTable thead th.dt-head-nowrap,
  262. table.dataTable thead td.dt-head-nowrap,
  263. table.dataTable tfoot th.dt-head-nowrap,
  264. table.dataTable tfoot td.dt-head-nowrap {
  265. white-space: nowrap;
  266. }
  267. table.dataTable tbody th.dt-body-left,
  268. table.dataTable tbody td.dt-body-left {
  269. text-align: left;
  270. }
  271. table.dataTable tbody th.dt-body-center,
  272. table.dataTable tbody td.dt-body-center {
  273. text-align: center;
  274. }
  275. table.dataTable tbody th.dt-body-right,
  276. table.dataTable tbody td.dt-body-right {
  277. text-align: right;
  278. }
  279. table.dataTable tbody th.dt-body-justify,
  280. table.dataTable tbody td.dt-body-justify {
  281. text-align: justify;
  282. }
  283. table.dataTable tbody th.dt-body-nowrap,
  284. table.dataTable tbody td.dt-body-nowrap {
  285. white-space: nowrap;
  286. }
  287. table.dataTable,
  288. table.dataTable th,
  289. table.dataTable td {
  290. -webkit-box-sizing: content-box;
  291. -moz-box-sizing: content-box;
  292. box-sizing: content-box;
  293. }
  294. /*
  295. * Control feature layout
  296. */
  297. .dataTables_wrapper {
  298. position: relative;
  299. clear: both;
  300. *zoom: 1;
  301. zoom: 1;
  302. }
  303. .dataTables_wrapper .dataTables_length {
  304. float: left;
  305. }
  306. .dataTables_wrapper .dataTables_filter {
  307. float: right;
  308. text-align: right;
  309. }
  310. .dataTables_wrapper .dataTables_filter input {
  311. margin-left: 0.5em;
  312. }
  313. .dataTables_wrapper .dataTables_info {
  314. clear: both;
  315. float: left;
  316. padding-top: 0.755em;
  317. }
  318. .dataTables_wrapper .dataTables_paginate {
  319. float: right;
  320. text-align: right;
  321. padding-top: 0.25em;
  322. }
  323. .dataTables_wrapper .dataTables_paginate .paginate_button {
  324. box-sizing: border-box;
  325. display: inline-block;
  326. min-width: 1.5em;
  327. padding: 0.5em 1em;
  328. margin-left: 2px;
  329. text-align: center;
  330. text-decoration: none !important;
  331. cursor: pointer;
  332. *cursor: hand;
  333. color: #333333 !important;
  334. border: 1px solid transparent;
  335. }
  336. .dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  337. color: #333333 !important;
  338. border: 1px solid #cacaca;
  339. background-color: white;
  340. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, white), color-stop(100%, gainsboro));
  341. /* Chrome,Safari4+ */
  342. background: -webkit-linear-gradient(top, white 0%, gainsboro 100%);
  343. /* Chrome10+,Safari5.1+ */
  344. background: -moz-linear-gradient(top, white 0%, gainsboro 100%);
  345. /* FF3.6+ */
  346. background: -ms-linear-gradient(top, white 0%, gainsboro 100%);
  347. /* IE10+ */
  348. background: -o-linear-gradient(top, white 0%, gainsboro 100%);
  349. /* Opera 11.10+ */
  350. background: linear-gradient(to bottom, white 0%, gainsboro 100%);
  351. /* W3C */
  352. }
  353. .dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
  354. cursor: default;
  355. color: #666 !important;
  356. border: 1px solid transparent;
  357. background: transparent;
  358. box-shadow: none;
  359. }
  360. .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  361. color: white !important;
  362. border: 1px solid #111111;
  363. background-color: #585858;
  364. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #585858), color-stop(100%, #111111));
  365. /* Chrome,Safari4+ */
  366. background: -webkit-linear-gradient(top, #585858 0%, #111111 100%);
  367. /* Chrome10+,Safari5.1+ */
  368. background: -moz-linear-gradient(top, #585858 0%, #111111 100%);
  369. /* FF3.6+ */
  370. background: -ms-linear-gradient(top, #585858 0%, #111111 100%);
  371. /* IE10+ */
  372. background: -o-linear-gradient(top, #585858 0%, #111111 100%);
  373. /* Opera 11.10+ */
  374. background: linear-gradient(to bottom, #585858 0%, #111111 100%);
  375. /* W3C */
  376. }
  377. .dataTables_wrapper .dataTables_paginate .paginate_button:active {
  378. outline: none;
  379. background-color: #2b2b2b;
  380. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2b2b2b), color-stop(100%, #0c0c0c));
  381. /* Chrome,Safari4+ */
  382. background: -webkit-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
  383. /* Chrome10+,Safari5.1+ */
  384. background: -moz-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
  385. /* FF3.6+ */
  386. background: -ms-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
  387. /* IE10+ */
  388. background: -o-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
  389. /* Opera 11.10+ */
  390. background: linear-gradient(to bottom, #2b2b2b 0%, #0c0c0c 100%);
  391. /* W3C */
  392. box-shadow: inset 0 0 3px #111;
  393. }
  394. .dataTables_wrapper .dataTables_processing {
  395. position: absolute;
  396. top: 50%;
  397. left: 50%;
  398. width: 100%;
  399. height: 40px;
  400. margin-left: -50%;
  401. margin-top: -25px;
  402. padding-top: 20px;
  403. text-align: center;
  404. font-size: 1.2em;
  405. background-color: white;
  406. background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(25%, rgba(255, 255, 255, 0.9)), color-stop(75%, rgba(255, 255, 255, 0.9)), color-stop(100%, rgba(255, 255, 255, 0)));
  407. /* Chrome,Safari4+ */
  408. background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
  409. /* Chrome10+,Safari5.1+ */
  410. background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
  411. /* FF3.6+ */
  412. background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
  413. /* IE10+ */
  414. background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
  415. /* Opera 11.10+ */
  416. background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
  417. /* W3C */
  418. }
  419. .dataTables_wrapper .dataTables_length,
  420. .dataTables_wrapper .dataTables_filter,
  421. .dataTables_wrapper .dataTables_info,
  422. .dataTables_wrapper .dataTables_processing,
  423. .dataTables_wrapper .dataTables_paginate {
  424. color: #333333;
  425. }
  426. .dataTables_wrapper .dataTables_scroll {
  427. clear: both;
  428. }
  429. .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody {
  430. *margin-top: -1px;
  431. -webkit-overflow-scrolling: touch;
  432. }
  433. .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody th > div.dataTables_sizing,
  434. .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody td > div.dataTables_sizing {
  435. height: 0;
  436. overflow: hidden;
  437. margin: 0 !important;
  438. padding: 0 !important;
  439. }
  440. .dataTables_wrapper.no-footer .dataTables_scrollBody {
  441. border-bottom: 1px solid #111111;
  442. }
  443. .dataTables_wrapper.no-footer div.dataTables_scrollHead table,
  444. .dataTables_wrapper.no-footer div.dataTables_scrollBody table {
  445. border-bottom: none;
  446. }
  447. .dataTables_wrapper:after {
  448. visibility: hidden;
  449. display: block;
  450. content: "";
  451. clear: both;
  452. height: 0;
  453. }
  454. @media screen and (max-width: 767px) {
  455. .dataTables_wrapper .dataTables_info,
  456. .dataTables_wrapper .dataTables_paginate {
  457. float: none;
  458. text-align: center;
  459. }
  460. .dataTables_wrapper .dataTables_paginate {
  461. margin-top: 0.5em;
  462. }
  463. }
  464. @media screen and (max-width: 640px) {
  465. .dataTables_wrapper .dataTables_length,
  466. .dataTables_wrapper .dataTables_filter {
  467. float: none;
  468. text-align: center;
  469. }
  470. .dataTables_wrapper .dataTables_filter {
  471. margin-top: 0.5em;
  472. }
  473. }