SQLTable.css 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. .SQLTable {
  2. width: 100%;
  3. height: auto;
  4. padding: 5px;
  5. border: none;
  6. text-align: left;
  7. }
  8. .SQLTable tbody tr:nth-child(even) {
  9. background-color: rgb(250,250,250);
  10. }
  11. .SQLTable tbody tr:nth-child(odd) {
  12. background-color: rgb(255,255,255);
  13. }
  14. .SQLTable thead {
  15. background-color: #00c0ef;
  16. }
  17. .SQLTable thead tr {
  18. background-color: rgb(235,235,235);
  19. }
  20. .SQLTable thead tr th {
  21. padding: 5px;
  22. text-align: center;
  23. font-weight: bold;
  24. }
  25. .SQLTable tbody tr td {
  26. padding: 5px;
  27. text-align: center;
  28. border-collapse: collapse;
  29. border: solid 1px #eee;
  30. }
  31. .SQLTable tfoot tr td {
  32. text-align: left;
  33. padding: 5px;
  34. }
  35. .SQLTable .input-group-addon {
  36. cursor: pointer;
  37. }
  38. .SQLTable tbody tr.hovered {
  39. background-color: initial;
  40. cursor: pointer;
  41. }
  42. .SQLTable tbody tr.hovered:hover {
  43. background-color: rgba(250,250,250,1) !important;
  44. }
  45. /*Superfilter classes*/
  46. .superfilter strong {
  47. display: block;
  48. width: 100%;
  49. border-bottom: solid 1px #ccc;
  50. }
  51. .superfield {
  52. font-size: 11px !important;
  53. }
  54. .supercheck {
  55. display: none;
  56. float: left;
  57. width: 0px;
  58. margin-top: 10px !important;
  59. margin-right: 10px !important;
  60. }
  61. .supermini {
  62. width: 90% !important;
  63. float: left;
  64. font-size: 11px !important;
  65. }
  66. .superothers {
  67. display: inline-block !important;
  68. margin: 0px;
  69. padding: 0px;
  70. list-style: none !important;
  71. width: 100%;
  72. height: 290px;
  73. overflow-y: scroll;
  74. }
  75. .superothers li {
  76. list-style: none !important;
  77. width: 100% !important;
  78. }
  79. li.collapse-separator {
  80. border-bottom: solid 1px #ccc;
  81. margin-bottom: 10px;
  82. margin-top: 10px;
  83. color: black;
  84. text-transform: uppercase;
  85. padding: 5px;
  86. padding-top: 10px;
  87. display: block;
  88. cursor: pointer;
  89. }
  90. li.colsep-active {
  91. color: red;
  92. }
  93. li.collapse-hide {
  94. display: none;
  95. }
  96. .superbanner {
  97. float: left;
  98. height: 34px !important;
  99. }
  100. .sql-paginator {
  101. padding-left: 10px;
  102. color: #666;
  103. font-weight: lighter;
  104. float: right;
  105. }
  106. .search-wrap {
  107. width: 250px !important;
  108. margin-bottom: 10px;
  109. }
  110. .pagination-wrap {
  111. float: right;
  112. text-align: right;
  113. }
  114. .over-limited {
  115. max-height: 200px !important;
  116. overflow-y: auto;
  117. }