Built files from Bizgaze WebServer
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tabulator_site.css 25KB

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