rapid-router 5.4.1__py2.py3-none-any.whl → 7.6.8__py2.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 (354) hide show
  1. example_project/rapid_router_test_settings.py +164 -0
  2. example_project/settings.py +152 -0
  3. example_project/urls.py +15 -0
  4. example_project/{example_project/wsgi.py → wsgi.py} +2 -1
  5. game/__init__.py +1 -1
  6. game/admin.py +43 -4
  7. game/app_settings.py +3 -7
  8. game/character.py +26 -18
  9. game/decor.py +172 -97
  10. game/end_to_end_tests/base_game_test.py +44 -33
  11. game/end_to_end_tests/editor_page.py +17 -2
  12. game/end_to_end_tests/game_page.py +127 -45
  13. game/end_to_end_tests/selenium_test_case.py +1 -20
  14. game/end_to_end_tests/test_cow_crashes.py +3 -5
  15. game/end_to_end_tests/test_language_dropdown.py +14 -0
  16. game/end_to_end_tests/test_level_editor.py +290 -0
  17. game/end_to_end_tests/test_level_failures.py +1 -1
  18. game/end_to_end_tests/test_level_selection.py +79 -0
  19. game/end_to_end_tests/test_play_through.py +240 -102
  20. game/end_to_end_tests/test_python_levels.py +44 -13
  21. game/end_to_end_tests/test_saving_workspace.py +22 -0
  22. game/forms.py +9 -2
  23. game/level_management.py +38 -29
  24. game/messages.py +1218 -203
  25. game/migrations/0001_squashed_0025_levels_ordering_pt1.py +19 -1
  26. game/migrations/0026_levels_pt2.py +13 -2
  27. game/migrations/0032_cannot_turn_left_level.py +13 -2
  28. game/migrations/0033_recursion_level.py +13 -2
  29. game/migrations/0034_joes_level.py +13 -2
  30. game/migrations/0035_disable_route_score_level_70.py +0 -2
  31. game/migrations/0036_level_score_73.py +0 -2
  32. game/migrations/0037_level_score_79.py +0 -2
  33. game/migrations/0038_level_score_40.py +0 -1
  34. game/migrations/0042_level_score_73.py +0 -2
  35. game/migrations/0048_add_cow_field_and_blocks.py +0 -2
  36. game/migrations/0049_level_score_34.py +0 -2
  37. game/migrations/0050_level_score_40.py +0 -2
  38. game/migrations/0051_level_score_49.py +0 -1
  39. game/migrations/0076_level_locked_for_class.py +19 -0
  40. game/migrations/0077_alter_level_next_level.py +52 -0
  41. game/migrations/0078_add_block_types.py +23 -0
  42. game/migrations/0079_populate_block_type_add_cow_blocks.py +60 -0
  43. game/migrations/0080_level_disable_algorithm_score.py +18 -0
  44. game/migrations/0081_first_12_levels_no_algo_score.py +29 -0
  45. game/migrations/0082_level_43_solution.py +16 -0
  46. game/migrations/0083_add_cows_to_existing_levels.py +195 -0
  47. game/migrations/0084_alter_block_block_type.py +18 -0
  48. game/migrations/0085_add_new_blocks.py +53 -0
  49. game/migrations/0086_loop_levels.py +482 -0
  50. game/migrations/0087_workspace_python_view_enabled.py +18 -0
  51. game/migrations/0088_rename_episodes.py +35 -0
  52. game/migrations/0089_episodes_in_development.py +30 -0
  53. game/migrations/0090_add_missing_model_solutions.py +144 -0
  54. game/migrations/0091_disable_algo_score_if_no_model_solution.py +46 -0
  55. game/migrations/0092_disable_algo_score_in_custom_levels.py +28 -0
  56. game/migrations/0093_alter_level_character_name.py +18 -0
  57. game/migrations/0094_add_hint_lesson_subtitle_to_levels.py +28 -0
  58. game/migrations/0095_level_commands.py +18 -0
  59. game/migrations/0096_alter_level_commands.py +18 -0
  60. game/migrations/0097_add_python_den_levels.py +1515 -0
  61. game/migrations/0098_add_episode_link_fields.py +44 -0
  62. game/migrations/0099_python_episodes_links.py +103 -0
  63. game/migrations/0100_reorder_python_levels.py +179 -0
  64. game/migrations/0101_rename_episodes.py +45 -0
  65. game/migrations/0102_reoder_episodes_13_14.py +136 -0
  66. game/migrations/0103_level_1015_solution.py +26 -0
  67. game/migrations/0104_remove_level_direct_drive.py +17 -0
  68. game/migrations/0105_delete_invalid_attempts.py +18 -0
  69. game/migrations/0106_fields_to_snake_case.py +48 -0
  70. game/migrations/0107_rename_worksheet_link_episode_student_worksheet_link.py +18 -0
  71. game/migrations/0108_episode_indy_worksheet_link.py +18 -0
  72. game/migrations/0109_create_episodes_23_and_24.py +99 -0
  73. game/migrations/0110_remove_episode_indy_worksheet_link_and_more.py +100 -0
  74. game/migrations/0111_create_worksheets.py +149 -0
  75. game/migrations/0112_worksheet_locked_classes.py +21 -0
  76. game/migrations/0113_level_needs_approval.py +18 -0
  77. game/migrations/0114_default_and_non_student_levels_no_approval.py +31 -0
  78. game/migrations/0115_level_level__default_does_not_need_approval.py +22 -0
  79. game/migrations/0116_update_worksheet_video_links.py +68 -0
  80. game/migrations/0117_update_solutions_to_if_else.py +61 -0
  81. game/models.py +157 -16
  82. game/permissions.py +34 -19
  83. game/python_den_urls.py +26 -0
  84. game/random_road.py +43 -127
  85. game/serializers.py +12 -17
  86. game/static/django_reverse_js/js/reverse.js +171 -0
  87. game/static/game/css/LilitaOne-Regular.ttf +0 -0
  88. game/static/game/css/backgrounds.css +14 -10
  89. game/static/game/css/dataTables.custom.css +4 -2
  90. game/static/game/css/dataTables.jqueryui.css +561 -320
  91. game/static/game/css/editor.css +47 -0
  92. game/static/game/css/game.css +43 -49
  93. game/static/game/css/game_screen.css +116 -53
  94. game/static/game/css/jquery.dataTables.css +455 -251
  95. game/static/game/css/level_editor.css +10 -1
  96. game/static/game/css/level_selection.css +32 -3
  97. game/static/game/css/level_share.css +6 -5
  98. game/static/game/css/skulpt/codemirror.css +1 -0
  99. game/static/game/image/Python_Den_hero_student.png +0 -0
  100. game/static/game/image/Python_levels_page.svg +1954 -0
  101. game/static/game/image/characters/front_view/Electric_van.svg +448 -0
  102. game/static/game/image/characters/top_view/Electric_van.svg +448 -0
  103. game/static/game/image/characters/top_view/Sleigh.svg +436 -0
  104. game/static/game/image/decor/city/solar_panel.svg +1200 -0
  105. game/static/game/image/decor/farm/solar_panel.svg +86 -0
  106. game/static/game/image/decor/grass/solar_panel.svg +86 -0
  107. game/static/game/image/decor/snow/barn.svg +1788 -0
  108. game/static/game/image/decor/snow/cfc.svg +1050 -147
  109. game/static/game/image/decor/snow/crops.svg +7370 -0
  110. game/static/game/image/decor/snow/hospital.svg +1220 -0
  111. game/static/game/image/decor/snow/house1.svg +971 -0
  112. game/static/game/image/decor/snow/house2.svg +1574 -0
  113. game/static/game/image/decor/snow/school.svg +1071 -0
  114. game/static/game/image/decor/snow/shop.svg +3211 -0
  115. game/static/game/image/decor/snow/solar_panel.svg +173 -0
  116. game/static/game/image/electric_van.svg +448 -0
  117. game/static/game/image/icons/add_house.svg +26 -0
  118. game/static/game/image/icons/delete_house.svg +26 -0
  119. game/static/game/image/icons/description.svg +1 -0
  120. game/static/game/image/icons/hint.svg +1 -0
  121. game/static/game/image/icons/if_else.svg +3 -0
  122. game/static/game/image/icons/python.svg +1 -1
  123. game/static/game/image/if_else_example.png +0 -0
  124. game/static/game/image/pigeon.svg +684 -0
  125. game/static/game/image/python_den_header.svg +19 -0
  126. game/static/game/js/animation.js +84 -28
  127. game/static/game/js/blockly/msg/js/bg.js +52 -1
  128. game/static/game/js/blockly/msg/js/ca.js +52 -1
  129. game/static/game/js/blockly/msg/js/en-gb.js +52 -1
  130. game/static/game/js/blockly/msg/js/en.js +52 -1
  131. game/static/game/js/blockly/msg/js/es.js +52 -1
  132. game/static/game/js/blockly/msg/js/fr.js +52 -1
  133. game/static/game/js/blockly/msg/js/hi.js +52 -1
  134. game/static/game/js/blockly/msg/js/it.js +52 -1
  135. game/static/game/js/blockly/msg/js/pl.js +52 -1
  136. game/static/game/js/blockly/msg/js/pt-br.js +52 -1
  137. game/static/game/js/blockly/msg/js/ru.js +52 -1
  138. game/static/game/js/blockly/msg/js/ur.js +52 -1
  139. game/static/game/js/blocklyCompiler.js +550 -392
  140. game/static/game/js/blocklyControl.js +335 -302
  141. game/static/game/js/blocklyCustomBlocks.js +691 -458
  142. game/static/game/js/blocklyCustomisations.js +3 -1
  143. game/static/game/js/button.js +12 -0
  144. game/static/game/js/cow.js +15 -130
  145. game/static/game/js/drawing.js +313 -201
  146. game/static/game/js/editor.js +23 -0
  147. game/static/game/js/game.js +148 -139
  148. game/static/game/js/jquery.dataTables.min.js +3 -159
  149. game/static/game/js/level_editor.js +823 -448
  150. game/static/game/js/level_moderation.js +33 -2
  151. game/static/game/js/level_selection.js +62 -25
  152. game/static/game/js/loadLanguages.js +21 -0
  153. game/static/game/js/map.js +106 -36
  154. game/static/game/js/model.js +55 -107
  155. game/static/game/js/pathFinder.js +73 -72
  156. game/static/game/js/program.js +184 -193
  157. game/static/game/js/pythonControl.js +14 -1
  158. game/static/game/js/scoreboard.js +0 -37
  159. game/static/game/js/scoreboardSharedLevels.js +48 -0
  160. game/static/game/js/sharing.js +22 -10
  161. game/static/game/js/skulpt/codemirror.js +5 -4
  162. game/static/game/js/skulpt/skulpt-stdlib.js +1 -1
  163. game/static/game/js/sound.js +52 -5
  164. game/static/game/js/van.js +0 -7
  165. game/static/game/raphael_image/characters/top_view/Electric_van.svg +448 -0
  166. game/static/game/raphael_image/characters/top_view/Sleigh.svg +436 -0
  167. game/static/game/raphael_image/decor/city/solar_panel.svg +1200 -0
  168. game/static/game/raphael_image/decor/farm/solar_panel.svg +86 -0
  169. game/static/game/raphael_image/decor/grass/solar_panel.svg +86 -0
  170. game/static/game/raphael_image/decor/snow/barn.svg +1788 -0
  171. game/static/game/raphael_image/decor/snow/cfc.svg +1050 -147
  172. game/static/game/raphael_image/decor/snow/crops.svg +7370 -0
  173. game/static/game/raphael_image/decor/snow/hospital.svg +1220 -0
  174. game/static/game/raphael_image/decor/snow/house1.svg +971 -0
  175. game/static/game/raphael_image/decor/snow/house2.svg +1574 -0
  176. game/static/game/raphael_image/decor/snow/school.svg +1071 -0
  177. game/static/game/raphael_image/decor/snow/shop.svg +3211 -0
  178. game/static/game/raphael_image/decor/snow/solar_panel.svg +173 -0
  179. game/static/game/raphael_image/pigeon.svg +685 -0
  180. game/static/game/raphael_image/sleigh_wreckage.svg +430 -0
  181. game/static/game/sass/game.scss +22 -6
  182. game/static/game/sound/clown_horn.mp3 +0 -0
  183. game/static/game/sound/clown_horn.ogg +0 -0
  184. game/static/game/sound/electric_van_starting.mp3 +0 -0
  185. game/static/game/sound/electric_van_starting.ogg +0 -0
  186. game/static/game/sound/pigeon.mp3 +0 -0
  187. game/static/game/sound/pigeon.ogg +0 -0
  188. game/static/game/sound/sleigh_bells.mp3 +0 -0
  189. game/static/game/sound/sleigh_bells.ogg +0 -0
  190. game/static/game/sound/sleigh_crash.mp3 +0 -0
  191. game/static/game/sound/sleigh_crash.ogg +0 -0
  192. game/templates/game/base.html +35 -15
  193. game/templates/game/basenonav.html +23 -17
  194. game/templates/game/game.html +236 -111
  195. game/templates/game/level_editor.html +353 -275
  196. game/templates/game/level_moderation.html +19 -6
  197. game/templates/game/level_selection.html +75 -62
  198. game/templates/game/python_den_level_selection.html +291 -0
  199. game/templates/game/python_den_worksheet.html +101 -0
  200. game/templates/game/scoreboard.html +88 -65
  201. game/tests/test_level_editor.py +210 -35
  202. game/tests/test_level_moderation.py +6 -20
  203. game/tests/test_level_selection.py +332 -11
  204. game/tests/test_python_den_worksheet.py +85 -0
  205. game/tests/test_scoreboard.py +258 -66
  206. game/tests/utils/level.py +43 -3
  207. game/tests/utils/teacher.py +2 -2
  208. game/theme.py +21 -21
  209. game/urls.py +125 -78
  210. game/views/language_code_conversions.py +90 -0
  211. game/views/level.py +201 -63
  212. game/views/level_editor.py +109 -48
  213. game/views/level_moderation.py +29 -6
  214. game/views/level_selection.py +179 -56
  215. game/views/level_solutions.py +600 -106
  216. game/views/scoreboard.py +181 -66
  217. game/views/worksheet.py +25 -0
  218. rapid_router-7.6.8.dist-info/METADATA +174 -0
  219. {rapid_router-5.4.1.dist-info → rapid_router-7.6.8.dist-info}/RECORD +222 -242
  220. {rapid_router-5.4.1.dist-info → rapid_router-7.6.8.dist-info}/WHEEL +1 -1
  221. rapid_router-7.6.8.dist-info/licenses/LICENSE.md +3 -0
  222. example_project/example_project/__init__.py +0 -1
  223. example_project/example_project/settings.py +0 -54
  224. example_project/example_project/urls.py +0 -16
  225. example_project/manage.py +0 -10
  226. game/autoconfig.py +0 -59
  227. game/csp_config.py +0 -23
  228. game/locale/ar_SA/LC_MESSAGES/django.mo +0 -0
  229. game/locale/ar_SA/LC_MESSAGES/django.po +0 -405
  230. game/locale/ar_SA/LC_MESSAGES/djangojs.mo +0 -0
  231. game/locale/ar_SA/LC_MESSAGES/djangojs.po +0 -743
  232. game/locale/bg_BG/LC_MESSAGES/django.mo +0 -0
  233. game/locale/bg_BG/LC_MESSAGES/django.po +0 -405
  234. game/locale/bg_BG/LC_MESSAGES/djangojs.mo +0 -0
  235. game/locale/bg_BG/LC_MESSAGES/djangojs.po +0 -739
  236. game/locale/ca_ES/LC_MESSAGES/django.mo +0 -0
  237. game/locale/ca_ES/LC_MESSAGES/django.po +0 -405
  238. game/locale/ca_ES/LC_MESSAGES/djangojs.mo +0 -0
  239. game/locale/ca_ES/LC_MESSAGES/djangojs.po +0 -740
  240. game/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
  241. game/locale/cs_CZ/LC_MESSAGES/django.po +0 -405
  242. game/locale/cs_CZ/LC_MESSAGES/djangojs.mo +0 -0
  243. game/locale/cs_CZ/LC_MESSAGES/djangojs.po +0 -741
  244. game/locale/cy_GB/LC_MESSAGES/django.mo +0 -0
  245. game/locale/cy_GB/LC_MESSAGES/django.po +0 -405
  246. game/locale/cy_GB/LC_MESSAGES/djangojs.mo +0 -0
  247. game/locale/cy_GB/LC_MESSAGES/djangojs.po +0 -743
  248. game/locale/de_DE/LC_MESSAGES/django.mo +0 -0
  249. game/locale/de_DE/LC_MESSAGES/django.po +0 -405
  250. game/locale/de_DE/LC_MESSAGES/djangojs.mo +0 -0
  251. game/locale/de_DE/LC_MESSAGES/djangojs.po +0 -739
  252. game/locale/el_GR/LC_MESSAGES/django.mo +0 -0
  253. game/locale/el_GR/LC_MESSAGES/django.po +0 -405
  254. game/locale/el_GR/LC_MESSAGES/djangojs.mo +0 -0
  255. game/locale/el_GR/LC_MESSAGES/djangojs.po +0 -739
  256. game/locale/en_GB/LC_MESSAGES/django.mo +0 -0
  257. game/locale/en_GB/LC_MESSAGES/django.po +0 -405
  258. game/locale/en_GB/LC_MESSAGES/djangojs.mo +0 -0
  259. game/locale/en_GB/LC_MESSAGES/djangojs.po +0 -739
  260. game/locale/es_ES/LC_MESSAGES/django.mo +0 -0
  261. game/locale/es_ES/LC_MESSAGES/django.po +0 -405
  262. game/locale/es_ES/LC_MESSAGES/djangojs.mo +0 -0
  263. game/locale/es_ES/LC_MESSAGES/djangojs.po +0 -739
  264. game/locale/fi_FI/LC_MESSAGES/django.mo +0 -0
  265. game/locale/fi_FI/LC_MESSAGES/django.po +0 -405
  266. game/locale/fi_FI/LC_MESSAGES/djangojs.mo +0 -0
  267. game/locale/fi_FI/LC_MESSAGES/djangojs.po +0 -739
  268. game/locale/fr_FR/LC_MESSAGES/django.mo +0 -0
  269. game/locale/fr_FR/LC_MESSAGES/django.po +0 -405
  270. game/locale/fr_FR/LC_MESSAGES/djangojs.mo +0 -0
  271. game/locale/fr_FR/LC_MESSAGES/djangojs.po +0 -739
  272. game/locale/gu_IN/LC_MESSAGES/django.mo +0 -0
  273. game/locale/gu_IN/LC_MESSAGES/django.po +0 -405
  274. game/locale/gu_IN/LC_MESSAGES/djangojs.mo +0 -0
  275. game/locale/gu_IN/LC_MESSAGES/djangojs.po +0 -739
  276. game/locale/hi_IN/LC_MESSAGES/django.mo +0 -0
  277. game/locale/hi_IN/LC_MESSAGES/django.po +0 -405
  278. game/locale/hi_IN/LC_MESSAGES/djangojs.mo +0 -0
  279. game/locale/hi_IN/LC_MESSAGES/djangojs.po +0 -739
  280. game/locale/id_ID/LC_MESSAGES/django.mo +0 -0
  281. game/locale/id_ID/LC_MESSAGES/django.po +0 -405
  282. game/locale/id_ID/LC_MESSAGES/djangojs.mo +0 -0
  283. game/locale/id_ID/LC_MESSAGES/djangojs.po +0 -738
  284. game/locale/it_IT/LC_MESSAGES/django.mo +0 -0
  285. game/locale/it_IT/LC_MESSAGES/django.po +0 -405
  286. game/locale/it_IT/LC_MESSAGES/djangojs.mo +0 -0
  287. game/locale/it_IT/LC_MESSAGES/djangojs.po +0 -739
  288. game/locale/ja_JP/LC_MESSAGES/django.mo +0 -0
  289. game/locale/ja_JP/LC_MESSAGES/django.po +0 -405
  290. game/locale/ja_JP/LC_MESSAGES/djangojs.mo +0 -0
  291. game/locale/ja_JP/LC_MESSAGES/djangojs.po +0 -738
  292. game/locale/lol_US/LC_MESSAGES/django.mo +0 -0
  293. game/locale/lol_US/LC_MESSAGES/django.po +0 -405
  294. game/locale/lol_US/LC_MESSAGES/djangojs.mo +0 -0
  295. game/locale/lol_US/LC_MESSAGES/djangojs.po +0 -739
  296. game/locale/nb_NO/LC_MESSAGES/django.mo +0 -0
  297. game/locale/nb_NO/LC_MESSAGES/django.po +0 -405
  298. game/locale/nb_NO/LC_MESSAGES/djangojs.mo +0 -0
  299. game/locale/nb_NO/LC_MESSAGES/djangojs.po +0 -739
  300. game/locale/nl_NL/LC_MESSAGES/django.mo +0 -0
  301. game/locale/nl_NL/LC_MESSAGES/django.po +0 -405
  302. game/locale/nl_NL/LC_MESSAGES/djangojs.mo +0 -0
  303. game/locale/nl_NL/LC_MESSAGES/djangojs.po +0 -739
  304. game/locale/pl_PL/LC_MESSAGES/django.mo +0 -0
  305. game/locale/pl_PL/LC_MESSAGES/django.po +0 -405
  306. game/locale/pl_PL/LC_MESSAGES/djangojs.mo +0 -0
  307. game/locale/pl_PL/LC_MESSAGES/djangojs.po +0 -741
  308. game/locale/pt_BR/LC_MESSAGES/django.mo +0 -0
  309. game/locale/pt_BR/LC_MESSAGES/django.po +0 -405
  310. game/locale/pt_BR/LC_MESSAGES/djangojs.mo +0 -0
  311. game/locale/pt_BR/LC_MESSAGES/djangojs.po +0 -739
  312. game/locale/pt_PT/LC_MESSAGES/django.mo +0 -0
  313. game/locale/pt_PT/LC_MESSAGES/django.po +0 -405
  314. game/locale/pt_PT/LC_MESSAGES/djangojs.mo +0 -0
  315. game/locale/pt_PT/LC_MESSAGES/djangojs.po +0 -739
  316. game/locale/ro_RO/LC_MESSAGES/django.mo +0 -0
  317. game/locale/ro_RO/LC_MESSAGES/django.po +0 -405
  318. game/locale/ro_RO/LC_MESSAGES/djangojs.mo +0 -0
  319. game/locale/ro_RO/LC_MESSAGES/djangojs.po +0 -740
  320. game/locale/ru_RU/LC_MESSAGES/django.mo +0 -0
  321. game/locale/ru_RU/LC_MESSAGES/django.po +0 -405
  322. game/locale/ru_RU/LC_MESSAGES/djangojs.mo +0 -0
  323. game/locale/ru_RU/LC_MESSAGES/djangojs.po +0 -741
  324. game/locale/sv_SE/LC_MESSAGES/django.mo +0 -0
  325. game/locale/sv_SE/LC_MESSAGES/django.po +0 -405
  326. game/locale/sv_SE/LC_MESSAGES/djangojs.mo +0 -0
  327. game/locale/sv_SE/LC_MESSAGES/djangojs.po +0 -739
  328. game/locale/tl_PH/LC_MESSAGES/django.mo +0 -0
  329. game/locale/tl_PH/LC_MESSAGES/django.po +0 -405
  330. game/locale/tl_PH/LC_MESSAGES/djangojs.mo +0 -0
  331. game/locale/tl_PH/LC_MESSAGES/djangojs.po +0 -739
  332. game/locale/tlh_AA/LC_MESSAGES/django.mo +0 -0
  333. game/locale/tlh_AA/LC_MESSAGES/django.po +0 -405
  334. game/locale/tlh_AA/LC_MESSAGES/djangojs.mo +0 -0
  335. game/locale/tlh_AA/LC_MESSAGES/djangojs.po +0 -739
  336. game/locale/tr_TR/LC_MESSAGES/django.mo +0 -0
  337. game/locale/tr_TR/LC_MESSAGES/django.po +0 -405
  338. game/locale/tr_TR/LC_MESSAGES/djangojs.mo +0 -0
  339. game/locale/tr_TR/LC_MESSAGES/djangojs.po +0 -740
  340. game/locale/ur_IN/LC_MESSAGES/django.mo +0 -0
  341. game/locale/ur_IN/LC_MESSAGES/django.po +0 -405
  342. game/locale/ur_IN/LC_MESSAGES/djangojs.mo +0 -0
  343. game/locale/ur_IN/LC_MESSAGES/djangojs.po +0 -739
  344. game/locale/ur_PK/LC_MESSAGES/django.mo +0 -0
  345. game/locale/ur_PK/LC_MESSAGES/django.po +0 -405
  346. game/locale/ur_PK/LC_MESSAGES/djangojs.mo +0 -0
  347. game/locale/ur_PK/LC_MESSAGES/djangojs.po +0 -739
  348. game/static/game/image/actions/go.svg +0 -18
  349. game/static/game/image/icons/destination.svg +0 -9
  350. game/static/game/js/pqselect.min.js +0 -9
  351. game/static/game/js/widget-scroller.js +0 -906
  352. rapid_router-5.4.1.dist-info/LICENSE.md +0 -577
  353. rapid_router-5.4.1.dist-info/METADATA +0 -24
  354. {rapid_router-5.4.1.dist-info → rapid_router-7.6.8.dist-info}/top_level.txt +0 -0
