dataTables.material.css 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. div.dataTables_wrapper div.dataTables_filter {
  2. text-align: right;
  3. }
  4. div.dataTables_wrapper div.dataTables_filter input {
  5. margin-left: 0.5em;
  6. }
  7. div.dataTables_wrapper div.dataTables_info {
  8. padding-top: 10px;
  9. white-space: nowrap;
  10. }
  11. div.dataTables_wrapper div.dataTables_processing {
  12. position: absolute;
  13. top: 50%;
  14. left: 50%;
  15. width: 200px;
  16. margin-left: -100px;
  17. text-align: center;
  18. }
  19. div.dataTables_wrapper div.dataTables_paginate {
  20. text-align: right;
  21. }
  22. div.dataTables_wrapper div.mdl-grid.dt-table {
  23. padding-top: 0;
  24. padding-bottom: 0;
  25. }
  26. div.dataTables_wrapper div.mdl-grid.dt-table > div.mdl-cell {
  27. margin-top: 0;
  28. margin-bottom: 0;
  29. }
  30. table.dataTable thead > tr > th.sorting_asc, table.dataTable thead > tr > th.sorting_desc, table.dataTable thead > tr > th.sorting,
  31. table.dataTable thead > tr > td.sorting_asc,
  32. table.dataTable thead > tr > td.sorting_desc,
  33. table.dataTable thead > tr > td.sorting {
  34. padding-right: 30px;
  35. }
  36. table.dataTable thead > tr > th:active,
  37. table.dataTable thead > tr > td:active {
  38. outline: none;
  39. }
  40. table.dataTable thead .sorting,
  41. table.dataTable thead .sorting_asc,
  42. table.dataTable thead .sorting_desc,
  43. table.dataTable thead .sorting_asc_disabled,
  44. table.dataTable thead .sorting_desc_disabled {
  45. cursor: pointer;
  46. position: relative;
  47. }
  48. table.dataTable thead .sorting:before, table.dataTable thead .sorting:after,
  49. table.dataTable thead .sorting_asc:before,
  50. table.dataTable thead .sorting_asc:after,
  51. table.dataTable thead .sorting_desc:before,
  52. table.dataTable thead .sorting_desc:after,
  53. table.dataTable thead .sorting_asc_disabled:before,
  54. table.dataTable thead .sorting_asc_disabled:after,
  55. table.dataTable thead .sorting_desc_disabled:before,
  56. table.dataTable thead .sorting_desc_disabled:after {
  57. position: absolute;
  58. bottom: 11px;
  59. display: block;
  60. opacity: 0.3;
  61. font-size: 1.3em;
  62. }
  63. table.dataTable thead .sorting:before,
  64. table.dataTable thead .sorting_asc:before,
  65. table.dataTable thead .sorting_desc:before,
  66. table.dataTable thead .sorting_asc_disabled:before,
  67. table.dataTable thead .sorting_desc_disabled:before {
  68. right: 1em;
  69. content: "\2191";
  70. }
  71. table.dataTable thead .sorting:after,
  72. table.dataTable thead .sorting_asc:after,
  73. table.dataTable thead .sorting_desc:after,
  74. table.dataTable thead .sorting_asc_disabled:after,
  75. table.dataTable thead .sorting_desc_disabled:after {
  76. right: 0.5em;
  77. content: "\2193";
  78. }
  79. table.dataTable thead .sorting_asc:before,
  80. table.dataTable thead .sorting_desc:after {
  81. opacity: 1;
  82. }
  83. table.dataTable thead .sorting_asc_disabled:before,
  84. table.dataTable thead .sorting_desc_disabled:after {
  85. opacity: 0;
  86. }