aa-ledger 1.0.4__py3-none-any.whl → 2.0.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (280) hide show
  1. {aa_ledger-1.0.4.dist-info → aa_ledger-2.0.0.dist-info}/METADATA +5 -6
  2. aa_ledger-2.0.0.dist-info/RECORD +267 -0
  3. ledger/__init__.py +2 -2
  4. ledger/admin.py +23 -18
  5. ledger/api/__init__.py +23 -7
  6. ledger/api/{ledger/admin.py → admin.py} +25 -31
  7. ledger/api/alliance.py +755 -0
  8. ledger/api/character.py +786 -0
  9. ledger/api/corporation.py +1141 -0
  10. ledger/api/{helpers.py → helpers/core.py} +33 -33
  11. ledger/api/helpers/icons.py +372 -0
  12. ledger/api/helpers/planetary_helper.py +354 -0
  13. ledger/api/planetary.py +354 -0
  14. ledger/api/schema.py +240 -15
  15. ledger/app_settings.py +11 -27
  16. ledger/auth_hooks.py +2 -2
  17. ledger/constants.py +50 -177
  18. ledger/decorators.py +2 -46
  19. ledger/forms.py +133 -39
  20. ledger/helpers/billboard.py +194 -144
  21. ledger/helpers/cache.py +105 -0
  22. ledger/helpers/discord.py +2 -4
  23. ledger/helpers/eveonline.py +160 -0
  24. ledger/helpers/ledger_data.py +23 -0
  25. ledger/helpers/ref_type.py +53 -78
  26. ledger/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
  27. ledger/locale/cs_CZ/LC_MESSAGES/django.po +349 -193
  28. ledger/locale/de/LC_MESSAGES/django.mo +0 -0
  29. ledger/locale/de/LC_MESSAGES/django.po +528 -379
  30. ledger/locale/django.pot +721 -546
  31. ledger/locale/es/LC_MESSAGES/django.mo +0 -0
  32. ledger/locale/es/LC_MESSAGES/django.po +349 -194
  33. ledger/locale/fr_FR/LC_MESSAGES/django.mo +0 -0
  34. ledger/locale/fr_FR/LC_MESSAGES/django.po +349 -193
  35. ledger/locale/it_IT/LC_MESSAGES/django.mo +0 -0
  36. ledger/locale/it_IT/LC_MESSAGES/django.po +349 -193
  37. ledger/locale/ja/LC_MESSAGES/django.mo +0 -0
  38. ledger/locale/ja/LC_MESSAGES/django.po +348 -193
  39. ledger/locale/ko_KR/LC_MESSAGES/django.mo +0 -0
  40. ledger/locale/ko_KR/LC_MESSAGES/django.po +349 -193
  41. ledger/locale/nl_NL/LC_MESSAGES/django.mo +0 -0
  42. ledger/locale/nl_NL/LC_MESSAGES/django.po +349 -193
  43. ledger/locale/pl_PL/LC_MESSAGES/django.mo +0 -0
  44. ledger/locale/pl_PL/LC_MESSAGES/django.po +350 -193
  45. ledger/locale/ru/LC_MESSAGES/django.mo +0 -0
  46. ledger/locale/ru/LC_MESSAGES/django.po +348 -193
  47. ledger/locale/sk/LC_MESSAGES/django.mo +0 -0
  48. ledger/locale/sk/LC_MESSAGES/django.po +348 -193
  49. ledger/locale/uk/LC_MESSAGES/django.mo +0 -0
  50. ledger/locale/uk/LC_MESSAGES/django.po +348 -193
  51. ledger/locale/zh_Hans/LC_MESSAGES/django.mo +0 -0
  52. ledger/locale/zh_Hans/LC_MESSAGES/django.po +348 -193
  53. ledger/managers/character_audit_manager.py +28 -20
  54. ledger/managers/character_journal_manager.py +185 -357
  55. ledger/managers/character_mining_manager.py +52 -26
  56. ledger/managers/character_planetary_manager.py +178 -136
  57. ledger/managers/corporation_audit_manager.py +36 -27
  58. ledger/managers/corporation_journal_manager.py +92 -56
  59. ledger/managers/general_manager.py +8 -7
  60. ledger/migrations/0018_remove_characterplanet_ledger_char_planet__58a5b6_idx_and_more.py +44 -0
  61. ledger/migrations/0019_rename_characteraudit_characterowner_and_more.py +48 -0
  62. ledger/models/__init__.py +5 -11
  63. ledger/models/characteraudit.py +101 -109
  64. ledger/models/corporationaudit.py +94 -49
  65. ledger/models/general.py +105 -211
  66. ledger/models/helpers/update_manager.py +302 -0
  67. ledger/models/planetary.py +60 -205
  68. ledger/providers.py +101 -0
  69. ledger/static/ledger/css/{ledger.css → aa-ledger.css} +54 -28
  70. ledger/static/ledger/js/aa-ledger.js +124 -0
  71. ledger/static/ledger/js/charts.js +25 -1
  72. ledger/static/ledger/js/view-alliance-ledger.js +383 -0
  73. ledger/static/ledger/js/view-character-ledger.js +388 -0
  74. ledger/static/ledger/js/view-corporation-ledger.js +402 -0
  75. ledger/static/ledger/js/view-planetary.js +492 -0
  76. ledger/static/ledger/libs/amCharts/5.14.4/js/flow.js +2 -0
  77. ledger/static/ledger/libs/amCharts/5.14.4/js/index.js +2 -0
  78. ledger/static/ledger/libs/amCharts/5.14.4/js/percent.js +2 -0
  79. ledger/static/ledger/libs/amCharts/5.14.4/js/themes/Animated.js +2 -0
  80. ledger/static/ledger/libs/amCharts/5.14.4/js/themes/Dark.js +2 -0
  81. ledger/static/ledger/libs/amCharts/5.14.4/js/xy.js +2 -0
  82. ledger/static/ledger/libs/datatables/2.3.5/css/dataTables.bootstrap5.css +610 -0
  83. ledger/static/ledger/libs/datatables/2.3.5/js/dataTables.bootstrap5.js +122 -0
  84. ledger/static/ledger/libs/datatables/2.3.5/js/dataTables.js +14127 -0
  85. ledger/static/ledger/libs/datatables/Extensions/ColumnControl/1.1.1/css/columnControl.bootstrap5.css +516 -0
  86. ledger/static/ledger/libs/datatables/Extensions/ColumnControl/1.1.1/css/columnControl.dataTables.css +529 -0
  87. ledger/static/ledger/libs/datatables/Extensions/ColumnControl/1.1.1/js/columnControl.bootstrap5.js +73 -0
  88. ledger/static/ledger/libs/datatables/Extensions/ColumnControl/1.1.1/js/dataTables.columnControl.js +3090 -0
  89. ledger/static/ledger/libs/datatables/Extensions/FixedHeader/4.0.4/css/fixedHeader.bootstrap5.css +20 -0
  90. ledger/static/ledger/libs/datatables/Extensions/FixedHeader/4.0.4/js/dataTables.fixedHeader.js +1203 -0
  91. ledger/static/ledger/libs/datatables/Extensions/FixedHeader/4.0.4/js/fixedHeader.bootstrap5.js +59 -0
  92. ledger/tasks.py +157 -141
  93. ledger/templates/ledger/base.html +59 -21
  94. ledger/templates/ledger/bundles/aa-ledger-css.html +3 -0
  95. ledger/templates/ledger/bundles/aa-ledger-js.html +3 -0
  96. ledger/templates/ledger/bundles/view-alliance-ledger-js.html +14 -0
  97. ledger/templates/ledger/bundles/view-character-ledger-js.html +15 -0
  98. ledger/templates/ledger/bundles/view-character-planetary-css.html +3 -0
  99. ledger/templates/ledger/bundles/view-character-planetary-js.html +4 -0
  100. ledger/templates/ledger/bundles/view-corporation-ledger-js.html +15 -0
  101. ledger/templates/ledger/partials/modal/confirm.html +0 -1
  102. ledger/templates/ledger/partials/modal/request-accept-delete-alliance.html +38 -0
  103. ledger/templates/ledger/partials/modal/request-accept-delete-character.html +38 -0
  104. ledger/templates/ledger/partials/modal/request-accept-delete-corporation.html +38 -0
  105. ledger/templates/ledger/partials/modal/request-accept-switch-notification.html +38 -0
  106. ledger/templates/ledger/partials/modal/request-view-alliance-details.html +26 -0
  107. ledger/templates/ledger/partials/modal/request-view-character-details.html +26 -0
  108. ledger/templates/ledger/partials/modal/request-view-corporation-details.html +26 -0
  109. ledger/templates/ledger/partials/modal/request-view-extractor.html +32 -0
  110. ledger/templates/ledger/partials/modal/request-view-factory.html +31 -0
  111. ledger/templates/ledger/partials/{menu → navigation}/administration.html +8 -0
  112. ledger/templates/ledger/partials/{menu → navigation}/navigation.html +2 -2
  113. ledger/templates/ledger/partials/{administration → view-alliance-administration}/alliance_corporations.html +3 -3
  114. ledger/templates/ledger/partials/view-alliance-administration/dashboard.html +81 -0
  115. ledger/templates/ledger/partials/view-alliance-ledger/alliance-billboard.html +25 -0
  116. ledger/templates/ledger/partials/view-alliance-ledger/alliance-ledger-details.html +21 -0
  117. ledger/templates/ledger/partials/view-alliance-ledger/alliance-table.html +24 -0
  118. ledger/templates/ledger/partials/view-alliance-ledger/information/daily.html +18 -0
  119. ledger/templates/ledger/partials/view-alliance-ledger/information/hourly.html +18 -0
  120. ledger/templates/ledger/partials/view-alliance-ledger/information/summary.html +19 -0
  121. ledger/templates/ledger/partials/{administration → view-character-administration}/character.html +1 -9
  122. ledger/templates/ledger/partials/{administration → view-character-administration}/dashboard.html +0 -34
  123. ledger/templates/ledger/partials/view-character-ledger/character-billboard.html +25 -0
  124. ledger/templates/ledger/partials/view-character-ledger/character-ledger-details.html +21 -0
  125. ledger/templates/ledger/partials/view-character-ledger/character-table.html +25 -0
  126. ledger/templates/ledger/partials/view-character-ledger/information/daily.html +18 -0
  127. ledger/templates/ledger/partials/view-character-ledger/information/hourly.html +18 -0
  128. ledger/templates/ledger/partials/view-character-ledger/information/summary.html +19 -0
  129. ledger/templates/ledger/partials/view-character-planetary/extractor-table.html +24 -0
  130. ledger/templates/ledger/partials/view-character-planetary/factory-table.html +24 -0
  131. ledger/templates/ledger/partials/view-character-planetary/planetary-table.html +22 -0
  132. ledger/templates/ledger/partials/view-character-planetary/storage-table.html +23 -0
  133. ledger/templates/ledger/partials/{administration → view-corporation-administration}/corporation.html +5 -13
  134. ledger/templates/ledger/partials/{administration → view-corporation-administration}/corporation_characters.html +1 -1
  135. ledger/templates/ledger/partials/view-corporation-administration/dashboard.html +81 -0
  136. ledger/templates/ledger/partials/view-corporation-ledger/corporation-billboard.html +25 -0
  137. ledger/templates/ledger/partials/view-corporation-ledger/corporation-ledger-details.html +21 -0
  138. ledger/templates/ledger/partials/view-corporation-ledger/corporation-table.html +26 -0
  139. ledger/templates/ledger/partials/view-corporation-ledger/information/daily.html +18 -0
  140. ledger/templates/ledger/partials/view-corporation-ledger/information/hourly.html +18 -0
  141. ledger/templates/ledger/partials/view-corporation-ledger/information/summary.html +19 -0
  142. ledger/templates/ledger/view-administration.html +62 -0
  143. ledger/templates/ledger/view-alliance-administration.html +49 -0
  144. ledger/templates/ledger/view-alliance-ledger.html +72 -0
  145. ledger/templates/ledger/view-alliance-overview.html +131 -0
  146. ledger/templates/ledger/view-character-administration.html +42 -0
  147. ledger/templates/ledger/view-character-ledger.html +73 -0
  148. ledger/templates/ledger/view-character-overview.html +135 -0
  149. ledger/templates/ledger/view-character-planetary-overview.html +135 -0
  150. ledger/templates/ledger/view-character-planetary.html +73 -0
  151. ledger/templates/ledger/view-corporation-administration.html +42 -0
  152. ledger/templates/ledger/view-corporation-ledger.html +73 -0
  153. ledger/templates/ledger/view-corporation-overview.html +131 -0
  154. ledger/templatetags/ledger.py +3 -5
  155. ledger/tests/__init__.py +187 -0
  156. ledger/tests/test_admin.py +164 -68
  157. ledger/tests/test_auth_hook.py +31 -13
  158. ledger/tests/test_decarators.py +14 -79
  159. ledger/tests/test_discord_installed.py +0 -1
  160. ledger/tests/test_helpers/test_ledger_data.py +19 -0
  161. ledger/tests/test_managers/test_character_audit_manager.py +111 -69
  162. ledger/tests/test_managers/test_character_journal_manager.py +48 -208
  163. ledger/tests/test_managers/test_character_mining_manager.py +37 -16
  164. ledger/tests/test_managers/test_corporation_division_manager.py +66 -28
  165. ledger/tests/test_managers/test_corporation_journal_manager.py +39 -42
  166. ledger/tests/test_managers/test_general_manager.py +78 -18
  167. ledger/tests/test_managers/test_planetary_manager.py +73 -32
  168. ledger/tests/test_models/test_characteraudit.py +58 -74
  169. ledger/tests/test_models/test_characterminingledger.py +20 -26
  170. ledger/tests/test_models/test_characterwalletjournal.py +10 -33
  171. ledger/tests/test_models/test_corporationaudit.py +41 -35
  172. ledger/tests/test_models/test_corporationwalletjournal.py +35 -32
  173. ledger/tests/test_models/test_general.py +44 -11
  174. ledger/tests/test_models/test_planetary.py +14 -80
  175. ledger/tests/test_templatetags.py +2 -7
  176. ledger/tests/test_views/corporation/test_add_corp.py +16 -35
  177. ledger/tests/test_views/corporation/test_delete_corporation.py +66 -42
  178. ledger/tests/test_views/test_access.py +512 -545
  179. ledger/tests/test_views/test_add_ally.py +57 -46
  180. ledger/tests/test_views/test_add_char.py +21 -33
  181. ledger/tests/test_views/test_delete_character.py +24 -21
  182. ledger/tests/testdata/README_ESI_STUB.md +430 -0
  183. ledger/tests/testdata/esi_stub_openapi.py +511 -0
  184. ledger/tests/testdata/integrations/__init__.py +0 -0
  185. ledger/tests/testdata/{load_eveuniverse.py → integrations/eveuniverse.py} +0 -1
  186. ledger/tests/testdata/integrations/planetary.py +13 -0
  187. ledger/tests/testdata/json/factory.json +281 -0
  188. ledger/tests/testdata/json/inactive.json +281 -0
  189. ledger/tests/testdata/json/pins.json +175 -272
  190. ledger/tests/testdata/json/route.json +95 -528
  191. ledger/tests/testdata/test_esi_stub.py +468 -0
  192. ledger/tests/testdata/utils.py +601 -0
  193. ledger/thirdparty/charlink_hook.py +60 -30
  194. ledger/urls.py +0 -135
  195. ledger/views/alliance/add_ally.py +2 -4
  196. ledger/views/alliance/alliance_ledger.py +64 -147
  197. ledger/views/character/add_char.py +8 -10
  198. ledger/views/character/character_ledger.py +60 -126
  199. ledger/views/character/planetary.py +5 -98
  200. ledger/views/corporation/add_corp.py +10 -12
  201. ledger/views/corporation/corporation_ledger.py +65 -327
  202. ledger/views/index.py +92 -30
  203. aa_ledger-1.0.4.dist-info/RECORD +0 -236
  204. ledger/api/api_helper/planetary_helper.py +0 -107
  205. ledger/api/ledger/__init__.py +0 -7
  206. ledger/api/ledger/planetary.py +0 -231
  207. ledger/helpers/alliance.py +0 -317
  208. ledger/helpers/character.py +0 -251
  209. ledger/helpers/core.py +0 -665
  210. ledger/helpers/corporation.py +0 -427
  211. ledger/helpers/data_exporter.py +0 -452
  212. ledger/static/ledger/js/planetary-confirm.js +0 -66
  213. ledger/static/ledger/js/planetary.js +0 -143
  214. ledger/templates/ledger/admin.html +0 -43
  215. ledger/templates/ledger/allyledger/admin/alliance_administration.html +0 -46
  216. ledger/templates/ledger/allyledger/admin/alliance_overview.html +0 -108
  217. ledger/templates/ledger/allyledger/alliance_ledger.html +0 -86
  218. ledger/templates/ledger/bundles/character-ledger-bundles.html +0 -66
  219. ledger/templates/ledger/bundles/corporation-ledger-bundles.html +0 -75
  220. ledger/templates/ledger/bundles/ledger-bundles.html +0 -23
  221. ledger/templates/ledger/bundles/ledger-css.html +0 -3
  222. ledger/templates/ledger/bundles/planetary-bundles.html +0 -50
  223. ledger/templates/ledger/bundles/table-css.html +0 -3
  224. ledger/templates/ledger/charledger/admin/character_administration.html +0 -39
  225. ledger/templates/ledger/charledger/admin/character_overview.html +0 -106
  226. ledger/templates/ledger/charledger/character_ledger.html +0 -94
  227. ledger/templates/ledger/charledger/planetary/admin/planetary_overview.html +0 -123
  228. ledger/templates/ledger/charledger/planetary/planetary_ledger.html +0 -54
  229. ledger/templates/ledger/corpledger/admin/corporation_administration.html +0 -39
  230. ledger/templates/ledger/corpledger/admin/corporation_overview.html +0 -108
  231. ledger/templates/ledger/corpledger/corporation_ledger.html +0 -129
  232. ledger/templates/ledger/data-export.html +0 -78
  233. ledger/templates/ledger/error.html +0 -31
  234. ledger/templates/ledger/partials/form/error-message.html +0 -1
  235. ledger/templates/ledger/partials/information/daily.html +0 -56
  236. ledger/templates/ledger/partials/information/day.html +0 -48
  237. ledger/templates/ledger/partials/information/error.html +0 -8
  238. ledger/templates/ledger/partials/information/hourly.html +0 -53
  239. ledger/templates/ledger/partials/information/summary.html +0 -88
  240. ledger/templates/ledger/partials/information/view_character_content.html +0 -35
  241. ledger/templates/ledger/partials/modal/switchalarm_confirm.html +0 -39
  242. ledger/templates/ledger/partials/modal/view_extractor.html +0 -48
  243. ledger/templates/ledger/partials/modal/view_factory.html +0 -123
  244. ledger/templates/ledger/partials/table/char-ledger.html +0 -85
  245. ledger/templates/ledger/partials/table/corp-ledger.html +0 -66
  246. ledger/templates/ledger/partials/table/planetary.html +0 -18
  247. ledger/templates/ledger/partials/thirdparty/billboard.html +0 -22
  248. ledger/templates/ledger/partials/view/card.html +0 -160
  249. ledger/templates/ledger/permission.html +0 -2
  250. ledger/tests/test_helpers/test_billboard.py +0 -11
  251. ledger/tests/test_helpers/test_data_exporter.py +0 -207
  252. ledger/tests/test_tasks.py +0 -282
  253. ledger/tests/test_view_helpers/test_core.py +0 -47
  254. ledger/tests/test_views/corporation/test_corporation.py +0 -267
  255. ledger/tests/test_views/test_planetary.py +0 -137
  256. ledger/tests/testdata/esi_stub.py +0 -109
  257. ledger/tests/testdata/esi_stub_migration.py +0 -80
  258. ledger/tests/testdata/generate_characteraudit.py +0 -106
  259. ledger/tests/testdata/generate_corporationaudit.py +0 -74
  260. ledger/tests/testdata/generate_events.py +0 -31
  261. ledger/tests/testdata/generate_miningledger.py +0 -13
  262. ledger/tests/testdata/generate_planets.py +0 -48
  263. ledger/tests/testdata/generate_walletjournal.py +0 -42
  264. ledger/tests/testdata/json/czarno-pins.json +0 -240
  265. ledger/tests/testdata/json/czarno-routes.json +0 -165
  266. ledger/tests/testdata/json/pins2.json +0 -538
  267. {aa_ledger-1.0.4.dist-info → aa_ledger-2.0.0.dist-info}/WHEEL +0 -0
  268. {aa_ledger-1.0.4.dist-info → aa_ledger-2.0.0.dist-info}/licenses/LICENSE +0 -0
  269. /ledger/{tests/test_view_helpers → api/helpers}/__init__.py +0 -0
  270. /ledger/templates/ledger/bundles/{ally-administration-bundles.html → view-alliance-administration-js.html} +0 -0
  271. /ledger/templates/ledger/bundles/{char-administration-bundles.html → view-character-administration-js.html} +0 -0
  272. /ledger/templates/ledger/bundles/{corp-administration-bundles.html → view-corporation-administration-js.html} +0 -0
  273. /ledger/templates/ledger/partials/{administration → view-alliance-administration}/alliance.html +0 -0
  274. /ledger/tests/testdata/{esi.json → esi_test_data.json} +0 -0
  275. /ledger/tests/testdata/{allianceauth.json → integrations/allianceauth.json} +0 -0
  276. /ledger/tests/testdata/{load_allianceauth.py → integrations/allianceauth.py} +0 -0
  277. /ledger/tests/testdata/{eveentity.json → integrations/eveentity.json} +0 -0
  278. /ledger/tests/testdata/{load_eveentity.py → integrations/eveentity.py} +0 -0
  279. /ledger/tests/testdata/{eveuniverse.json → integrations/eveuniverse.json} +0 -0
  280. /ledger/tests/testdata/{planetary.json → integrations/planetary.json} +0 -0
