Built files from Bizgaze WebServer
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

tabulator_materialize.css 26KB

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