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

tabulator.css 21KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917
  1. /* Tabulator v4.6.3 (c) Oliver Folkerd */
  2. .tabulator {
  3. position: relative;
  4. border: 1px solid #999;
  5. background-color: #888;
  6. font-size: 14px;
  7. text-align: left;
  8. overflow: hidden;
  9. -ms-transform: translatez(0);
  10. transform: translatez(0);
  11. }
  12. .tabulator[tabulator-layout="fitDataFill"] .tabulator-tableHolder .tabulator-table {
  13. min-width: 100%;
  14. }
  15. .tabulator.tabulator-block-select {
  16. -webkit-user-select: none;
  17. -ms-user-select: none;
  18. user-select: none;
  19. }
  20. .tabulator .tabulator-header {
  21. position: relative;
  22. box-sizing: border-box;
  23. width: 100%;
  24. border-bottom: 1px solid #999;
  25. background-color: #e6e6e6;
  26. color: #555;
  27. font-weight: bold;
  28. white-space: nowrap;
  29. overflow: hidden;
  30. -moz-user-select: none;
  31. -khtml-user-select: none;
  32. -webkit-user-select: none;
  33. -o-user-select: none;
  34. }
  35. .tabulator .tabulator-header.tabulator-header-hidden {
  36. display: none;
  37. }
  38. .tabulator .tabulator-header .tabulator-col {
  39. display: inline-block;
  40. position: relative;
  41. box-sizing: border-box;
  42. border-right: 1px solid #aaa;
  43. background: #e6e6e6;
  44. text-align: left;
  45. vertical-align: bottom;
  46. overflow: hidden;
  47. }
  48. .tabulator .tabulator-header .tabulator-col.tabulator-moving {
  49. position: absolute;
  50. border: 1px solid #999;
  51. background: #cdcdcd;
  52. pointer-events: none;
  53. }
  54. .tabulator .tabulator-header .tabulator-col .tabulator-col-content {
  55. box-sizing: border-box;
  56. position: relative;
  57. padding: 4px;
  58. }
  59. .tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-header-menu-button {
  60. padding: 0 8px;
  61. }
  62. .tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-header-menu-button:hover {
  63. cursor: pointer;
  64. opacity: .6;
  65. }
  66. .tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-title {
  67. box-sizing: border-box;
  68. width: 100%;
  69. white-space: nowrap;
  70. overflow: hidden;
  71. text-overflow: ellipsis;
  72. vertical-align: bottom;
  73. }
  74. .tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-title .tabulator-title-editor {
  75. box-sizing: border-box;
  76. width: 100%;
  77. border: 1px solid #999;
  78. padding: 1px;
  79. background: #fff;
  80. }
  81. .tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-arrow {
  82. display: inline-block;
  83. position: absolute;
  84. top: 9px;
  85. right: 8px;
  86. width: 0;
  87. height: 0;
  88. border-left: 6px solid transparent;
  89. border-right: 6px solid transparent;
  90. border-bottom: 6px solid #bbb;
  91. }
  92. .tabulator .tabulator-header .tabulator-col.tabulator-col-group .tabulator-col-group-cols {
  93. position: relative;
  94. display: -ms-flexbox;
  95. display: flex;
  96. border-top: 1px solid #aaa;
  97. overflow: hidden;
  98. margin-right: -1px;
  99. }
  100. .tabulator .tabulator-header .tabulator-col:first-child .tabulator-col-resize-handle.prev {
  101. display: none;
  102. }
  103. .tabulator .tabulator-header .tabulator-col .tabulator-header-filter {
  104. position: relative;
  105. box-sizing: border-box;
  106. margin-top: 2px;
  107. width: 100%;
  108. text-align: center;
  109. }
  110. .tabulator .tabulator-header .tabulator-col .tabulator-header-filter textarea {
  111. height: auto !important;
  112. }
  113. .tabulator .tabulator-header .tabulator-col .tabulator-header-filter svg {
  114. margin-top: 3px;
  115. }
  116. .tabulator .tabulator-header .tabulator-col .tabulator-header-filter input::-ms-clear {
  117. width: 0;
  118. height: 0;
  119. }
  120. .tabulator .tabulator-header .tabulator-col.tabulator-sortable .tabulator-col-title {
  121. padding-right: 25px;
  122. }
  123. .tabulator .tabulator-header .tabulator-col.tabulator-sortable:hover {
  124. cursor: pointer;
  125. background-color: #cdcdcd;
  126. }
  127. .tabulator .tabulator-header .tabulator-col.tabulator-sortable[aria-sort="none"] .tabulator-col-content .tabulator-arrow {
  128. border-top: none;
  129. border-bottom: 6px solid #bbb;
  130. }
  131. .tabulator .tabulator-header .tabulator-col.tabulator-sortable[aria-sort="asc"] .tabulator-col-content .tabulator-arrow {
  132. border-top: none;
  133. border-bottom: 6px solid #666;
  134. }
  135. .tabulator .tabulator-header .tabulator-col.tabulator-sortable[aria-sort="desc"] .tabulator-col-content .tabulator-arrow {
  136. border-top: 6px solid #666;
  137. border-bottom: none;
  138. }
  139. .tabulator .tabulator-header .tabulator-col.tabulator-col-vertical .tabulator-col-content .tabulator-col-title {
  140. -ms-writing-mode: tb-rl;
  141. writing-mode: vertical-rl;
  142. text-orientation: mixed;
  143. display: -ms-flexbox;
  144. display: flex;
  145. -ms-flex-align: center;
  146. align-items: center;
  147. -ms-flex-pack: center;
  148. justify-content: center;
  149. }
  150. .tabulator .tabulator-header .tabulator-col.tabulator-col-vertical.tabulator-col-vertical-flip .tabulator-col-title {
  151. -ms-transform: rotate(180deg);
  152. transform: rotate(180deg);
  153. }
  154. .tabulator .tabulator-header .tabulator-col.tabulator-col-vertical.tabulator-sortable .tabulator-col-title {
  155. padding-right: 0;
  156. padding-top: 20px;
  157. }
  158. .tabulator .tabulator-header .tabulator-col.tabulator-col-vertical.tabulator-sortable.tabulator-col-vertical-flip .tabulator-col-title {
  159. padding-right: 0;
  160. padding-bottom: 20px;
  161. }
  162. .tabulator .tabulator-header .tabulator-col.tabulator-col-vertical.tabulator-sortable .tabulator-arrow {
  163. right: calc(50% - 6px);
  164. }
  165. .tabulator .tabulator-header .tabulator-frozen {
  166. display: inline-block;
  167. position: absolute;
  168. z-index: 10;
  169. }
  170. .tabulator .tabulator-header .tabulator-frozen.tabulator-frozen-left {
  171. border-right: 2px solid #aaa;
  172. }
  173. .tabulator .tabulator-header .tabulator-frozen.tabulator-frozen-right {
  174. border-left: 2px solid #aaa;
  175. }
  176. .tabulator .tabulator-header .tabulator-calcs-holder {
  177. box-sizing: border-box;
  178. min-width: 600%;
  179. background: #f3f3f3 !important;
  180. border-top: 1px solid #aaa;
  181. border-bottom: 1px solid #aaa;
  182. overflow: hidden;
  183. }
  184. .tabulator .tabulator-header .tabulator-calcs-holder .tabulator-row {
  185. background: #f3f3f3 !important;
  186. }
  187. .tabulator .tabulator-header .tabulator-calcs-holder .tabulator-row .tabulator-col-resize-handle {
  188. display: none;
  189. }
  190. .tabulator .tabulator-header .tabulator-frozen-rows-holder {
  191. min-width: 600%;
  192. }
  193. .tabulator .tabulator-header .tabulator-frozen-rows-holder:empty {
  194. display: none;
  195. }
  196. .tabulator .tabulator-tableHolder {
  197. position: relative;
  198. width: 100%;
  199. white-space: nowrap;
  200. overflow: auto;
  201. -webkit-overflow-scrolling: touch;
  202. }
  203. .tabulator .tabulator-tableHolder:focus {
  204. outline: none;
  205. }
  206. .tabulator .tabulator-tableHolder .tabulator-placeholder {
  207. box-sizing: border-box;
  208. display: -ms-flexbox;
  209. display: flex;
  210. -ms-flex-align: center;
  211. align-items: center;
  212. width: 100%;
  213. }
  214. .tabulator .tabulator-tableHolder .tabulator-placeholder[tabulator-render-mode="virtual"] {
  215. min-height: 100%;
  216. min-width: 100%;
  217. }
  218. .tabulator .tabulator-tableHolder .tabulator-placeholder span {
  219. display: inline-block;
  220. margin: 0 auto;
  221. padding: 10px;
  222. color: #ccc;
  223. font-weight: bold;
  224. font-size: 20px;
  225. }
  226. .tabulator .tabulator-tableHolder .tabulator-table {
  227. position: relative;
  228. display: inline-block;
  229. background-color: #fff;
  230. white-space: nowrap;
  231. overflow: visible;
  232. color: #333;
  233. }
  234. .tabulator .tabulator-tableHolder .tabulator-table .tabulator-row.tabulator-calcs {
  235. font-weight: bold;
  236. background: #e2e2e2 !important;
  237. }
  238. .tabulator .tabulator-tableHolder .tabulator-table .tabulator-row.tabulator-calcs.tabulator-calcs-top {
  239. border-bottom: 2px solid #aaa;
  240. }
  241. .tabulator .tabulator-tableHolder .tabulator-table .tabulator-row.tabulator-calcs.tabulator-calcs-bottom {
  242. border-top: 2px solid #aaa;
  243. }
  244. .tabulator .tabulator-footer {
  245. padding: 5px 10px;
  246. border-top: 1px solid #999;
  247. background-color: #e6e6e6;
  248. text-align: right;
  249. color: #555;
  250. font-weight: bold;
  251. white-space: nowrap;
  252. -ms-user-select: none;
  253. user-select: none;
  254. -moz-user-select: none;
  255. -khtml-user-select: none;
  256. -webkit-user-select: none;
  257. -o-user-select: none;
  258. }
  259. .tabulator .tabulator-footer .tabulator-calcs-holder {
  260. box-sizing: border-box;
  261. width: calc(100% + 20px);
  262. margin: -5px -10px 5px -10px;
  263. text-align: left;
  264. background: #f3f3f3 !important;
  265. border-bottom: 1px solid #aaa;
  266. border-top: 1px solid #aaa;
  267. overflow: hidden;
  268. }
  269. .tabulator .tabulator-footer .tabulator-calcs-holder .tabulator-row {
  270. background: #f3f3f3 !important;
  271. }
  272. .tabulator .tabulator-footer .tabulator-calcs-holder .tabulator-row .tabulator-col-resize-handle {
  273. display: none;
  274. }
  275. .tabulator .tabulator-footer .tabulator-calcs-holder:only-child {
  276. margin-bottom: -5px;
  277. border-bottom: none;
  278. }
  279. .tabulator .tabulator-footer .tabulator-paginator {
  280. color: #555;
  281. font-family: inherit;
  282. font-weight: inherit;
  283. font-size: inherit;
  284. }
  285. .tabulator .tabulator-footer .tabulator-page-size {
  286. display: inline-block;
  287. margin: 0 5px;
  288. padding: 2px 5px;
  289. border: 1px solid #aaa;
  290. border-radius: 3px;
  291. }
  292. .tabulator .tabulator-footer .tabulator-pages {
  293. margin: 0 7px;
  294. }
  295. .tabulator .tabulator-footer .tabulator-page {
  296. display: inline-block;
  297. margin: 0 2px;
  298. padding: 2px 5px;
  299. border: 1px solid #aaa;
  300. border-radius: 3px;
  301. background: rgba(255, 255, 255, 0.2);
  302. }
  303. .tabulator .tabulator-footer .tabulator-page.active {
  304. color: #d00;
  305. }
  306. .tabulator .tabulator-footer .tabulator-page:disabled {
  307. opacity: .5;
  308. }
  309. .tabulator .tabulator-footer .tabulator-page:not(.disabled):hover {
  310. cursor: pointer;
  311. background: rgba(0, 0, 0, 0.2);
  312. color: #fff;
  313. }
  314. .tabulator .tabulator-col-resize-handle {
  315. position: absolute;
  316. right: 0;
  317. top: 0;
  318. bottom: 0;
  319. width: 5px;
  320. }
  321. .tabulator .tabulator-col-resize-handle.prev {
  322. left: 0;
  323. right: auto;
  324. }
  325. .tabulator .tabulator-col-resize-handle:hover {
  326. cursor: ew-resize;
  327. }
  328. .tabulator .tabulator-loader {
  329. position: absolute;
  330. display: -ms-flexbox;
  331. display: flex;
  332. -ms-flex-align: center;
  333. align-items: center;
  334. top: 0;
  335. left: 0;
  336. z-index: 100;
  337. height: 100%;
  338. width: 100%;
  339. background: rgba(0, 0, 0, 0.4);
  340. text-align: center;
  341. }
  342. .tabulator .tabulator-loader .tabulator-loader-msg {
  343. display: inline-block;
  344. margin: 0 auto;
  345. padding: 10px 20px;
  346. border-radius: 10px;
  347. background: #fff;
  348. font-weight: bold;
  349. font-size: 16px;
  350. }
  351. .tabulator .tabulator-loader .tabulator-loader-msg.tabulator-loading {
  352. border: 4px solid #333;
  353. color: #000;
  354. }
  355. .tabulator .tabulator-loader .tabulator-loader-msg.tabulator-error {
  356. border: 4px solid #D00;
  357. color: #590000;
  358. }
  359. .tabulator-row {
  360. position: relative;
  361. box-sizing: border-box;
  362. min-height: 22px;
  363. background-color: #fff;
  364. }
  365. .tabulator-row.tabulator-row-even {
  366. background-color: #EFEFEF;
  367. }
  368. .tabulator-row.tabulator-selectable:hover {
  369. background-color: #bbb;
  370. cursor: pointer;
  371. }
  372. .tabulator-row.tabulator-selected {
  373. background-color: #9ABCEA;
  374. }
  375. .tabulator-row.tabulator-selected:hover {
  376. background-color: #769BCC;
  377. cursor: pointer;
  378. }
  379. .tabulator-row.tabulator-row-moving {
  380. border: 1px solid #000;
  381. background: #fff;
  382. }
  383. .tabulator-row.tabulator-moving {
  384. position: absolute;
  385. border-top: 1px solid #aaa;
  386. border-bottom: 1px solid #aaa;
  387. pointer-events: none;
  388. z-index: 15;
  389. }
  390. .tabulator-row .tabulator-row-resize-handle {
  391. position: absolute;
  392. right: 0;
  393. bottom: 0;
  394. left: 0;
  395. height: 5px;
  396. }
  397. .tabulator-row .tabulator-row-resize-handle.prev {
  398. top: 0;
  399. bottom: auto;
  400. }
  401. .tabulator-row .tabulator-row-resize-handle:hover {
  402. cursor: ns-resize;
  403. }
  404. .tabulator-row .tabulator-frozen {
  405. display: inline-block;
  406. position: absolute;
  407. background-color: inherit;
  408. z-index: 10;
  409. }
  410. .tabulator-row .tabulator-frozen.tabulator-frozen-left {
  411. border-right: 2px solid #aaa;
  412. }
  413. .tabulator-row .tabulator-frozen.tabulator-frozen-right {
  414. border-left: 2px solid #aaa;
  415. }
  416. .tabulator-row .tabulator-responsive-collapse {
  417. box-sizing: border-box;
  418. padding: 5px;
  419. border-top: 1px solid #aaa;
  420. border-bottom: 1px solid #aaa;
  421. }
  422. .tabulator-row .tabulator-responsive-collapse:empty {
  423. display: none;
  424. }
  425. .tabulator-row .tabulator-responsive-collapse table {
  426. font-size: 14px;
  427. }
  428. .tabulator-row .tabulator-responsive-collapse table tr td {
  429. position: relative;
  430. }
  431. .tabulator-row .tabulator-responsive-collapse table tr td:first-of-type {
  432. padding-right: 10px;
  433. }
  434. .tabulator-row .tabulator-cell {
  435. display: inline-block;
  436. position: relative;
  437. box-sizing: border-box;
  438. padding: 4px;
  439. border-right: 1px solid #aaa;
  440. vertical-align: middle;
  441. white-space: nowrap;
  442. overflow: hidden;
  443. text-overflow: ellipsis;
  444. }
  445. .tabulator-row .tabulator-cell.tabulator-editing {
  446. border: 1px solid #1D68CD;
  447. padding: 0;
  448. }
  449. .tabulator-row .tabulator-cell.tabulator-editing input, .tabulator-row .tabulator-cell.tabulator-editing select {
  450. border: 1px;
  451. background: transparent;
  452. }
  453. .tabulator-row .tabulator-cell.tabulator-validation-fail {
  454. border: 1px solid #dd0000;
  455. }
  456. .tabulator-row .tabulator-cell.tabulator-validation-fail input, .tabulator-row .tabulator-cell.tabulator-validation-fail select {
  457. border: 1px;
  458. background: transparent;
  459. color: #dd0000;
  460. }
  461. .tabulator-row .tabulator-cell:first-child .tabulator-col-resize-handle.prev {
  462. display: none;
  463. }
  464. .tabulator-row .tabulator-cell.tabulator-row-handle {
  465. display: -ms-inline-flexbox;
  466. display: inline-flex;
  467. -ms-flex-align: center;
  468. align-items: center;
  469. -ms-flex-pack: center;
  470. justify-content: center;
  471. -moz-user-select: none;
  472. -khtml-user-select: none;
  473. -webkit-user-select: none;
  474. -o-user-select: none;
  475. }
  476. .tabulator-row .tabulator-cell.tabulator-row-handle .tabulator-row-handle-box {
  477. width: 80%;
  478. }
  479. .tabulator-row .tabulator-cell.tabulator-row-handle .tabulator-row-handle-box .tabulator-row-handle-bar {
  480. width: 100%;
  481. height: 3px;
  482. margin-top: 2px;
  483. background: #666;
  484. }
  485. .tabulator-row .tabulator-cell .tabulator-data-tree-branch {
  486. display: inline-block;
  487. vertical-align: middle;
  488. height: 9px;
  489. width: 7px;
  490. margin-top: -9px;
  491. margin-right: 5px;
  492. border-bottom-left-radius: 1px;
  493. border-left: 2px solid #aaa;
  494. border-bottom: 2px solid #aaa;
  495. }
  496. .tabulator-row .tabulator-cell .tabulator-data-tree-control {
  497. display: -ms-inline-flexbox;
  498. display: inline-flex;
  499. -ms-flex-pack: center;
  500. justify-content: center;
  501. -ms-flex-align: center;
  502. align-items: center;
  503. vertical-align: middle;
  504. height: 11px;
  505. width: 11px;
  506. margin-right: 5px;
  507. border: 1px solid #333;
  508. border-radius: 2px;
  509. background: rgba(0, 0, 0, 0.1);
  510. overflow: hidden;
  511. }
  512. .tabulator-row .tabulator-cell .tabulator-data-tree-control:hover {
  513. cursor: pointer;
  514. background: rgba(0, 0, 0, 0.2);
  515. }
  516. .tabulator-row .tabulator-cell .tabulator-data-tree-control .tabulator-data-tree-control-collapse {
  517. display: inline-block;
  518. position: relative;
  519. height: 7px;
  520. width: 1px;
  521. background: transparent;
  522. }
  523. .tabulator-row .tabulator-cell .tabulator-data-tree-control .tabulator-data-tree-control-collapse:after {
  524. position: absolute;
  525. content: "";
  526. left: -3px;
  527. top: 3px;
  528. height: 1px;
  529. width: 7px;
  530. background: #333;
  531. }
  532. .tabulator-row .tabulator-cell .tabulator-data-tree-control .tabulator-data-tree-control-expand {
  533. display: inline-block;
  534. position: relative;
  535. height: 7px;
  536. width: 1px;
  537. background: #333;
  538. }
  539. .tabulator-row .tabulator-cell .tabulator-data-tree-control .tabulator-data-tree-control-expand:after {
  540. position: absolute;
  541. content: "";
  542. left: -3px;
  543. top: 3px;
  544. height: 1px;
  545. width: 7px;
  546. background: #333;
  547. }
  548. .tabulator-row .tabulator-cell .tabulator-responsive-collapse-toggle {
  549. display: -ms-inline-flexbox;
  550. display: inline-flex;
  551. -ms-flex-align: center;
  552. align-items: center;
  553. -ms-flex-pack: center;
  554. justify-content: center;
  555. -moz-user-select: none;
  556. -khtml-user-select: none;
  557. -webkit-user-select: none;
  558. -o-user-select: none;
  559. height: 15px;
  560. width: 15px;
  561. border-radius: 20px;
  562. background: #666;
  563. color: #fff;
  564. font-weight: bold;
  565. font-size: 1.1em;
  566. }
  567. .tabulator-row .tabulator-cell .tabulator-responsive-collapse-toggle:hover {
  568. opacity: .7;
  569. }
  570. .tabulator-row .tabulator-cell .tabulator-responsive-collapse-toggle.open .tabulator-responsive-collapse-toggle-close {
  571. display: initial;
  572. }
  573. .tabulator-row .tabulator-cell .tabulator-responsive-collapse-toggle.open .tabulator-responsive-collapse-toggle-open {
  574. display: none;
  575. }
  576. .tabulator-row .tabulator-cell .tabulator-responsive-collapse-toggle .tabulator-responsive-collapse-toggle-close {
  577. display: none;
  578. }
  579. .tabulator-row .tabulator-cell .tabulator-traffic-light {
  580. display: inline-block;
  581. height: 14px;
  582. width: 14px;
  583. border-radius: 14px;
  584. }
  585. .tabulator-row.tabulator-group {
  586. box-sizing: border-box;
  587. border-bottom: 1px solid #999;
  588. border-right: 1px solid #aaa;
  589. border-top: 1px solid #999;
  590. padding: 5px;
  591. padding-left: 10px;
  592. background: #ccc;
  593. font-weight: bold;
  594. min-width: 100%;
  595. }
  596. .tabulator-row.tabulator-group:hover {
  597. cursor: pointer;
  598. background-color: rgba(0, 0, 0, 0.1);
  599. }
  600. .tabulator-row.tabulator-group.tabulator-group-visible .tabulator-arrow {
  601. margin-right: 10px;
  602. border-left: 6px solid transparent;
  603. border-right: 6px solid transparent;
  604. border-top: 6px solid #666;
  605. border-bottom: 0;
  606. }
  607. .tabulator-row.tabulator-group.tabulator-group-level-1 {
  608. padding-left: 30px;
  609. }
  610. .tabulator-row.tabulator-group.tabulator-group-level-2 {
  611. padding-left: 50px;
  612. }
  613. .tabulator-row.tabulator-group.tabulator-group-level-3 {
  614. padding-left: 70px;
  615. }
  616. .tabulator-row.tabulator-group.tabulator-group-level-4 {
  617. padding-left: 90px;
  618. }
  619. .tabulator-row.tabulator-group.tabulator-group-level-5 {
  620. padding-left: 110px;
  621. }
  622. .tabulator-row.tabulator-group .tabulator-group-toggle {
  623. display: inline-block;
  624. }
  625. .tabulator-row.tabulator-group .tabulator-arrow {
  626. display: inline-block;
  627. width: 0;
  628. height: 0;
  629. margin-right: 16px;
  630. border-top: 6px solid transparent;
  631. border-bottom: 6px solid transparent;
  632. border-right: 0;
  633. border-left: 6px solid #666;
  634. vertical-align: middle;
  635. }
  636. .tabulator-row.tabulator-group span {
  637. margin-left: 10px;
  638. color: #d00;
  639. }
  640. .tabulator-menu {
  641. position: absolute;
  642. display: inline-block;
  643. box-sizing: border-box;
  644. background: #fff;
  645. border: 1px solid #aaa;
  646. box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  647. font-size: 14px;
  648. overflow-y: auto;
  649. -webkit-overflow-scrolling: touch;
  650. z-index: 10000;
  651. }
  652. .tabulator-menu .tabulator-menu-item {
  653. padding: 5px 10px;
  654. -webkit-user-select: none;
  655. -ms-user-select: none;
  656. user-select: none;
  657. }
  658. .tabulator-menu .tabulator-menu-item.tabulator-menu-item-disabled {
  659. opacity: .5;
  660. }
  661. .tabulator-menu .tabulator-menu-item:not(.tabulator-menu-item-disabled):hover {
  662. cursor: pointer;
  663. background: #EFEFEF;
  664. }
  665. .tabulator-menu .tabulator-menu-separator {
  666. border-top: 1px solid #aaa;
  667. }
  668. .tabulator-edit-select-list {
  669. position: absolute;
  670. display: inline-block;
  671. box-sizing: border-box;
  672. max-height: 200px;
  673. background: #fff;
  674. border: 1px solid #aaa;
  675. font-size: 14px;
  676. overflow-y: auto;
  677. -webkit-overflow-scrolling: touch;
  678. z-index: 10000;
  679. }
  680. .tabulator-edit-select-list .tabulator-edit-select-list-item {
  681. padding: 4px;
  682. color: #333;
  683. }
  684. .tabulator-edit-select-list .tabulator-edit-select-list-item.active {
  685. color: #fff;
  686. background: #1D68CD;
  687. }
  688. .tabulator-edit-select-list .tabulator-edit-select-list-item:hover {
  689. cursor: pointer;
  690. color: #fff;
  691. background: #1D68CD;
  692. }
  693. .tabulator-edit-select-list .tabulator-edit-select-list-notice {
  694. padding: 4px;
  695. color: #333;
  696. text-align: center;
  697. }
  698. .tabulator-edit-select-list .tabulator-edit-select-list-group {
  699. border-bottom: 1px solid #aaa;
  700. padding: 4px;
  701. padding-top: 6px;
  702. color: #333;
  703. font-weight: bold;
  704. }
  705. .tabulator-print-fullscreen {
  706. position: absolute;
  707. top: 0;
  708. bottom: 0;
  709. left: 0;
  710. right: 0;
  711. z-index: 10000;
  712. }
  713. body.tabulator-print-fullscreen-hide > *:not(.tabulator-print-fullscreen) {
  714. display: none !important;
  715. }
  716. .tabulator-print-table {
  717. border-collapse: collapse;
  718. }
  719. .tabulator-print-table .tabulator-data-tree-branch {
  720. display: inline-block;
  721. vertical-align: middle;
  722. height: 9px;
  723. width: 7px;
  724. margin-top: -9px;
  725. margin-right: 5px;
  726. border-bottom-left-radius: 1px;
  727. border-left: 2px solid #aaa;
  728. border-bottom: 2px solid #aaa;
  729. }
  730. .tabulator-print-table .tabulator-data-tree-control {
  731. display: -ms-inline-flexbox;
  732. display: inline-flex;
  733. -ms-flex-pack: center;
  734. justify-content: center;
  735. -ms-flex-align: center;
  736. align-items: center;
  737. vertical-align: middle;
  738. height: 11px;
  739. width: 11px;
  740. margin-right: 5px;
  741. border: 1px solid #333;
  742. border-radius: 2px;
  743. background: rgba(0, 0, 0, 0.1);
  744. overflow: hidden;
  745. }
  746. .tabulator-print-table .tabulator-data-tree-control:hover {
  747. cursor: pointer;
  748. background: rgba(0, 0, 0, 0.2);
  749. }
  750. .tabulator-print-table .tabulator-data-tree-control .tabulator-data-tree-control-collapse {
  751. display: inline-block;
  752. position: relative;
  753. height: 7px;
  754. width: 1px;
  755. background: transparent;
  756. }
  757. .tabulator-print-table .tabulator-data-tree-control .tabulator-data-tree-control-collapse:after {
  758. position: absolute;
  759. content: "";
  760. left: -3px;
  761. top: 3px;
  762. height: 1px;
  763. width: 7px;
  764. background: #333;
  765. }
  766. .tabulator-print-table .tabulator-data-tree-control .tabulator-data-tree-control-expand {
  767. display: inline-block;
  768. position: relative;
  769. height: 7px;
  770. width: 1px;
  771. background: #333;
  772. }
  773. .tabulator-print-table .tabulator-data-tree-control .tabulator-data-tree-control-expand:after {
  774. position: absolute;
  775. content: "";
  776. left: -3px;
  777. top: 3px;
  778. height: 1px;
  779. width: 7px;
  780. background: #333;
  781. }