1
0

pagedtable.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. .pagedtable {
  2. overflow: auto;
  3. padding-left: 8px;
  4. padding-right: 8px;
  5. }
  6. .pagedtable-wrapper {
  7. border: 1px solid #ccc;
  8. border-radius: 4px;
  9. margin-bottom: 10px;
  10. }
  11. .pagedtable table {
  12. width: 100%;
  13. max-width: 100%;
  14. margin: 0;
  15. }
  16. .pagedtable th {
  17. padding: 0 5px 0 5px;
  18. border: none;
  19. border-bottom: 2px solid #dddddd;
  20. min-width: 45px;
  21. }
  22. .pagedtable-empty th {
  23. display: none;
  24. }
  25. .pagedtable td {
  26. padding: 0 4px 0 4px;
  27. }
  28. .pagedtable .even {
  29. background-color: #fcfcfc;
  30. }
  31. .pagedtable-padding-col {
  32. display: none;
  33. }
  34. .pagedtable a {
  35. -webkit-touch-callout: none;
  36. -webkit-user-select: none;
  37. -khtml-user-select: none;
  38. -moz-user-select: none;
  39. -ms-user-select: none;
  40. user-select: none;
  41. }
  42. .pagedtable-index-nav {
  43. cursor: pointer;
  44. padding: 0 5px 0 5px;
  45. float: right;
  46. border: 0;
  47. }
  48. .pagedtable-index-nav-disabled {
  49. cursor: default;
  50. text-decoration: none;
  51. color: #999;
  52. }
  53. a.pagedtable-index-nav-disabled:hover {
  54. text-decoration: none;
  55. color: #999;
  56. }
  57. .pagedtable-indexes {
  58. cursor: pointer;
  59. float: right;
  60. border: 0;
  61. }
  62. .pagedtable-index-current {
  63. cursor: default;
  64. text-decoration: none;
  65. font-weight: bold;
  66. color: #333;
  67. border: 0;
  68. }
  69. a.pagedtable-index-current:hover {
  70. text-decoration: none;
  71. font-weight: bold;
  72. color: #333;
  73. }
  74. .pagedtable-index {
  75. width: 30px;
  76. display: inline-block;
  77. text-align: center;
  78. border: 0;
  79. }
  80. .pagedtable-index-separator-left {
  81. display: inline-block;
  82. color: #333;
  83. font-size: 9px;
  84. padding: 0 0 0 0;
  85. cursor: default;
  86. }
  87. .pagedtable-index-separator-right {
  88. display: inline-block;
  89. color: #333;
  90. font-size: 9px;
  91. padding: 0 4px 0 0;
  92. cursor: default;
  93. }
  94. .pagedtable-footer {
  95. padding-top: 4px;
  96. padding-bottom: 5px;
  97. }
  98. .pagedtable-not-empty .pagedtable-footer {
  99. border-top: 2px solid #dddddd;
  100. }
  101. .pagedtable-info {
  102. overflow: hidden;
  103. color: #999;
  104. white-space: nowrap;
  105. text-overflow: ellipsis;
  106. }
  107. .pagedtable-header-name {
  108. overflow: hidden;
  109. text-overflow: ellipsis;
  110. }
  111. .pagedtable-header-type {
  112. color: #999;
  113. font-weight: 400;
  114. }
  115. .pagedtable-na-cell {
  116. font-style: italic;
  117. opacity: 0.3;
  118. }