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