@@ -1,220 +1,208 @@
1
- /*
2
- * Table styles
3
- */
4
- table.dataTable {
5
- width: 100%;
6
- margin: 0 auto;
7
- clear: both;
8
- border-collapse: separate;
9
- border-spacing: 0;
10
- /*
11
- * Header and footer styles
12
- */
13
- /*
14
- * Body styles
15
- */
1
+ @charset "UTF-8";
2
+ :root {
3
+ --dt-row-selected: 13, 110, 253;
4
+ --dt-row-selected-text: 255, 255, 255;
5
+ --dt-row-selected-link: 9, 10, 11;
6
+ --dt-row-stripe: 0, 0, 0;
7
+ --dt-row-hover: 0, 0, 0;
8
+ --dt-column-ordering: 0, 0, 0;
9
+ --dt-html-background: white;
10
+ }
11
+ :root.dark {
12
+ --dt-html-background: rgb(33, 37, 41);
16
13
  }
17
- table.dataTable thead th,
18
- table.dataTable thead td,
19
- table.dataTable tfoot th,
20
- table.dataTable tfoot td {
21
- padding: 4px 10px;
14
+
15
+ table.dataTable td.dt-control {
16
+ text-align: center;
17
+ cursor: pointer;
22
18
  }
23
- table.dataTable thead th,
24
- table.dataTable tfoot th {
25
- font-weight: bold;
19
+ table.dataTable td.dt-control:before {
20
+ display: inline-block;
21
+ color: rgba(0, 0, 0, 0.5);
22
+ content: "►";
26
23
  }
27
- table.dataTable thead th:active,
28
- table.dataTable thead td:active {
29
- outline: none;
24
+ table.dataTable tr.dt-hasChild td.dt-control:before {
25
+ content: "▼";
30
26
  }
31
- table.dataTable thead .sorting_asc,
32
- table.dataTable thead .sorting_desc,
33
- table.dataTable thead .sorting {
34
- cursor: pointer;
35
- *cursor: hand;
27
+
28
+ html.dark table.dataTable td.dt-control:before {
29
+ color: rgba(255, 255, 255, 0.5);
36
30
  }
37
- table.dataTable thead th div.DataTables_sort_wrapper {
38
- position: relative;
39
- padding-right: 10px;
31
+ html.dark table.dataTable tr.dt-hasChild td.dt-control:before {
32
+ color: rgba(255, 255, 255, 0.5);
40
33
  }
41
- table.dataTable thead th div.DataTables_sort_wrapper span {
42
- position: absolute;
43
- top: 50%;
44
- margin-top: -8px;
45
- right: -5px;
34
+
35
+ :root {
36
+ --dt-row-selected: 13, 110, 253;
37
+ --dt-row-selected-text: 255, 255, 255;
38
+ --dt-row-selected-link: 9, 10, 11;
39
+ --dt-row-stripe: 0, 0, 0;
40
+ --dt-row-hover: 0, 0, 0;
41
+ --dt-column-ordering: 0, 0, 0;
42
+ --dt-html-background: white;
43
+ }
44
+ :root.dark {
45
+ --dt-html-background: rgb(33, 37, 41);
46
46
  }
47
- table.dataTable thead th.ui-state-default {
48
- border-right-width: 0;
47
+
48
+ table.dataTable td.dt-control {
49
+ text-align: center;
50
+ cursor: pointer;
49
51
  }
50
- table.dataTable thead th.ui-state-default:last-child {
51
- border-right-width: 1px;
52
+ table.dataTable td.dt-control:before {
53
+ display: inline-block;
54
+ color: rgba(0, 0, 0, 0.5);
55
+ content: "►";
52
56
  }
53
- table.dataTable tbody tr {
54
- background-color: #ffffff;
57
+ table.dataTable tr.dt-hasChild td.dt-control:before {
58
+ content: "▼";
55
59
  }
56
- table.dataTable tbody tr.selected {
57
- background-color: #B0BED9;
60
+
61
+ html.dark table.dataTable td.dt-control:before {
62
+ color: rgba(255, 255, 255, 0.5);
58
63
  }
59
- table.dataTable tbody th,
60
- table.dataTable tbody td {
61
- padding: 8px 10px;
64
+ html.dark table.dataTable tr.dt-hasChild td.dt-control:before {
65
+ color: rgba(255, 255, 255, 0.5);
62
66
  }
63
- table.dataTable th.center,
64
- table.dataTable td.center,
65
- table.dataTable td.dataTables_empty {
66
- text-align: center;
67
+
68
+ table.dataTable thead > tr > th.sorting, table.dataTable thead > tr > th.sorting_asc, table.dataTable thead > tr > th.sorting_desc, table.dataTable thead > tr > th.sorting_asc_disabled, table.dataTable thead > tr > th.sorting_desc_disabled,
69
+ table.dataTable thead > tr > td.sorting,
70
+ table.dataTable thead > tr > td.sorting_asc,
71
+ table.dataTable thead > tr > td.sorting_desc,
72
+ table.dataTable thead > tr > td.sorting_asc_disabled,
73
+ table.dataTable thead > tr > td.sorting_desc_disabled {
74
+ cursor: pointer;
75
+ position: relative;
76
+ padding-right: 26px;
77
+ }
78
+ table.dataTable thead > tr > th.sorting:before, table.dataTable thead > tr > th.sorting:after, table.dataTable thead > tr > th.sorting_asc:before, table.dataTable thead > tr > th.sorting_asc:after, table.dataTable thead > tr > th.sorting_desc:before, table.dataTable thead > tr > th.sorting_desc:after, table.dataTable thead > tr > th.sorting_asc_disabled:before, table.dataTable thead > tr > th.sorting_asc_disabled:after, table.dataTable thead > tr > th.sorting_desc_disabled:before, table.dataTable thead > tr > th.sorting_desc_disabled:after,
79
+ table.dataTable thead > tr > td.sorting:before,
80
+ table.dataTable thead > tr > td.sorting:after,
81
+ table.dataTable thead > tr > td.sorting_asc:before,
82
+ table.dataTable thead > tr > td.sorting_asc:after,
83
+ table.dataTable thead > tr > td.sorting_desc:before,
84
+ table.dataTable thead > tr > td.sorting_desc:after,
85
+ table.dataTable thead > tr > td.sorting_asc_disabled:before,
86
+ table.dataTable thead > tr > td.sorting_asc_disabled:after,
87
+ table.dataTable thead > tr > td.sorting_desc_disabled:before,
88
+ table.dataTable thead > tr > td.sorting_desc_disabled:after {
89
+ position: absolute;
90
+ display: block;
91
+ opacity: 0.125;
92
+ right: 10px;
93
+ line-height: 9px;
94
+ font-size: 0.8em;
95
+ }
96
+ table.dataTable thead > tr > th.sorting:before, table.dataTable thead > tr > th.sorting_asc:before, table.dataTable thead > tr > th.sorting_desc:before, table.dataTable thead > tr > th.sorting_asc_disabled:before, table.dataTable thead > tr > th.sorting_desc_disabled:before,
97
+ table.dataTable thead > tr > td.sorting:before,
98
+ table.dataTable thead > tr > td.sorting_asc:before,
99
+ table.dataTable thead > tr > td.sorting_desc:before,
100
+ table.dataTable thead > tr > td.sorting_asc_disabled:before,
101
+ table.dataTable thead > tr > td.sorting_desc_disabled:before {
102
+ bottom: 50%;
103
+ content: "▲";
104
+ content: "▲"/"";
105
+ }
106
+ table.dataTable thead > tr > th.sorting:after, table.dataTable thead > tr > th.sorting_asc:after, table.dataTable thead > tr > th.sorting_desc:after, table.dataTable thead > tr > th.sorting_asc_disabled:after, table.dataTable thead > tr > th.sorting_desc_disabled:after,
107
+ table.dataTable thead > tr > td.sorting:after,
108
+ table.dataTable thead > tr > td.sorting_asc:after,
109
+ table.dataTable thead > tr > td.sorting_desc:after,
110
+ table.dataTable thead > tr > td.sorting_asc_disabled:after,
111
+ table.dataTable thead > tr > td.sorting_desc_disabled:after {
112
+ top: 50%;
113
+ content: "▼";
114
+ content: "▼"/"";
67
115
  }
68
- table.dataTable th.right,
69
- table.dataTable td.right {
70
- text-align: right;
116
+ table.dataTable thead > tr > th.sorting_asc:before, table.dataTable thead > tr > th.sorting_desc:after,
117
+ table.dataTable thead > tr > td.sorting_asc:before,
118
+ table.dataTable thead > tr > td.sorting_desc:after {
119
+ opacity: 0.6;
71
120
  }
72
- table.dataTable.row-border tbody th, table.dataTable.row-border tbody td, table.dataTable.display tbody th, table.dataTable.display tbody td {
73
- border-top: 1px solid #ddd;
121
+ table.dataTable thead > tr > th.sorting_desc_disabled:after, table.dataTable thead > tr > th.sorting_asc_disabled:before,
122
+ table.dataTable thead > tr > td.sorting_desc_disabled:after,
123
+ table.dataTable thead > tr > td.sorting_asc_disabled:before {
124
+ display: none;
74
125
  }
75
- table.dataTable.row-border tbody tr:first-child th,
76
- table.dataTable.row-border tbody tr:first-child td, table.dataTable.display tbody tr:first-child th,
77
- table.dataTable.display tbody tr:first-child td {
78
- border-top: none;
126
+ table.dataTable thead > tr > th:active,
127
+ table.dataTable thead > tr > td:active {
128
+ outline: none;
79
129
  }
80
- table.dataTable.cell-border tbody th, table.dataTable.cell-border tbody td {
81
- border-top: 1px solid #ddd;
82
- border-right: 1px solid #ddd;
130
+
131
+ div.dataTables_scrollBody > table.dataTable > thead > tr > th:before, div.dataTables_scrollBody > table.dataTable > thead > tr > th:after,
132
+ div.dataTables_scrollBody > table.dataTable > thead > tr > td:before,
133
+ div.dataTables_scrollBody > table.dataTable > thead > tr > td:after {
134
+ display: none;
83
135
  }
84
- table.dataTable.cell-border tbody tr th:first-child,
85
- table.dataTable.cell-border tbody tr td:first-child {
86
- border-left: 1px solid #ddd;
136
+
137
+ div.dataTables_processing {
138
+ position: absolute;
139
+ top: 50%;
140
+ left: 50%;
141
+ width: 200px;
142
+ margin-left: -100px;
143
+ margin-top: -26px;
144
+ text-align: center;
145
+ padding: 2px;
87
146
  }
88
- table.dataTable.cell-border tbody tr:first-child th,
89
- table.dataTable.cell-border tbody tr:first-child td {
90
- border-top: none;
147
+ div.dataTables_processing > div:last-child {
148
+ position: relative;
149
+ width: 80px;
150
+ height: 15px;
151
+ margin: 1em auto;
91
152
  }
92
- table.dataTable.stripe tbody tr.odd, table.dataTable.display tbody tr.odd {
93
- background-color: #f9f9f9;
94
- }
95
- table.dataTable.stripe tbody tr.odd.selected, table.dataTable.display tbody tr.odd.selected {
96
- background-color: #abb9d3;
97
- }
98
- table.dataTable.hover tbody tr:hover,
99
- table.dataTable.hover tbody tr.odd:hover,
100
- table.dataTable.hover tbody tr.even:hover, table.dataTable.display tbody tr:hover,
101
- table.dataTable.display tbody tr.odd:hover,
102
- table.dataTable.display tbody tr.even:hover {
103
- background-color: whitesmoke;
104
- }
105
- table.dataTable.hover tbody tr:hover.selected,
106
- table.dataTable.hover tbody tr.odd:hover.selected,
107
- table.dataTable.hover tbody tr.even:hover.selected, table.dataTable.display tbody tr:hover.selected,
108
- table.dataTable.display tbody tr.odd:hover.selected,
109
- table.dataTable.display tbody tr.even:hover.selected {
110
- background-color: #a9b7d1;
111
- }
112
- table.dataTable.order-column tbody tr > .sorting_1,
113
- table.dataTable.order-column tbody tr > .sorting_2,
114
- table.dataTable.order-column tbody tr > .sorting_3, table.dataTable.display tbody tr > .sorting_1,
115
- table.dataTable.display tbody tr > .sorting_2,
116
- table.dataTable.display tbody tr > .sorting_3 {
117
- background-color: #f9f9f9;
118
- }
119
- table.dataTable.order-column tbody tr.selected > .sorting_1,
120
- table.dataTable.order-column tbody tr.selected > .sorting_2,
121
- table.dataTable.order-column tbody tr.selected > .sorting_3, table.dataTable.display tbody tr.selected > .sorting_1,
122
- table.dataTable.display tbody tr.selected > .sorting_2,
123
- table.dataTable.display tbody tr.selected > .sorting_3 {
124
- background-color: #acbad4;
125
- }
126
- table.dataTable.display tbody tr.odd > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd > .sorting_1 {
127
- background-color: #f1f1f1;
128
- }
129
- table.dataTable.display tbody tr.odd > .sorting_2, table.dataTable.order-column.stripe tbody tr.odd > .sorting_2 {
130
- background-color: #f3f3f3;
131
- }
132
- table.dataTable.display tbody tr.odd > .sorting_3, table.dataTable.order-column.stripe tbody tr.odd > .sorting_3 {
133
- background-color: whitesmoke;
134
- }
135
- table.dataTable.display tbody tr.odd.selected > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_1 {
136
- background-color: #a6b3cd;
137
- }
138
- table.dataTable.display tbody tr.odd.selected > .sorting_2, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_2 {
139
- background-color: #a7b5ce;
140
- }
141
- table.dataTable.display tbody tr.odd.selected > .sorting_3, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_3 {
142
- background-color: #a9b6d0;
143
- }
144
- table.dataTable.display tbody tr.even > .sorting_1, table.dataTable.order-column.stripe tbody tr.even > .sorting_1 {
145
- background-color: #f9f9f9;
146
- }
147
- table.dataTable.display tbody tr.even > .sorting_2, table.dataTable.order-column.stripe tbody tr.even > .sorting_2 {
148
- background-color: #fbfbfb;
149
- }
150
- table.dataTable.display tbody tr.even > .sorting_3, table.dataTable.order-column.stripe tbody tr.even > .sorting_3 {
151
- background-color: #fdfdfd;
152
- }
153
- table.dataTable.display tbody tr.even.selected > .sorting_1, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_1 {
154
- background-color: #acbad4;
155
- }
156
- table.dataTable.display tbody tr.even.selected > .sorting_2, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_2 {
157
- background-color: #adbbd6;
158
- }
159
- table.dataTable.display tbody tr.even.selected > .sorting_3, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_3 {
160
- background-color: #afbdd8;
161
- }
162
- table.dataTable.display tbody tr:hover > .sorting_1,
163
- table.dataTable.display tbody tr.odd:hover > .sorting_1,
164
- table.dataTable.display tbody tr.even:hover > .sorting_1, table.dataTable.order-column.hover tbody tr:hover > .sorting_1,
165
- table.dataTable.order-column.hover tbody tr.odd:hover > .sorting_1,
166
- table.dataTable.order-column.hover tbody tr.even:hover > .sorting_1 {
167
- background-color: #eaeaea;
168
- }
169
- table.dataTable.display tbody tr:hover > .sorting_2,
170
- table.dataTable.display tbody tr.odd:hover > .sorting_2,
171
- table.dataTable.display tbody tr.even:hover > .sorting_2, table.dataTable.order-column.hover tbody tr:hover > .sorting_2,
172
- table.dataTable.order-column.hover tbody tr.odd:hover > .sorting_2,
173
- table.dataTable.order-column.hover tbody tr.even:hover > .sorting_2 {
174
- background-color: #ebebeb;
175
- }
176
- table.dataTable.display tbody tr:hover > .sorting_3,
177
- table.dataTable.display tbody tr.odd:hover > .sorting_3,
178
- table.dataTable.display tbody tr.even:hover > .sorting_3, table.dataTable.order-column.hover tbody tr:hover > .sorting_3,
179
- table.dataTable.order-column.hover tbody tr.odd:hover > .sorting_3,
180
- table.dataTable.order-column.hover tbody tr.even:hover > .sorting_3 {
181
- background-color: #eeeeee;
182
- }
183
- table.dataTable.display tbody tr:hover.selected > .sorting_1,
184
- table.dataTable.display tbody tr.odd:hover.selected > .sorting_1,
185
- table.dataTable.display tbody tr.even:hover.selected > .sorting_1, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_1,
186
- table.dataTable.order-column.hover tbody tr.odd:hover.selected > .sorting_1,
187
- table.dataTable.order-column.hover tbody tr.even:hover.selected > .sorting_1 {
188
- background-color: #a1aec7;
189
- }
190
- table.dataTable.display tbody tr:hover.selected > .sorting_2,
191
- table.dataTable.display tbody tr.odd:hover.selected > .sorting_2,
192
- table.dataTable.display tbody tr.even:hover.selected > .sorting_2, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_2,
193
- table.dataTable.order-column.hover tbody tr.odd:hover.selected > .sorting_2,
194
- table.dataTable.order-column.hover tbody tr.even:hover.selected > .sorting_2 {
195
- background-color: #a2afc8;
196
- }
197
- table.dataTable.display tbody tr:hover.selected > .sorting_3,
198
- table.dataTable.display tbody tr.odd:hover.selected > .sorting_3,
199
- table.dataTable.display tbody tr.even:hover.selected > .sorting_3, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_3,
200
- table.dataTable.order-column.hover tbody tr.odd:hover.selected > .sorting_3,
201
- table.dataTable.order-column.hover tbody tr.even:hover.selected > .sorting_3 {
202
- background-color: #a4b2cb;
153
+ div.dataTables_processing > div:last-child > div {
154
+ position: absolute;
155
+ top: 0;
156
+ width: 13px;
157
+ height: 13px;
158
+ border-radius: 50%;
159
+ background: rgb(13, 110, 253);
160
+ background: rgb(var(--dt-row-selected));
161
+ animation-timing-function: cubic-bezier(0, 1, 1, 0);
162
+ }
163
+ div.dataTables_processing > div:last-child > div:nth-child(1) {
164
+ left: 8px;
165
+ animation: datatables-loader-1 0.6s infinite;
166
+ }
167
+ div.dataTables_processing > div:last-child > div:nth-child(2) {
168
+ left: 8px;
169
+ animation: datatables-loader-2 0.6s infinite;
170
+ }
171
+ div.dataTables_processing > div:last-child > div:nth-child(3) {
172
+ left: 32px;
173
+ animation: datatables-loader-2 0.6s infinite;
174
+ }
175
+ div.dataTables_processing > div:last-child > div:nth-child(4) {
176
+ left: 56px;
177
+ animation: datatables-loader-3 0.6s infinite;
203
178
  }
204
- table.dataTable.nowrap th, table.dataTable.nowrap td {
205
- white-space: nowrap;
179
+
180
+ @keyframes datatables-loader-1 {
181
+ 0% {
182
+ transform: scale(0);
183
+ }
184
+ 100% {
185
+ transform: scale(1);
186
+ }
206
187
  }
207
- table.dataTable.compact thead th,
208
- table.dataTable.compact thead td {
209
- padding: 5px 9px;
188
+ @keyframes datatables-loader-3 {
189
+ 0% {
190
+ transform: scale(1);
191
+ }
192
+ 100% {
193
+ transform: scale(0);
194
+ }
210
195
  }
211
- table.dataTable.compact tfoot th,
212
- table.dataTable.compact tfoot td {
213
- padding: 5px 9px 3px 9px;
196
+ @keyframes datatables-loader-2 {
197
+ 0% {
198
+ transform: translate(0, 0);
199
+ }
200
+ 100% {
201
+ transform: translate(24px, 0);
202
+ }
214
203
  }
215
- table.dataTable.compact tbody th,
216
- table.dataTable.compact tbody td {
217
- padding: 4px 5px;
204
+ table.dataTable.nowrap th, table.dataTable.nowrap td {
205
+ white-space: nowrap;
218
206
  }
219
207
  table.dataTable th.dt-left,
220
208
  table.dataTable td.dt-left {
@@ -237,6 +225,12 @@ table.dataTable th.dt-nowrap,
237
225
  table.dataTable td.dt-nowrap {
238
226
  white-space: nowrap;
239
227
  }
228
+ table.dataTable thead th,
229
+ table.dataTable thead td,
230
+ table.dataTable tfoot th,
231
+ table.dataTable tfoot td {
232
+ text-align: left;
233
+ }
240
234
  table.dataTable thead th.dt-head-left,
241
235
  table.dataTable thead td.dt-head-left,
242
236
  table.dataTable tfoot th.dt-head-left,
@@ -288,11 +282,199 @@ table.dataTable tbody td.dt-body-nowrap {
288
282
  white-space: nowrap;
289
283
  }
290
284
 
291
- table.dataTable,
285
+ /*
286
+ * Table styles
287
+ */
288
+ table.dataTable {
289
+ width: 100%;
290
+ margin: 0 auto;
291
+ clear: both;
292
+ border-collapse: separate;
293
+ border-spacing: 0;
294
+ /*
295
+ * Header and footer styles
296
+ */
297
+ /*
298
+ * Body styles
299
+ */
300
+ }
301
+ table.dataTable thead th,
302
+ table.dataTable tfoot th {
303
+ font-weight: bold;
304
+ }
305
+ table.dataTable > thead > tr > th,
306
+ table.dataTable > thead > tr > td {
307
+ padding: 10px;
308
+ }
309
+ table.dataTable > thead > tr > th:active,
310
+ table.dataTable > thead > tr > td:active {
311
+ outline: none;
312
+ }
313
+ table.dataTable > tfoot > tr > th,
314
+ table.dataTable > tfoot > tr > td {
315
+ padding: 10px 10px 6px 10px;
316
+ }
317
+ table.dataTable tbody tr {
318
+ background-color: transparent;
319
+ }
320
+ table.dataTable tbody tr.selected > * {
321
+ box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.9);
322
+ box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.9);
323
+ color: rgb(255, 255, 255);
324
+ color: rgb(var(--dt-row-selected-text));
325
+ }
326
+ table.dataTable tbody tr.selected a {
327
+ color: rgb(9, 10, 11);
328
+ color: rgb(var(--dt-row-selected-link));
329
+ }
330
+ table.dataTable tbody th,
331
+ table.dataTable tbody td {
332
+ padding: 8px 10px;
333
+ }
334
+ table.dataTable.row-border > tbody > tr > th,
335
+ table.dataTable.row-border > tbody > tr > td, table.dataTable.display > tbody > tr > th,
336
+ table.dataTable.display > tbody > tr > td {
337
+ border-top: 1px solid rgba(0, 0, 0, 0.15);
338
+ }
339
+ table.dataTable.row-border > tbody > tr:first-child > th,
340
+ table.dataTable.row-border > tbody > tr:first-child > td, table.dataTable.display > tbody > tr:first-child > th,
341
+ table.dataTable.display > tbody > tr:first-child > td {
342
+ border-top: none;
343
+ }
344
+ table.dataTable.row-border > tbody > tr.selected + tr.selected > td, table.dataTable.display > tbody > tr.selected + tr.selected > td {
345
+ border-top-color: #0262ef;
346
+ }
347
+ table.dataTable.cell-border > tbody > tr > th,
348
+ table.dataTable.cell-border > tbody > tr > td {
349
+ border-top: 1px solid rgba(0, 0, 0, 0.15);
350
+ border-right: 1px solid rgba(0, 0, 0, 0.15);
351
+ }
352
+ table.dataTable.cell-border > tbody > tr > th:first-child,
353
+ table.dataTable.cell-border > tbody > tr > td:first-child {
354
+ border-left: 1px solid rgba(0, 0, 0, 0.15);
355
+ }
356
+ table.dataTable.cell-border > tbody > tr:first-child > th,
357
+ table.dataTable.cell-border > tbody > tr:first-child > td {
358
+ border-top: none;
359
+ }
360
+ table.dataTable.stripe > tbody > tr.odd > *, table.dataTable.display > tbody > tr.odd > * {
361
+ box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.023);
362
+ box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-stripe), 0.023);
363
+ }
364
+ table.dataTable.stripe > tbody > tr.odd.selected > *, table.dataTable.display > tbody > tr.odd.selected > * {
365
+ box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.923);
366
+ box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.923);
367
+ }
368
+ table.dataTable.hover > tbody > tr:hover > *, table.dataTable.display > tbody > tr:hover > * {
369
+ box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.035);
370
+ box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-hover), 0.035);
371
+ }
372
+ table.dataTable.hover > tbody > tr.selected:hover > *, table.dataTable.display > tbody > tr.selected:hover > * {
373
+ box-shadow: inset 0 0 0 9999px #0d6efd !important;
374
+ box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 1) !important;
375
+ }
376
+ table.dataTable.order-column > tbody tr > .sorting_1,
377
+ table.dataTable.order-column > tbody tr > .sorting_2,
378
+ table.dataTable.order-column > tbody tr > .sorting_3, table.dataTable.display > tbody tr > .sorting_1,
379
+ table.dataTable.display > tbody tr > .sorting_2,
380
+ table.dataTable.display > tbody tr > .sorting_3 {
381
+ box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.019);
382
+ box-shadow: inset 0 0 0 9999px rgba(var(--dt-column-ordering), 0.019);
383
+ }
384
+ table.dataTable.order-column > tbody tr.selected > .sorting_1,
385
+ table.dataTable.order-column > tbody tr.selected > .sorting_2,
386
+ table.dataTable.order-column > tbody tr.selected > .sorting_3, table.dataTable.display > tbody tr.selected > .sorting_1,
387
+ table.dataTable.display > tbody tr.selected > .sorting_2,
388
+ table.dataTable.display > tbody tr.selected > .sorting_3 {
389
+ box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.919);
390
+ box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.919);
391
+ }
392
+ table.dataTable.display > tbody > tr.odd > .sorting_1, table.dataTable.order-column.stripe > tbody > tr.odd > .sorting_1 {
393
+ box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.054);
394
+ box-shadow: inset 0 0 0 9999px rgba(var(--dt-column-ordering), 0.054);
395
+ }
396
+ table.dataTable.display > tbody > tr.odd > .sorting_2, table.dataTable.order-column.stripe > tbody > tr.odd > .sorting_2 {
397
+ box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.047);
398
+ box-shadow: inset 0 0 0 9999px rgba(var(--dt-column-ordering), 0.047);
399
+ }
400
+ table.dataTable.display > tbody > tr.odd > .sorting_3, table.dataTable.order-column.stripe > tbody > tr.odd > .sorting_3 {
401
+ box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.039);
402
+ box-shadow: inset 0 0 0 9999px rgba(var(--dt-column-ordering), 0.039);
403
+ }
404
+ table.dataTable.display > tbody > tr.odd.selected > .sorting_1, table.dataTable.order-column.stripe > tbody > tr.odd.selected > .sorting_1 {
405
+ box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.954);
406
+ box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.954);
407
+ }
408
+ table.dataTable.display > tbody > tr.odd.selected > .sorting_2, table.dataTable.order-column.stripe > tbody > tr.odd.selected > .sorting_2 {
409
+ box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.947);
410
+ box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.947);
411
+ }
412
+ table.dataTable.display > tbody > tr.odd.selected > .sorting_3, table.dataTable.order-column.stripe > tbody > tr.odd.selected > .sorting_3 {
413
+ box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.939);
414
+ box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.939);
415
+ }
416
+ table.dataTable.display > tbody > tr.even > .sorting_1, table.dataTable.order-column.stripe > tbody > tr.even > .sorting_1 {
417
+ box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.019);
418
+ box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.019);
419
+ }
420
+ table.dataTable.display > tbody > tr.even > .sorting_2, table.dataTable.order-column.stripe > tbody > tr.even > .sorting_2 {
421
+ box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.011);
422
+ box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.011);
423
+ }
424
+ table.dataTable.display > tbody > tr.even > .sorting_3, table.dataTable.order-column.stripe > tbody > tr.even > .sorting_3 {
425
+ box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.003);
426
+ box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.003);
427
+ }
428
+ table.dataTable.display > tbody > tr.even.selected > .sorting_1, table.dataTable.order-column.stripe > tbody > tr.even.selected > .sorting_1 {
429
+ box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.919);
430
+ box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.919);
431
+ }
432
+ table.dataTable.display > tbody > tr.even.selected > .sorting_2, table.dataTable.order-column.stripe > tbody > tr.even.selected > .sorting_2 {
433
+ box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.911);
434
+ box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.911);
435
+ }
436
+ table.dataTable.display > tbody > tr.even.selected > .sorting_3, table.dataTable.order-column.stripe > tbody > tr.even.selected > .sorting_3 {
437
+ box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.903);
438
+ box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.903);
439
+ }
440
+ table.dataTable.display tbody tr:hover > .sorting_1, table.dataTable.order-column.hover tbody tr:hover > .sorting_1 {
441
+ box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.082);
442
+ box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-hover), 0.082);
443
+ }
444
+ table.dataTable.display tbody tr:hover > .sorting_2, table.dataTable.order-column.hover tbody tr:hover > .sorting_2 {
445
+ box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.074);
446
+ box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-hover), 0.074);
447
+ }
448
+ table.dataTable.display tbody tr:hover > .sorting_3, table.dataTable.order-column.hover tbody tr:hover > .sorting_3 {
449
+ box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.062);
450
+ box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-hover), 0.062);
451
+ }
452
+ table.dataTable.display tbody tr:hover.selected > .sorting_1, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_1 {
453
+ box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.982);
454
+ box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.982);
455
+ }
456
+ table.dataTable.display tbody tr:hover.selected > .sorting_2, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_2 {
457
+ box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.974);
458
+ box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.974);
459
+ }
460
+ table.dataTable.display tbody tr:hover.selected > .sorting_3, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_3 {
461
+ box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.962);
462
+ box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.962);
463
+ }
464
+ table.dataTable.no-footer {
465
+ border-bottom: 1px solid rgba(0, 0, 0, 0.3);
466
+ }
467
+ table.dataTable.compact thead th,
468
+ table.dataTable.compact thead td,
469
+ table.dataTable.compact tfoot th,
470
+ table.dataTable.compact tfoot td,
471
+ table.dataTable.compact tbody th,
472
+ table.dataTable.compact tbody td {
473
+ padding: 4px;
474
+ }
475
+
292
476
  table.dataTable th,
