jquery.dataTables.css 17 KB

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