Built files from Bizgaze WebServer
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

style.tabulator.css 3.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. 
  2. /*Tabulator Table*/
  3. .tabulator .tabulator-header,
  4. .tabulator .tabulator-footer {
  5. color: #1F2327;
  6. font-size: 90%;
  7. font-weight: 600;
  8. border-color: #DADDE1;
  9. border-width: 1px;
  10. }
  11. .tabulator .tabulator-tableHolder .tabulator-placeholder span {
  12. color: #007D88;
  13. font-weight: 400;
  14. font-size: 16px;
  15. }
  16. .tabulator .tabulator-footer button.tabulator-page {
  17. padding: .5rem .75rem;
  18. line-height: 1.25;
  19. min-width: 40px;
  20. min-height: 40px;
  21. border-color: #DADDE1;
  22. color: #1F2327;
  23. }
  24. .tabulator .tabulator-footer button.tabulator-page:not(.disabled):hover, .tabulator .tabulator-footer button.tabulator-page:hover, .tabulator .tabulator-footer button.tabulator-page:focus {
  25. color: #1F2327;
  26. background-color: #E6E9EB;
  27. border-color: #DADDE1;
  28. }
  29. .tabulator .tabulator-footer button.tabulator-page.active {
  30. border-color: #00B0FF;
  31. background-color: #00B0FF;
  32. color: #fff;
  33. }
  34. .tabulator .tabulator-footer button.tabulator-page.active:hover {
  35. color: #1F2327;
  36. background-color: #E6E9EB;
  37. border-color: #DADDE1;
  38. }
  39. .tabulator .tabulator-header .tabulator-col.tabulator-sortable:hover {
  40. background-color: #F4F5F6;
  41. }
  42. .tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-sorter .tabulator-arrow {
  43. border-left: 4px solid transparent;
  44. border-right: 4px solid transparent;
  45. border-bottom: 6px solid #CED8DC;
  46. }
  47. .tabulator .tabulator-row {
  48. border-color: #DADDE1;
  49. }
  50. .tabulator .tabulator-row .tabulator-responsive-collapse {
  51. border-color: #DADDE1;
  52. border-bottom: 0;
  53. }
  54. .tabulator .tabulator-row .tabulator-responsive-collapse table td, .tabulator .tabulator-row .tabulator-responsive-collapse table th {
  55. border: 0;
  56. }
  57. .tabulator .tabulator-row.tabulator-selected {
  58. background-color: #EBF5F6;
  59. }
  60. .tabulator .tabulator-row .tabulator-cell.tabulator-row-handle .tabulator-row-handle-box .tabulator-row-handle-bar {
  61. height: 1px;
  62. margin-top: 1px;
  63. background: #1F2327;
  64. }
  65. .tabulator .tabulator-row .tabulator-cell .tabulator-data-tree-control {
  66. height: 17px;
  67. width: 17px;
  68. margin-right: 10px;
  69. border: 1px solid #DADDE1;
  70. background: #fff;
  71. }
  72. .tabulator .tabulator-row .tabulator-cell .tabulator-data-tree-branch {
  73. height: 18px;
  74. width: 11px;
  75. margin-top: -16px;
  76. margin-right: 5px;
  77. border-bottom-left-radius: 1px;
  78. border-left: 1px solid #DADDE1;
  79. border-bottom: 1px solid #DADDE1;
  80. }
  81. .tabulator .tabulator-row.tabulator-selectable:hover {
  82. background-color: #E6E9EB;
  83. }
  84. .tabulator .tabulator-row.tabulator-group {
  85. background: #F4F5F6;
  86. border: 0;
  87. color: #1F2327;
  88. font-weight: 600;
  89. }
  90. .tabulator .tabulator-row.tabulator-group > span {
  91. font-weight: 400;
  92. color: #1F2327;
  93. }
  94. .tabulator .tabulator-row.tabulator-group:hover {
  95. background-color: #E6E9EB;
  96. }
  97. .tabulator .tabulator-row.tabulator-group .tabulator-arrow {
  98. border-top: 4px solid transparent;
  99. border-bottom: 4px solid transparent;
  100. border-right: 0;
  101. border-left: 6px solid #CED8DC;
  102. }
  103. .tabulator .tabulator-row.tabulator-group.tabulator-group-visible .tabulator-arrow {
  104. border-left: 4px solid transparent;
  105. border-right: 4px solid transparent;
  106. border-top: 6px solid #CED8DC;
  107. }
  108. .tabulator.table-bordered .tabulator-header {
  109. border-top: none;
  110. }
  111. .tabulator.table-bordered .tabulator-header .tabulator-col,
  112. .tabulator.table-bordered .tabulator-tableHolder .tabulator-table .tabulator-row .tabulator-cell {
  113. border-color: #DADDE1;
  114. }