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,220 +1,208 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
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
|
-
|
|
18
|
-
table.dataTable
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
padding: 4px 10px;
|
|
14
|
+
|
|
15
|
+
table.dataTable td.dt-control {
|
|
16
|
+
text-align: center;
|
|
17
|
+
cursor: pointer;
|
|
22
18
|
}
|
|
23
|
-
table.dataTable
|
|
24
|
-
|
|
25
|
-
|
|
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
|
|
28
|
-
|
|
29
|
-
outline: none;
|
|
24
|
+
table.dataTable tr.dt-hasChild td.dt-control:before {
|
|
25
|
+
content: "▼";
|
|
30
26
|
}
|
|
31
|
-
|
|
32
|
-
table.dataTable
|
|
33
|
-
|
|
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
|
|
38
|
-
|
|
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
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
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
|
-
|
|
48
|
-
|
|
47
|
+
|
|
48
|
+
table.dataTable td.dt-control {
|
|
49
|
+
text-align: center;
|
|
50
|
+
cursor: pointer;
|
|
49
51
|
}
|
|
50
|
-
table.dataTable
|
|
51
|
-
|
|
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
|
|
54
|
-
|
|
57
|
+
table.dataTable tr.dt-hasChild td.dt-control:before {
|
|
58
|
+
content: "▼";
|
|
55
59
|
}
|
|
56
|
-
|
|
57
|
-
|
|
60
|
+
|
|
61
|
+
html.dark table.dataTable td.dt-control:before {
|
|
62
|
+
color: rgba(255, 255, 255, 0.5);
|
|
58
63
|
}
|
|
59
|
-
table.dataTable
|
|
60
|
-
|
|
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
|
-
|
|
64
|
-
table.dataTable
|
|
65
|
-
table.dataTable td.
|
|
66
|
-
|
|
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.
|
|
69
|
-
table.dataTable td.
|
|
70
|
-
|
|
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
|
|
73
|
-
|
|
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
|
|
76
|
-
table.dataTable
|
|
77
|
-
|
|
78
|
-
border-top: none;
|
|
126
|
+
table.dataTable thead > tr > th:active,
|
|
127
|
+
table.dataTable thead > tr > td:active {
|
|
128
|
+
outline: none;
|
|
79
129
|
}
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
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
|
-
|
|
85
|
-
|
|
86
|
-
|
|
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
|
-
|
|
89
|
-
|
|
90
|
-
|
|
147
|
+
div.dataTables_processing > div:last-child {
|
|
148
|
+
position: relative;
|
|
149
|
+
width: 80px;
|
|
150
|
+
height: 15px;
|
|
151
|
+
margin: 1em auto;
|
|
91
152
|
}
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
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
|
-
|
|
205
|
-
|
|
179
|
+
|
|
180
|
+
@keyframes datatables-loader-1 {
|
|
181
|
+
0% {
|
|
182
|
+
transform: scale(0);
|
|
183
|
+
}
|
|
184
|
+
100% {
|
|
185
|
+
transform: scale(1);
|
|
186
|
+
}
|
|
206
187
|
}
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
188
|
+
@keyframes datatables-loader-3 {
|
|
189
|
+
0% {
|
|
190
|
+
transform: scale(1);
|
|
191
|
+
}
|
|
192
|
+
100% {
|
|
193
|
+
transform: scale(0);
|
|
194
|
+
}
|
|
210
195
|
}
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
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.
|
|
216
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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.
|
|
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 .
|
|
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
|
-
|
|
337
|
-
color: #333 !important;
|
|
530
|
+
color: inherit !important;
|
|
338
531
|
border: 1px solid transparent;
|
|
339
|
-
|
|
340
|
-
|
|
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
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
}
|
|
351
|
-
.dataTables_wrapper .
|
|
352
|
-
|
|
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:
|
|
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 .
|
|
391
|
-
|
|
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 .
|
|
394
|
-
|
|
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
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
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
|
-
|
|
426
|
-
|
|
427
|
-
|
|
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
|
-
.
|
|
437
|
-
|
|
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
|
-
.
|
|
442
|
-
|
|
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
|
-
|
|
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
|
-
|
|
450
|
-
|
|
451
|
-
|
|
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
|
-
|
|
467
|
-
|
|
468
|
-
|
|
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
|
-
.
|
|
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
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
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
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
-
|
|
489
|
-
-
|
|
490
|
-
}
|
|
491
|
-
.
|
|
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
|
-
.
|
|
498
|
-
|
|
499
|
-
|
|
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
|
}
|