293
477
  table.dataTable td {
294
- -webkit-box-sizing: content-box;
295
- -moz-box-sizing: content-box;
296
478
  box-sizing: content-box;
297
479
  }
298
480
 
@@ -302,96 +484,127 @@ table.dataTable td {
302
484
  .dataTables_wrapper {
303
485
  position: relative;
304
486
  clear: both;
305
- *zoom: 1;
306
- zoom: 1;
307
487
  }
308
488
  .dataTables_wrapper .dataTables_length {
309
489
  float: left;
310
490
  }
491
+ .dataTables_wrapper .dataTables_length select {
492
+ border: 1px solid #aaa;
493
+ border-radius: 3px;
494
+ padding: 5px;
495
+ background-color: transparent;
496
+ color: inherit;
497
+ padding: 4px;
498
+ }
311
499
  .dataTables_wrapper .dataTables_filter {
312
500
  float: right;
313
501
  text-align: right;
314
502
  }
315
503
  .dataTables_wrapper .dataTables_filter input {
316
- margin-left: 0.5em;
504
+ border: 1px solid #aaa;
505
+ border-radius: 3px;
506
+ padding: 5px;
507
+ background-color: transparent;
508
+ color: inherit;
509
+ margin-left: 3px;
317
510
  }
318
511
  .dataTables_wrapper .dataTables_info {
319
512
  clear: both;
320
513
  float: left;
321
- padding-top: 0.55em;
514
+ padding-top: 0.755em;
322
515
  }
323
516
  .dataTables_wrapper .dataTables_paginate {
324
517
  float: right;
325
518
  text-align: right;
519
+ padding-top: 0.25em;
326
520
  }
327
- .dataTables_wrapper .dataTables_paginate .fg-button {
521
+ .dataTables_wrapper .dataTables_paginate .paginate_button {
328
522
  box-sizing: border-box;
329
523
  display: inline-block;
330
524
  min-width: 1.5em;
331
- padding: 0.5em;
525
+ padding: 0.5em 1em;
332
526
  margin-left: 2px;
333
527
  text-align: center;
334
528
  text-decoration: none !important;
335
529
  cursor: pointer;
336
- *cursor: hand;
337
- color: #333 !important;
530
+ color: inherit !important;
338
531
  border: 1px solid transparent;
339
- }
340
- .dataTables_wrapper .dataTables_paginate .fg-button:active {
532
+ border-radius: 2px;
533
+ background: transparent;
534
+ }
535
+ .dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
536
+ color: inherit !important;
537
+ border: 1px solid rgba(0, 0, 0, 0.3);
538
+ background-color: rgba(0, 0, 0, 0.05);
539
+ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(230, 230, 230, 0.05)), color-stop(100%, rgba(0, 0, 0, 0.05))); /* Chrome,Safari4+ */
540
+ background: -webkit-linear-gradient(top, rgba(230, 230, 230, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%); /* Chrome10+,Safari5.1+ */
541
+ background: -moz-linear-gradient(top, rgba(230, 230, 230, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%); /* FF3.6+ */
542
+ background: -ms-linear-gradient(top, rgba(230, 230, 230, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%); /* IE10+ */
543
+ background: -o-linear-gradient(top, rgba(230, 230, 230, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%); /* Opera 11.10+ */
544
+ background: linear-gradient(to bottom, rgba(230, 230, 230, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%); /* W3C */
545
+ }
546
+ .dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
547
+ cursor: default;
548
+ color: #666 !important;
549
+ border: 1px solid transparent;
550
+ background: transparent;
551
+ box-shadow: none;
552
+ }
553
+ .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
554
+ color: white !important;
555
+ border: 1px solid #111;
556
+ background-color: #111;
557
+ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #585858), color-stop(100%, #111)); /* Chrome,Safari4+ */
558
+ background: -webkit-linear-gradient(top, #585858 0%, #111 100%); /* Chrome10+,Safari5.1+ */
559
+ background: -moz-linear-gradient(top, #585858 0%, #111 100%); /* FF3.6+ */
560
+ background: -ms-linear-gradient(top, #585858 0%, #111 100%); /* IE10+ */
561
+ background: -o-linear-gradient(top, #585858 0%, #111 100%); /* Opera 11.10+ */
562
+ background: linear-gradient(to bottom, #585858 0%, #111 100%); /* W3C */
563
+ }
564
+ .dataTables_wrapper .dataTables_paginate .paginate_button:active {
341
565
  outline: none;
342
- }
343
- .dataTables_wrapper .dataTables_paginate .fg-button:first-child {
344
- border-top-left-radius: 3px;
345
- border-bottom-left-radius: 3px;
346
- }
347
- .dataTables_wrapper .dataTables_paginate .fg-button:last-child {
348
- border-top-right-radius: 3px;
349
- border-bottom-right-radius: 3px;
350
- }
351
- .dataTables_wrapper .dataTables_processing {
352
- position: absolute;
353
- top: 50%;
354
- left: 50%;
355
- width: 100%;
356
- height: 40px;
357
- margin-left: -50%;
358
- margin-top: -25px;
359
- padding-top: 20px;
360
- text-align: center;
361
- font-size: 1.2em;
362
- background-color: white;
363
- background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(25%, rgba(255, 255, 255, 0.9)), color-stop(75%, rgba(255, 255, 255, 0.9)), color-stop(100%, rgba(255, 255, 255, 0)));
364
- /* Chrome,Safari4+ */
365
- background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
366
- /* Chrome10+,Safari5.1+ */
367
- background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
368
- /* FF3.6+ */
369
- background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
370
- /* IE10+ */
371
- background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
372
- /* Opera 11.10+ */
373
- background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
374
- /* W3C */
566
+ background-color: #0c0c0c;
567
+ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2b2b2b), color-stop(100%, #0c0c0c)); /* Chrome,Safari4+ */
568
+ background: -webkit-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%); /* Chrome10+,Safari5.1+ */
569
+ background: -moz-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%); /* FF3.6+ */
570
+ background: -ms-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%); /* IE10+ */
571
+ background: -o-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%); /* Opera 11.10+ */
572
+ background: linear-gradient(to bottom, #2b2b2b 0%, #0c0c0c 100%); /* W3C */
573
+ box-shadow: inset 0 0 3px #111;
574
+ }
575
+ .dataTables_wrapper .dataTables_paginate .ellipsis {
576
+ padding: 0 1em;
375
577
  }
376
578
  .dataTables_wrapper .dataTables_length,
377
579
  .dataTables_wrapper .dataTables_filter,
378
580
  .dataTables_wrapper .dataTables_info,
379
581
  .dataTables_wrapper .dataTables_processing,
380
582
  .dataTables_wrapper .dataTables_paginate {
381
- color: #333;
583
+ color: inherit;
382
584
  }
383
585
  .dataTables_wrapper .dataTables_scroll {
384
586
  clear: both;
385
587
  }
386
- .dataTables_wrapper .dataTables_scrollBody {
387
- *margin-top: -1px;
588
+ .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody {
388
589
  -webkit-overflow-scrolling: touch;
389
590
  }
390
- .dataTables_wrapper .ui-widget-header {
391
- font-weight: normal;
591
+ .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > th, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > td, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > th, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > td {
592
+ vertical-align: middle;
392
593
  }
393
- .dataTables_wrapper .ui-toolbar {
394
- padding: 8px;
594
+ .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > th > div.dataTables_sizing,
595
+ .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > td > div.dataTables_sizing, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > th > div.dataTables_sizing,
596
+ .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > td > div.dataTables_sizing {
597
+ height: 0;
598
+ overflow: hidden;
599
+ margin: 0 !important;
600
+ padding: 0 !important;
601
+ }
602
+ .dataTables_wrapper.no-footer .dataTables_scrollBody {
603
+ border-bottom: 1px solid rgba(0, 0, 0, 0.3);
604
+ }
605
+ .dataTables_wrapper.no-footer div.dataTables_scrollHead table.dataTable,
606
+ .dataTables_wrapper.no-footer div.dataTables_scrollBody > table {
607
+ border-bottom: none;
395
608
  }
396
609
  .dataTables_wrapper:after {
397
610
  visibility: hidden;
@@ -402,99 +615,127 @@ table.dataTable td {
402
615
  }
403
616
 
404
617
  @media screen and (max-width: 767px) {
405
- .dataTables_wrapper .dataTables_length,
406
- .dataTables_wrapper .dataTables_filter,
407
618
  .dataTables_wrapper .dataTables_info,
408
619
  .dataTables_wrapper .dataTables_paginate {
409
620
  float: none;
410
621
  text-align: center;
411
622
  }
412
- .dataTables_wrapper .dataTables_filter,
413
623
  .dataTables_wrapper .dataTables_paginate {
414
624
  margin-top: 0.5em;
415
625
  }
416
626
  }
417
- /*
418
- * TableTools styling for jQuery UI
419
- */
420
- div.DTTT_container {
421
- position: relative;
422
- float: left;
627
+ @media screen and (max-width: 640px) {
628
+ .dataTables_wrapper .dataTables_length,
629
+ .dataTables_wrapper .dataTables_filter {
630
+ float: none;
631
+ text-align: center;
632
+ }
633
+ .dataTables_wrapper .dataTables_filter {
634
+ margin-top: 0.5em;
635
+ }
423
636
  }
424
-
425
- .DTTT_button {
426
- position: relative;
427
- float: left;
428
- margin-right: 3px;
429
- padding: 3px 10px;
430
- border: 1px solid #d0d0d0;
431
- background-color: #fff;
432
- color: #333;
433
- cursor: pointer;
637
+ html.dark {
638
+ --dt-row-hover: 255, 255, 255;
639
+ --dt-row-stripe: 255, 255, 255;
640
+ --dt-column-ordering: 255, 255, 255;
434
641
  }
435
-
436
- .DTTT_button::-moz-focus-inner {
437
- border: none !important;
438
- padding: 0;
642
+ html.dark table.dataTable > thead > tr > th:active,
643
+ html.dark table.dataTable > thead > tr > td:active {
644
+ outline: none;
439
645
  }
440
-
441
- .DTTT_disabled {
442
- color: #999;
646
+ html.dark table.dataTable.row-border > tbody > tr > th,
647
+ html.dark table.dataTable.row-border > tbody > tr > td, html.dark table.dataTable.display > tbody > tr > th,
648
+ html.dark table.dataTable.display > tbody > tr > td {
649
+ border-top: 1px solid rgb(64, 67, 70);
443
650
  }
444
-
445
- table.DTTT_selectable tbody tr {
446
- cursor: pointer;
651
+ html.dark table.dataTable.row-border > tbody > tr.selected + tr.selected > td, html.dark table.dataTable.display > tbody > tr.selected + tr.selected > td {
652
+ border-top-color: #0257d5;
447
653
  }
448
-
449
- div.DTTT_collection {
450
- width: 150px;
451
- background-color: #f3f3f3;
452
- overflow: hidden;
453
- z-index: 2002;
454
- box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
455
- -moz-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
456
- -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
457
- }
458
- div.DTTT_collection button.DTTT_button,
459
- div.DTTT_collection div.DTTT_button,
460
- div.DTTT_collection a.DTTT_button {
461
- float: none;
462
- width: 100%;
463
- margin-bottom: -0.1em;
654
+ html.dark table.dataTable.cell-border > tbody > tr > th,
655
+ html.dark table.dataTable.cell-border > tbody > tr > td {
656
+ border-top: 1px solid rgb(64, 67, 70);
657
+ border-right: 1px solid rgb(64, 67, 70);
464
658
  }
465
-
466
- div.DTTT_collection_background {
467
- background: black;
468
- z-index: 2001;
659
+ html.dark table.dataTable.cell-border > tbody > tr > th:first-child,
660
+ html.dark table.dataTable.cell-border > tbody > tr > td:first-child {
661
+ border-left: 1px solid rgb(64, 67, 70);
662
+ }
663
+ html.dark .dataTables_wrapper .dataTables_filter input,
664
+ html.dark .dataTables_wrapper .dataTables_length select {
665
+ border: 1px solid rgba(255, 255, 255, 0.2);
666
+ background-color: var(--dt-html-background);
667
+ }
668
+ html.dark .dataTables_wrapper .dataTables_paginate .paginate_button.current, html.dark .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
669
+ border: 1px solid rgb(89, 91, 94);
670
+ background: rgba(255, 255, 255, 0.15);
671
+ }
672
+ html.dark .dataTables_wrapper .dataTables_paginate .paginate_button.disabled, html.dark .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, html.dark .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
673
+ color: #666 !important;
674
+ }
675
+ html.dark .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
676
+ border: 1px solid rgb(53, 53, 53);
677
+ background: rgb(53, 53, 53);
678
+ }
679
+ html.dark .dataTables_wrapper .dataTables_paginate .paginate_button:active {
680
+ background: #3a3a3a;
469
681
  }
470
682
 
471
- .DTTT_print_info {
683
+ table.dataTable thead th div.DataTables_sort_wrapper {
684
+ position: relative;
685
+ }
686
+ table.dataTable thead th div.DataTables_sort_wrapper span {
472
687
  position: absolute;
473
688
  top: 50%;
474
- left: 50%;
475
- width: 400px;
476
- height: 150px;
477
- margin-left: -200px;
478
- margin-top: -75px;
689
+ margin-top: -8px;
690
+ right: -18px;
691
+ }
692
+ table.dataTable thead th.ui-state-default,
693
+ table.dataTable tfoot th.ui-state-default {
694
+ border-left-width: 0;
695
+ }
696
+ table.dataTable thead th.ui-state-default:first-child,
697
+ table.dataTable tfoot th.ui-state-default:first-child {
698
+ border-left-width: 1px;
699
+ }
700
+
701
+ /*
702
+ * Control feature layout
703
+ */
704
+ .dataTables_wrapper .dataTables_paginate .fg-button {
705
+ box-sizing: border-box;
706
+ display: inline-block;
707
+ min-width: 1.5em;
708
+ padding: 0.5em;
709
+ margin-left: 2px;
479
710
  text-align: center;
480
- background-color: #3f3f3f;
481
- color: white;
482
- padding: 10px 30px;
483
- opacity: 0.9;
484
- border-radius: 5px;
485
- -moz-border-radius: 5px;
486
- -webkit-border-radius: 5px;
487
- box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
488
- -moz-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
489
- -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
490
- }
491
- .DTTT_print_info .DTTT_print_info h6 {
711
+ text-decoration: none !important;
712
+ cursor: pointer;
713
+ border: 1px solid transparent;
714
+ }
715
+ .dataTables_wrapper .dataTables_paginate .fg-button:active {
716
+ outline: none;
717
+ }
718
+ .dataTables_wrapper .dataTables_paginate .fg-button:first-child {
719
+ border-top-left-radius: 3px;
720
+ border-bottom-left-radius: 3px;
721
+ }
722
+ .dataTables_wrapper .dataTables_paginate .fg-button:last-child {
723
+ border-top-right-radius: 3px;
724
+ border-bottom-right-radius: 3px;
725
+ }
726
+ .dataTables_wrapper .ui-widget-header {
492
727
  font-weight: normal;
493
- font-size: 28px;
494
- line-height: 28px;
495
- margin: 1em;
496
728
  }
497
- .DTTT_print_info .DTTT_print_info p {
498
- font-size: 14px;
499
- line-height: 20px;
729
+ .dataTables_wrapper .ui-toolbar {
730
+ padding: 8px;
731
+ }
732
+ .dataTables_wrapper.no-footer .dataTables_scrollBody {
733
+ border-bottom: none;
734
+ }
735
+ .dataTables_wrapper .dataTables_length,
736
+ .dataTables_wrapper .dataTables_filter,
737
+ .dataTables_wrapper .dataTables_info,
738
+ .dataTables_wrapper .dataTables_processing,
739
+ .dataTables_wrapper .dataTables_paginate {
740
+ color: inherit;
500
741
  }