@@ -0,0 +1,610 @@
1
+ :root {
2
+ --dt-row-selected: 13, 110, 253;
3
+ --dt-row-selected-text: 255, 255, 255;
4
+ --dt-row-selected-link: 228, 228, 228;
5
+ --dt-row-stripe: 0, 0, 0;
6
+ --dt-row-hover: 0, 0, 0;
7
+ --dt-column-ordering: 0, 0, 0;
8
+ --dt-header-align-items: center;
9
+ --dt-header-vertical-align: middle;
10
+ --dt-html-background: white;
11
+ }
12
+ :root.dark {
13
+ --dt-html-background: rgb(33, 37, 41);
14
+ }
15
+
16
+ table.dataTable tbody td.dt-control {
17
+ text-align: center;
18
+ cursor: pointer;
19
+ }
20
+ table.dataTable tbody td.dt-control:before {
21
+ display: inline-block;
22
+ box-sizing: border-box;
23
+ content: "";
24
+ border-top: 5px solid transparent;
25
+ border-left: 10px solid rgba(0, 0, 0, 0.5);
26
+ border-bottom: 5px solid transparent;
27
+ border-right: 0px solid transparent;
28
+ }
29
+ table.dataTable tbody tr.dt-hasChild td.dt-control:before {
30
+ border-top: 10px solid rgba(0, 0, 0, 0.5);
31
+ border-left: 5px solid transparent;
32
+ border-bottom: 0px solid transparent;
33
+ border-right: 5px solid transparent;
34
+ }
35
+ table.dataTable tfoot:empty {
36
+ display: none;
37
+ }
38
+
39
+ html.dark table.dataTable td.dt-control:before,
40
+ :root[data-bs-theme=dark] table.dataTable td.dt-control:before,
41
+ :root[data-theme=dark] table.dataTable td.dt-control:before {
42
+ border-left-color: rgba(255, 255, 255, 0.5);
43
+ }
44
+ html.dark table.dataTable tr.dt-hasChild td.dt-control:before,
45
+ :root[data-bs-theme=dark] table.dataTable tr.dt-hasChild td.dt-control:before,
46
+ :root[data-theme=dark] table.dataTable tr.dt-hasChild td.dt-control:before {
47
+ border-top-color: rgba(255, 255, 255, 0.5);
48
+ border-left-color: transparent;
49
+ }
50
+
51
+ div.dt-scroll {
52
+ width: 100%;
53
+ }
54
+
55
+ div.dt-scroll-body thead tr,
56
+ div.dt-scroll-body tfoot tr {
57
+ height: 0;
58
+ }
59
+ div.dt-scroll-body thead tr th, div.dt-scroll-body thead tr td,
60
+ div.dt-scroll-body tfoot tr th,
61
+ div.dt-scroll-body tfoot tr td {
62
+ height: 0 !important;
63
+ padding-top: 0px !important;
64
+ padding-bottom: 0px !important;
65
+ border-top-width: 0px !important;
66
+ border-bottom-width: 0px !important;
67
+ }
68
+ div.dt-scroll-body thead tr th div.dt-scroll-sizing, div.dt-scroll-body thead tr td div.dt-scroll-sizing,
69
+ div.dt-scroll-body tfoot tr th div.dt-scroll-sizing,
70
+ div.dt-scroll-body tfoot tr td div.dt-scroll-sizing {
71
+ height: 0 !important;
72
+ overflow: hidden !important;
73
+ }
74
+
75
+ table.dataTable thead > tr > th:active,
76
+ table.dataTable thead > tr > td:active {
77
+ outline: none;
78
+ }
79
+ table.dataTable thead > tr > th.dt-orderable-asc span.dt-column-order:before, table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order:before,
80
+ table.dataTable thead > tr > td.dt-orderable-asc span.dt-column-order:before,
81
+ table.dataTable thead > tr > td.dt-ordering-asc span.dt-column-order:before {
82
+ position: absolute;
83
+ display: block;
84
+ bottom: 50%;
85
+ content: "\25B2";
86
+ content: "\25B2"/"";
87
+ }
88
+ table.dataTable thead > tr > th.dt-orderable-desc span.dt-column-order:after, table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order:after,
89
+ table.dataTable thead > tr > td.dt-orderable-desc span.dt-column-order:after,
90
+ table.dataTable thead > tr > td.dt-ordering-desc span.dt-column-order:after {
91
+ position: absolute;
92
+ display: block;
93
+ top: 50%;
94
+ content: "\25BC";
95
+ content: "\25BC"/"";
96
+ }
97
+ table.dataTable thead > tr > th.dt-orderable-asc span.dt-column-order, table.dataTable thead > tr > th.dt-orderable-desc span.dt-column-order, table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order, table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order,
98
+ table.dataTable thead > tr > td.dt-orderable-asc span.dt-column-order,
99
+ table.dataTable thead > tr > td.dt-orderable-desc span.dt-column-order,
100
+ table.dataTable thead > tr > td.dt-ordering-asc span.dt-column-order,
101
+ table.dataTable thead > tr > td.dt-ordering-desc span.dt-column-order {
102
+ position: relative;
103
+ width: 12px;
104
+ height: 24px;
105
+ }
106
+ table.dataTable thead > tr > th.dt-orderable-asc span.dt-column-order:before, table.dataTable thead > tr > th.dt-orderable-asc span.dt-column-order:after, table.dataTable thead > tr > th.dt-orderable-desc span.dt-column-order:before, table.dataTable thead > tr > th.dt-orderable-desc span.dt-column-order:after, table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order:before, table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order:after, table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order:before, table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order:after,
107
+ table.dataTable thead > tr > td.dt-orderable-asc span.dt-column-order:before,
108
+ table.dataTable thead > tr > td.dt-orderable-asc span.dt-column-order:after,
109
+ table.dataTable thead > tr > td.dt-orderable-desc span.dt-column-order:before,
110
+ table.dataTable thead > tr > td.dt-orderable-desc span.dt-column-order:after,
111
+ table.dataTable thead > tr > td.dt-ordering-asc span.dt-column-order:before,
112
+ table.dataTable thead > tr > td.dt-ordering-asc span.dt-column-order:after,
113
+ table.dataTable thead > tr > td.dt-ordering-desc span.dt-column-order:before,
114
+ table.dataTable thead > tr > td.dt-ordering-desc span.dt-column-order:after {
115
+ left: 0;
116
+ opacity: 0.125;
117
+ line-height: 9px;
118
+ font-size: 0.8em;
119
+ }
120
+ table.dataTable thead > tr > th.dt-orderable-asc, table.dataTable thead > tr > th.dt-orderable-desc,
121
+ table.dataTable thead > tr > td.dt-orderable-asc,
122
+ table.dataTable thead > tr > td.dt-orderable-desc {
123
+ cursor: pointer;
124
+ }
125
+ table.dataTable thead > tr > th.dt-orderable-asc:hover, table.dataTable thead > tr > th.dt-orderable-desc:hover,
126
+ table.dataTable thead > tr > td.dt-orderable-asc:hover,
127
+ table.dataTable thead > tr > td.dt-orderable-desc:hover {
128
+ outline: 2px solid rgba(0, 0, 0, 0.05);
129
+ outline-offset: -2px;
130
+ }
131
+ table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order:before, table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order:after,
132
+ table.dataTable thead > tr > td.dt-ordering-asc span.dt-column-order:before,
133
+ table.dataTable thead > tr > td.dt-ordering-desc span.dt-column-order:after {
134
+ opacity: 0.6;
135
+ }
136
+ table.dataTable thead > tr > th.dt-orderable-none:not(.dt-ordering-asc, .dt-ordering-desc) span.dt-column-order:empty, table.dataTable thead > tr > th.sorting_desc_disabled span.dt-column-order:after, table.dataTable thead > tr > th.sorting_asc_disabled span.dt-column-order:before,
137
+ table.dataTable thead > tr > td.dt-orderable-none:not(.dt-ordering-asc, .dt-ordering-desc) span.dt-column-order:empty,
138
+ table.dataTable thead > tr > td.sorting_desc_disabled span.dt-column-order:after,
139
+ table.dataTable thead > tr > td.sorting_asc_disabled span.dt-column-order:before {
140
+ display: none;
141
+ }
142
+ table.dataTable thead > tr > th:active,
143
+ table.dataTable thead > tr > td:active {
144
+ outline: none;
145
+ }
146
+
147
+ table.dataTable thead > tr > th div.dt-column-header,
148
+ table.dataTable thead > tr > th div.dt-column-footer,
149
+ table.dataTable thead > tr > td div.dt-column-header,
150
+ table.dataTable thead > tr > td div.dt-column-footer,
151
+ table.dataTable tfoot > tr > th div.dt-column-header,
152
+ table.dataTable tfoot > tr > th div.dt-column-footer,
153
+ table.dataTable tfoot > tr > td div.dt-column-header,
154
+ table.dataTable tfoot > tr > td div.dt-column-footer {
155
+ display: flex;
156
+ justify-content: space-between;
157
+ align-items: var(--dt-header-align-items);
158
+ gap: 4px;
159
+ }
160
+ table.dataTable thead > tr > th div.dt-column-header span.dt-column-title,
161
+ table.dataTable thead > tr > th div.dt-column-footer span.dt-column-title,
162
+ table.dataTable thead > tr > td div.dt-column-header span.dt-column-title,
163
+ table.dataTable thead > tr > td div.dt-column-footer span.dt-column-title,
164
+ table.dataTable tfoot > tr > th div.dt-column-header span.dt-column-title,
165
+ table.dataTable tfoot > tr > th div.dt-column-footer span.dt-column-title,
166
+ table.dataTable tfoot > tr > td div.dt-column-header span.dt-column-title,
167
+ table.dataTable tfoot > tr > td div.dt-column-footer span.dt-column-title {
168
+ flex-grow: 1;
169
+ }
170
+ table.dataTable thead > tr > th div.dt-column-header span.dt-column-title:empty,
171
+ table.dataTable thead > tr > th div.dt-column-footer span.dt-column-title:empty,
172
+ table.dataTable thead > tr > td div.dt-column-header span.dt-column-title:empty,
173
+ table.dataTable thead > tr > td div.dt-column-footer span.dt-column-title:empty,
174
+ table.dataTable tfoot > tr > th div.dt-column-header span.dt-column-title:empty,
175
+ table.dataTable tfoot > tr > th div.dt-column-footer span.dt-column-title:empty,
176
+ table.dataTable tfoot > tr > td div.dt-column-header span.dt-column-title:empty,
177
+ table.dataTable tfoot > tr > td div.dt-column-footer span.dt-column-title:empty {
178
+ display: none;
179
+ }
180
+
181
+ div.dt-scroll-body > table.dataTable > thead > tr > th,
182
+ div.dt-scroll-body > table.dataTable > thead > tr > td {
183
+ overflow: hidden;
184
+ }
185
+
186
+ :root.dark table.dataTable thead > tr > th.dt-orderable-asc:hover, :root.dark table.dataTable thead > tr > th.dt-orderable-desc:hover,
187
+ :root.dark table.dataTable thead > tr > td.dt-orderable-asc:hover,
188
+ :root.dark table.dataTable thead > tr > td.dt-orderable-desc:hover,
189
+ :root[data-bs-theme=dark] table.dataTable thead > tr > th.dt-orderable-asc:hover,
190
+ :root[data-bs-theme=dark] table.dataTable thead > tr > th.dt-orderable-desc:hover,
191
+ :root[data-bs-theme=dark] table.dataTable thead > tr > td.dt-orderable-asc:hover,
192
+ :root[data-bs-theme=dark] table.dataTable thead > tr > td.dt-orderable-desc:hover {
193
+ outline: 2px solid rgba(255, 255, 255, 0.05);
194
+ }
195
+
196
+ div.dt-processing {
197
+ position: absolute;
198
+ top: 50%;
199
+ left: 50%;
200
+ width: 200px;
201
+ margin-left: -100px;
202
+ margin-top: -22px;
203
+ text-align: center;
204
+ padding: 2px;
205
+ z-index: 10;
206
+ }
207
+ div.dt-processing > div:last-child {
208
+ position: relative;
209
+ width: 80px;
210
+ height: 15px;
211
+ margin: 1em auto;
212
+ }
213
+ div.dt-processing > div:last-child > div {
214
+ position: absolute;
215
+ top: 0;
216
+ width: 13px;
217
+ height: 13px;
218
+ border-radius: 50%;
219
+ background: rgb(13, 110, 253);
220
+ background: rgb(var(--dt-row-selected));
221
+ animation-timing-function: cubic-bezier(0, 1, 1, 0);
222
+ }
223
+ div.dt-processing > div:last-child > div:nth-child(1) {
224
+ left: 8px;
225
+ animation: datatables-loader-1 0.6s infinite;
226
+ }
227
+ div.dt-processing > div:last-child > div:nth-child(2) {
228
+ left: 8px;
229
+ animation: datatables-loader-2 0.6s infinite;
230
+ }
231
+ div.dt-processing > div:last-child > div:nth-child(3) {
232
+ left: 32px;
233
+ animation: datatables-loader-2 0.6s infinite;
234
+ }
235
+ div.dt-processing > div:last-child > div:nth-child(4) {
236
+ left: 56px;
237
+ animation: datatables-loader-3 0.6s infinite;
238
+ }
239
+
240
+ @keyframes datatables-loader-1 {
241
+ 0% {
242
+ transform: scale(0);
243
+ }
244
+ 100% {
245
+ transform: scale(1);
246
+ }
247
+ }
248
+ @keyframes datatables-loader-3 {
249
+ 0% {
250
+ transform: scale(1);
251
+ }
252
+ 100% {
253
+ transform: scale(0);
254
+ }
255
+ }
256
+ @keyframes datatables-loader-2 {
257
+ 0% {
258
+ transform: translate(0, 0);
259
+ }
260
+ 100% {
261
+ transform: translate(24px, 0);
262
+ }
263
+ }
264
+ table.dataTable.nowrap th, table.dataTable.nowrap td {
265
+ white-space: nowrap;
266
+ }
267
+ table.dataTable th,
268
+ table.dataTable td {
269
+ box-sizing: border-box;
270
+ }
271
+ table.dataTable th.dt-type-numeric, table.dataTable th.dt-type-date,
272
+ table.dataTable td.dt-type-numeric,
273
+ table.dataTable td.dt-type-date {
274
+ text-align: right;
275
+ }
276
+ table.dataTable th.dt-type-numeric div.dt-column-header,
277
+ table.dataTable th.dt-type-numeric div.dt-column-footer, table.dataTable th.dt-type-date div.dt-column-header,
278
+ table.dataTable th.dt-type-date div.dt-column-footer,
279
+ table.dataTable td.dt-type-numeric div.dt-column-header,
280
+ table.dataTable td.dt-type-numeric div.dt-column-footer,
281
+ table.dataTable td.dt-type-date div.dt-column-header,
282
+ table.dataTable td.dt-type-date div.dt-column-footer {
283
+ flex-direction: row-reverse;
284
+ }
285
+ table.dataTable th.dt-left,
286
+ table.dataTable td.dt-left {
287
+ text-align: left;
288
+ }
289
+ table.dataTable th.dt-left div.dt-column-header,
290
+ table.dataTable th.dt-left div.dt-column-footer,
291
+ table.dataTable td.dt-left div.dt-column-header,
292
+ table.dataTable td.dt-left div.dt-column-footer {
293
+ flex-direction: row;
294
+ }
295
+ table.dataTable th.dt-center,
296
+ table.dataTable td.dt-center {
297
+ text-align: center;
298
+ }
299
+ table.dataTable th.dt-right,
300
+ table.dataTable td.dt-right {
301
+ text-align: right;
302
+ }
303
+ table.dataTable th.dt-right div.dt-column-header,
304
+ table.dataTable th.dt-right div.dt-column-footer,
305
+ table.dataTable td.dt-right div.dt-column-header,
306
+ table.dataTable td.dt-right div.dt-column-footer {
307
+ flex-direction: row-reverse;
308
+ }
309
+ table.dataTable th.dt-justify,
310
+ table.dataTable td.dt-justify {
311
+ text-align: justify;
312
+ }
313
+ table.dataTable th.dt-justify div.dt-column-header,
314
+ table.dataTable th.dt-justify div.dt-column-footer,
315
+ table.dataTable td.dt-justify div.dt-column-header,
316
+ table.dataTable td.dt-justify div.dt-column-footer {
317
+ flex-direction: row;
318
+ }
319
+ table.dataTable th.dt-nowrap,
320
+ table.dataTable td.dt-nowrap {
321
+ white-space: nowrap;
322
+ }
323
+ table.dataTable th.dt-empty,
324
+ table.dataTable td.dt-empty {
325
+ text-align: center;
326
+ vertical-align: top;
327
+ }
328
+ table.dataTable thead th,
329
+ table.dataTable thead td,
330
+ table.dataTable tfoot th,
331
+ table.dataTable tfoot td {
332
+ text-align: left;
333
+ vertical-align: var(--dt-header-vertical-align);
334
+ }
335
+ table.dataTable thead th.dt-head-left,
336
+ table.dataTable thead td.dt-head-left,
337
+ table.dataTable tfoot th.dt-head-left,
338
+ table.dataTable tfoot td.dt-head-left {
339
+ text-align: left;
340
+ }
341
+ table.dataTable thead th.dt-head-left div.dt-column-header,
342
+ table.dataTable thead th.dt-head-left div.dt-column-footer,
343
+ table.dataTable thead td.dt-head-left div.dt-column-header,
344
+ table.dataTable thead td.dt-head-left div.dt-column-footer,
345
+ table.dataTable tfoot th.dt-head-left div.dt-column-header,
346
+ table.dataTable tfoot th.dt-head-left div.dt-column-footer,
347
+ table.dataTable tfoot td.dt-head-left div.dt-column-header,
348
+ table.dataTable tfoot td.dt-head-left div.dt-column-footer {
349
+ flex-direction: row;
350
+ }
351
+ table.dataTable thead th.dt-head-center,
352
+ table.dataTable thead td.dt-head-center,
353
+ table.dataTable tfoot th.dt-head-center,
354
+ table.dataTable tfoot td.dt-head-center {
355
+ text-align: center;
356
+ }
357
+ table.dataTable thead th.dt-head-right,
358
+ table.dataTable thead td.dt-head-right,
359
+ table.dataTable tfoot th.dt-head-right,
360
+ table.dataTable tfoot td.dt-head-right {
361
+ text-align: right;
362
+ }
363
+ table.dataTable thead th.dt-head-right div.dt-column-header,
364
+ table.dataTable thead th.dt-head-right div.dt-column-footer,
365
+ table.dataTable thead td.dt-head-right div.dt-column-header,
366
+ table.dataTable thead td.dt-head-right div.dt-column-footer,
367
+ table.dataTable tfoot th.dt-head-right div.dt-column-header,
368
+ table.dataTable tfoot th.dt-head-right div.dt-column-footer,
369
+ table.dataTable tfoot td.dt-head-right div.dt-column-header,
370
+ table.dataTable tfoot td.dt-head-right div.dt-column-footer {
371
+ flex-direction: row-reverse;
372
+ }
373
+ table.dataTable thead th.dt-head-justify,
374
+ table.dataTable thead td.dt-head-justify,
375
+ table.dataTable tfoot th.dt-head-justify,
376
+ table.dataTable tfoot td.dt-head-justify {
377
+ text-align: justify;
378
+ }
379
+ table.dataTable thead th.dt-head-justify div.dt-column-header,
380
+ table.dataTable thead th.dt-head-justify div.dt-column-footer,
381
+ table.dataTable thead td.dt-head-justify div.dt-column-header,
382
+ table.dataTable thead td.dt-head-justify div.dt-column-footer,
383
+ table.dataTable tfoot th.dt-head-justify div.dt-column-header,
384
+ table.dataTable tfoot th.dt-head-justify div.dt-column-footer,
385
+ table.dataTable tfoot td.dt-head-justify div.dt-column-header,
386
+ table.dataTable tfoot td.dt-head-justify div.dt-column-footer {
387
+ flex-direction: row;
388
+ }
389
+ table.dataTable thead th.dt-head-nowrap,
390
+ table.dataTable thead td.dt-head-nowrap,
391
+ table.dataTable tfoot th.dt-head-nowrap,
392
+ table.dataTable tfoot td.dt-head-nowrap {
393
+ white-space: nowrap;
394
+ }
395
+ table.dataTable tbody th.dt-body-left,
396
+ table.dataTable tbody td.dt-body-left {
397
+ text-align: left;
398
+ }
399
+ table.dataTable tbody th.dt-body-center,
400
+ table.dataTable tbody td.dt-body-center {
401
+ text-align: center;
402
+ }
403
+ table.dataTable tbody th.dt-body-right,
404
+ table.dataTable tbody td.dt-body-right {
405
+ text-align: right;
406
+ }
407
+ table.dataTable tbody th.dt-body-justify,
408
+ table.dataTable tbody td.dt-body-justify {
409
+ text-align: justify;
410
+ }
411
+ table.dataTable tbody th.dt-body-nowrap,
412
+ table.dataTable tbody td.dt-body-nowrap {
413
+ white-space: nowrap;
414
+ }
415
+
416
+ /*! Bootstrap 5 integration for DataTables
417
+ *
418
+ * ©2020 SpryMedia Ltd, all rights reserved.
419
+ * License: MIT datatables.net/license/mit
420
+ */
421
+ table.table.dataTable {
422
+ clear: both;
423
+ margin-bottom: 0;
424
+ max-width: none;
425
+ border-spacing: 0;
426
+ }
427
+ table.table.dataTable.table-striped > tbody > tr:nth-of-type(2n+1) > * {
428
+ box-shadow: none;
429
+ }
430
+ table.table.dataTable > :not(caption) > * > * {
431
+ background-color: var(--bs-table-bg);
432
+ }
433
+ table.table.dataTable > tbody > tr {
434
+ background-color: transparent;
435
+ }
436
+ table.table.dataTable > tbody > tr.selected > * {
437
+ box-shadow: inset 0 0 0 9999px rgb(13, 110, 253);
438
+ box-shadow: inset 0 0 0 9999px rgb(var(--dt-row-selected));
439
+ color: rgb(255, 255, 255);
440
+ color: rgb(var(--dt-row-selected-text));
441
+ }
442
+ table.table.dataTable > tbody > tr.selected a {
443
+ color: rgb(228, 228, 228);
444
+ color: rgb(var(--dt-row-selected-link));
445
+ }
446
+ table.table.dataTable.table-striped > tbody > tr:nth-of-type(2n+1) > * {
447
+ box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-stripe), 0.05);
448
+ }
449
+ table.table.dataTable.table-striped > tbody > tr:nth-of-type(2n+1).selected > * {
450
+ box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.95);
451
+ box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.95);
452
+ }
453
+ table.table.dataTable.table-hover > tbody > tr:hover > * {
454
+ box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-hover), 0.075);
455
+ }
456
+ table.table.dataTable.table-hover > tbody > tr.selected:hover > * {
457
+ box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.975);
458
+ box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.975);
459
+ }
460
+
461
+ div.dt-container div.dt-layout-start > *:not(:last-child) {
462
+ margin-right: 1em;
463
+ }
464
+ div.dt-container div.dt-layout-end > *:not(:first-child) {
465
+ margin-left: 1em;
466
+ }
467
+ div.dt-container div.dt-layout-full {
468
+ width: 100%;
469
+ }
470
+ div.dt-container div.dt-layout-full > *:only-child {
471
+ margin-left: auto;
472
+ margin-right: auto;
473
+ }
474
+ div.dt-container div.dt-layout-table > div {
475
+ display: block !important;
476
+ }
477
+
478
+ @media screen and (max-width: 767px) {
479
+ div.dt-container div.dt-layout-start > *:not(:last-child) {
480
+ margin-right: 0;
481
+ }
482
+ div.dt-container div.dt-layout-end > *:not(:first-child) {
483
+ margin-left: 0;
484
+ }
485
+ }
486
+ div.dt-container {
487
+ position: relative;
488
+ }
489
+ div.dt-container div.dt-length label {
490
+ font-weight: normal;
491
+ text-align: left;
492
+ white-space: nowrap;
493
+ }
494
+ div.dt-container div.dt-length select {
495
+ width: auto;
496
+ display: inline-block;
497
+ margin-right: 0.5em;
498
+ }
499
+ div.dt-container div.dt-search {
500
+ text-align: right;
501
+ }
502
+ div.dt-container div.dt-search label {
503
+ font-weight: normal;
504
+ white-space: nowrap;
505
+ text-align: left;
506
+ }
507
+ div.dt-container div.dt-search input {
508
+ margin-left: 0.5em;
509
+ display: inline-block;
510
+ width: auto;
511
+ }
512
+ div.dt-container div.dt-paging {
513
+ margin: 0;
514
+ }
515
+ div.dt-container div.dt-paging ul.pagination {
516
+ margin: 2px 0;
517
+ flex-wrap: wrap;
518
+ }
519
+ div.dt-container div.dt-row {
520
+ position: relative;
521
+ }
522
+
523
+ div.dt-scroll-head table.dataTable {
524
+ margin-bottom: 0 !important;
525
+ }
526
+
527
+ div.dt-scroll-body {
528
+ border-bottom-color: var(--bs-border-color);
529
+ border-bottom-width: var(--bs-border-width);
530
+ border-bottom-style: solid;
531
+ }
532
+ div.dt-scroll-body > table {
533
+ border-top: none;
534
+ margin-top: 0 !important;
535
+ margin-bottom: 0 !important;
536
+ }
537
+ div.dt-scroll-body > table > tbody > tr:first-child {
538
+ border-top-width: 0;
539
+ }
540
+ div.dt-scroll-body > table > thead > tr {
541
+ border-width: 0 !important;
542
+ }
543
+ div.dt-scroll-body > table > tbody > tr:last-child > * {
544
+ border-bottom: none;
545
+ }
546
+
547
+ div.dt-scroll-foot > .dt-scroll-footInner {
548
+ box-sizing: content-box;
549
+ }
550
+ div.dt-scroll-foot > .dt-scroll-footInner > table {
551
+ margin-top: 0 !important;
552
+ border-top: none;
553
+ }
554
+ div.dt-scroll-foot > .dt-scroll-footInner > table > tfoot > tr:first-child {
555
+ border-top-width: 0 !important;
556
+ }
557
+
558
+ @media screen and (max-width: 767px) {
559
+ div.dt-container div.dt-length,
560
+ div.dt-container div.dt-search,
561
+ div.dt-container div.dt-info,
562
+ div.dt-container div.dt-paging {
563
+ text-align: center;
564
+ }
565
+ div.dt-container .row {
566
+ --bs-gutter-y: 0.5rem;
567
+ }
568
+ div.dt-container div.dt-paging ul.pagination {
569
+ justify-content: center !important;
570
+ }
571
+ }
572
+ table.dataTable.table-sm > thead > tr th.dt-orderable-asc, table.dataTable.table-sm > thead > tr th.dt-orderable-desc, table.dataTable.table-sm > thead > tr th.dt-ordering-asc, table.dataTable.table-sm > thead > tr th.dt-ordering-desc,
573
+ table.dataTable.table-sm > thead > tr td.dt-orderable-asc,
574
+ table.dataTable.table-sm > thead > tr td.dt-orderable-desc,
575
+ table.dataTable.table-sm > thead > tr td.dt-ordering-asc,
576
+ table.dataTable.table-sm > thead > tr td.dt-ordering-desc {
577
+ padding-right: 0.25rem;
578
+ }
579
+ table.dataTable.table-sm > thead > tr th.dt-orderable-asc span.dt-column-order, table.dataTable.table-sm > thead > tr th.dt-orderable-desc span.dt-column-order, table.dataTable.table-sm > thead > tr th.dt-ordering-asc span.dt-column-order, table.dataTable.table-sm > thead > tr th.dt-ordering-desc span.dt-column-order,
580
+ table.dataTable.table-sm > thead > tr td.dt-orderable-asc span.dt-column-order,
581
+ table.dataTable.table-sm > thead > tr td.dt-orderable-desc span.dt-column-order,
582
+ table.dataTable.table-sm > thead > tr td.dt-ordering-asc span.dt-column-order,
583
+ table.dataTable.table-sm > thead > tr td.dt-ordering-desc span.dt-column-order {
584
+ right: 0.25rem;
585
+ }
586
+ table.dataTable.table-sm > thead > tr th.dt-type-date span.dt-column-order, table.dataTable.table-sm > thead > tr th.dt-type-numeric span.dt-column-order,
587
+ table.dataTable.table-sm > thead > tr td.dt-type-date span.dt-column-order,
588
+ table.dataTable.table-sm > thead > tr td.dt-type-numeric span.dt-column-order {
589
+ left: 0.25rem;
590
+ }
591
+
592
+ div.dt-scroll-head table.table-bordered {
593
+ border-bottom-width: 0;
594
+ }
595
+
596
+ div.table-responsive > div.dt-container > div.row {
597
+ margin: 0;
598
+ }
599
+ div.table-responsive > div.dt-container > div.row > div[class^=col-]:first-child {
600
+ padding-left: 0;
601
+ }
602
+ div.table-responsive > div.dt-container > div.row > div[class^=col-]:last-child {
603
+ padding-right: 0;
604
+ }
605
+
606
+ :root[data-bs-theme=dark] {
607
+ --dt-row-hover: 255, 255, 255;
608
+ --dt-row-stripe: 255, 255, 255;
609
+ --dt-column-ordering: 255, 255, 255;
610
+ }