nautobot 2.1.0b1__py3-none-any.whl → 2.1.1__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.
- nautobot/__init__.py +1 -3
- nautobot/apps/__init__.py +1 -2
- nautobot/apps/admin.py +0 -1
- nautobot/apps/api.py +0 -1
- nautobot/apps/change_logging.py +0 -1
- nautobot/apps/choices.py +0 -3
- nautobot/apps/datasources.py +2 -2
- nautobot/apps/exceptions.py +0 -1
- nautobot/apps/factory.py +0 -1
- nautobot/apps/filters.py +6 -9
- nautobot/apps/forms.py +1 -2
- nautobot/apps/graphql.py +0 -1
- nautobot/apps/jobs.py +2 -1
- nautobot/apps/models.py +4 -2
- nautobot/apps/querysets.py +0 -1
- nautobot/apps/secrets.py +0 -1
- nautobot/apps/tables.py +0 -1
- nautobot/apps/testing.py +0 -1
- nautobot/apps/ui.py +1 -3
- nautobot/apps/urls.py +0 -1
- nautobot/apps/utils.py +0 -1
- nautobot/apps/views.py +0 -1
- nautobot/circuits/api/serializers.py +1 -1
- nautobot/circuits/api/urls.py +1 -1
- nautobot/circuits/api/views.py +2 -1
- nautobot/circuits/apps.py +1 -1
- nautobot/circuits/choices.py +0 -1
- nautobot/circuits/factory.py +1 -1
- nautobot/circuits/filters.py +2 -1
- nautobot/circuits/forms.py +2 -2
- nautobot/circuits/homepage.py +0 -1
- nautobot/circuits/migrations/0001_initial_part_1.py +3 -1
- nautobot/circuits/migrations/0002_initial_part_2.py +2 -1
- nautobot/circuits/migrations/0003_auto_slug.py +1 -0
- nautobot/circuits/migrations/0005_providernetwork.py +4 -2
- nautobot/circuits/migrations/0013_alter_circuittermination__path.py +1 -0
- nautobot/circuits/migrations/0014_related_name_changes.py +1 -0
- nautobot/circuits/migrations/0016_tagsfield.py +1 -0
- nautobot/circuits/migrations/0018_status_nonnullable.py +1 -0
- nautobot/circuits/models.py +2 -2
- nautobot/circuits/navigation.py +0 -1
- nautobot/circuits/signals.py +3 -2
- nautobot/circuits/tables.py +1 -0
- nautobot/circuits/tests/integration/test_relationships.py +1 -1
- nautobot/circuits/tests/test_api.py +1 -1
- nautobot/circuits/tests/test_urls.py +1 -1
- nautobot/circuits/tests/test_views.py +1 -0
- nautobot/circuits/urls.py +1 -1
- nautobot/circuits/views.py +1 -10
- nautobot/core/__init__.py +0 -1
- nautobot/core/admin.py +3 -5
- nautobot/core/api/__init__.py +0 -1
- nautobot/core/api/metadata.py +4 -6
- nautobot/core/api/pagination.py +2 -2
- nautobot/core/api/parsers.py +1 -3
- nautobot/core/api/renderers.py +0 -1
- nautobot/core/api/schema.py +2 -3
- nautobot/core/api/serializers.py +9 -7
- nautobot/core/api/urls.py +1 -5
- nautobot/core/api/utils.py +14 -15
- nautobot/core/api/versioning.py +1 -1
- nautobot/core/api/views.py +22 -91
- nautobot/core/apps/__init__.py +5 -7
- nautobot/core/authentication.py +1 -1
- nautobot/core/celery/__init__.py +1 -2
- nautobot/core/celery/control.py +0 -2
- nautobot/core/celery/encoders.py +0 -1
- nautobot/core/celery/schedulers.py +1 -2
- nautobot/core/celery/task.py +1 -1
- nautobot/core/checks.py +31 -2
- nautobot/core/choices.py +2 -2
- nautobot/core/cli/__init__.py +8 -17
- nautobot/core/context_processors.py +1 -5
- nautobot/core/factory.py +2 -2
- nautobot/core/filters.py +1 -1
- nautobot/core/forms/fields.py +2 -4
- nautobot/core/forms/forms.py +1 -1
- nautobot/core/forms/search.py +1 -1
- nautobot/core/forms/utils.py +1 -1
- nautobot/core/graphql/__init__.py +2 -3
- nautobot/core/graphql/generators.py +2 -2
- nautobot/core/graphql/schema.py +21 -8
- nautobot/core/graphql/schema_init.py +0 -1
- nautobot/core/graphql/types.py +10 -0
- nautobot/core/graphql/utils.py +1 -2
- nautobot/core/management/commands/generate_test_data.py +7 -6
- nautobot/core/management/commands/makemigrations.py +1 -1
- nautobot/core/management/commands/migrate.py +1 -1
- nautobot/core/management/commands/post_upgrade.py +1 -15
- nautobot/core/management/commands/refresh_content_type_cache.py +1 -2
- nautobot/core/management/commands/send_installation_metrics.py +2 -3
- nautobot/core/management/commands/validate_models.py +1 -1
- nautobot/core/middleware.py +2 -2
- nautobot/core/models/__init__.py +12 -12
- nautobot/core/models/fields.py +1 -1
- nautobot/core/models/generics.py +2 -3
- nautobot/core/models/managers.py +0 -1
- nautobot/core/models/name_color_content_types.py +2 -2
- nautobot/core/models/tree_queries.py +2 -4
- nautobot/core/models/validators.py +1 -1
- nautobot/core/releases.py +1 -1
- nautobot/core/runner/importer.py +2 -25
- nautobot/core/runner/runner.py +2 -2
- nautobot/core/runner/settings.py +1 -1
- nautobot/core/settings.py +15 -21
- nautobot/core/settings_funcs.py +1 -2
- nautobot/core/signals.py +0 -1
- nautobot/core/tables.py +1 -1
- nautobot/core/templates/admin/base.html +9 -9
- nautobot/core/templates/exceptions/programming_error.html +2 -2
- nautobot/core/templates/graphene/graphiql.html +9 -3
- nautobot/core/templates/home.html +26 -6
- nautobot/core/templates/inc/footer.html +0 -7
- nautobot/core/templates/inc/javascript.html +4 -2
- nautobot/core/templates/inc/media.html +2 -2
- nautobot/core/templates/inc/nav_menu.html +27 -25
- nautobot/core/templates/inc/object_details_advanced_panel.html +12 -0
- nautobot/core/templates/nautobot_config.py.j2 +4 -4
- nautobot/core/templates/utilities/theme_preview.html +883 -0
- nautobot/core/templatetags/bootstrapped_goodies_tags.py +6 -3
- nautobot/core/templatetags/buttons.py +2 -1
- nautobot/core/templatetags/helpers.py +45 -18
- nautobot/core/testing/__init__.py +1 -2
- nautobot/core/testing/api.py +2 -4
- nautobot/core/testing/filters.py +1 -1
- nautobot/core/testing/integration.py +2 -2
- nautobot/core/testing/migrations.py +1 -0
- nautobot/core/testing/mixins.py +1 -2
- nautobot/core/testing/schema.py +1 -1
- nautobot/core/testing/utils.py +3 -3
- nautobot/core/testing/views.py +8 -8
- nautobot/core/tests/integration/test_home.py +1 -1
- nautobot/core/tests/integration/test_navbar.py +2 -2
- nautobot/core/tests/integration/test_plugin_home.py +2 -1
- nautobot/core/tests/integration/test_plugin_navbar.py +6 -6
- nautobot/core/tests/nautobot_config.py +3 -3
- nautobot/core/tests/runner.py +3 -4
- nautobot/core/tests/test_api.py +6 -51
- nautobot/core/tests/test_authentication.py +2 -3
- nautobot/core/tests/test_checks.py +1 -2
- nautobot/core/tests/test_config.py +1 -1
- nautobot/core/tests/test_csv.py +4 -4
- nautobot/core/tests/test_factory.py +1 -3
- nautobot/core/tests/test_filters.py +4 -7
- nautobot/core/tests/test_forms.py +3 -6
- nautobot/core/tests/test_graphql.py +33 -17
- nautobot/core/tests/test_jinja_filters.py +5 -4
- nautobot/core/tests/test_jobs.py +1 -1
- nautobot/core/tests/test_models.py +28 -3
- nautobot/core/tests/test_navigations.py +2 -1
- nautobot/core/tests/test_openapi.py +0 -1
- nautobot/core/tests/test_paginator.py +2 -2
- nautobot/core/tests/test_releases.py +2 -2
- nautobot/core/tests/test_tables.py +1 -1
- nautobot/core/tests/test_templatetags_helpers.py +17 -2
- nautobot/core/tests/test_templatetags_netutils.py +1 -2
- nautobot/core/tests/test_utils.py +4 -8
- nautobot/core/tests/test_views.py +95 -1
- nautobot/core/tests/test_views_utils.py +0 -1
- nautobot/core/urls.py +24 -4
- nautobot/core/utils/color.py +1 -1
- nautobot/core/utils/data.py +1 -2
- nautobot/core/utils/filtering.py +4 -5
- nautobot/core/utils/git.py +6 -2
- nautobot/core/utils/logging.py +2 -1
- nautobot/core/utils/lookup.py +4 -6
- nautobot/core/utils/migrations.py +1 -0
- nautobot/core/utils/permissions.py +2 -4
- nautobot/core/utils/requests.py +10 -0
- nautobot/core/views/__init__.py +32 -8
- nautobot/core/views/generic.py +14 -13
- nautobot/core/views/mixins.py +24 -22
- nautobot/core/views/renderers.py +1 -1
- nautobot/core/views/routers.py +6 -0
- nautobot/core/views/utils.py +2 -1
- nautobot/dcim/api/urls.py +1 -1
- nautobot/dcim/api/views.py +6 -5
- nautobot/dcim/apps.py +1 -1
- nautobot/dcim/choices.py +4 -1
- nautobot/dcim/constants.py +0 -1
- nautobot/dcim/elevations.py +1 -2
- nautobot/dcim/factory.py +125 -13
- nautobot/dcim/fields.py +1 -0
- nautobot/dcim/filters/__init__.py +2 -3
- nautobot/dcim/filters/mixins.py +1 -1
- nautobot/dcim/forms.py +37 -44
- nautobot/dcim/graphql/types.py +16 -17
- nautobot/dcim/migrations/0001_initial_part_1.py +4 -2
- nautobot/dcim/migrations/0002_initial_part_2.py +2 -1
- nautobot/dcim/migrations/0003_initial_part_3.py +2 -1
- nautobot/dcim/migrations/0004_initial_part_4.py +2 -1
- nautobot/dcim/migrations/0006_auto_slug.py +1 -0
- nautobot/dcim/migrations/0009_add_natural_indexing.py +1 -0
- nautobot/dcim/migrations/0010_interface_status.py +1 -0
- nautobot/dcim/migrations/0011_interface_status_data_migration.py +1 -0
- nautobot/dcim/migrations/0013_location_location_type.py +4 -2
- nautobot/dcim/migrations/0014_location_status_data_migration.py +1 -0
- nautobot/dcim/migrations/0016_device_components__timestamp_data_migration.py +0 -1
- nautobot/dcim/migrations/0018_device_redundancy_group.py +4 -2
- nautobot/dcim/migrations/0019_device_redundancy_group_data_migration.py +1 -0
- nautobot/dcim/migrations/0022_interface_redundancy_group.py +3 -1
- nautobot/dcim/migrations/0023_interface_redundancy_group_data_migration.py +1 -0
- nautobot/dcim/migrations/0024_move_site_fields_to_location_model.py +2 -1
- nautobot/dcim/migrations/0027_alter_interface_mac_address.py +1 -0
- nautobot/dcim/migrations/0028_alter_device_and_rack_role_add_new_role.py +1 -0
- nautobot/dcim/migrations/0029_device_and_rack_roles_data_migrations.py +1 -0
- nautobot/dcim/migrations/0033_add_tree_managers_and_foreign_keys_pre_data_migration.py +1 -0
- nautobot/dcim/migrations/0034_migrate_region_and_site_data_to_locations.py +1 -2
- nautobot/dcim/migrations/0038_fixup_fks_and_related_names.py +1 -0
- nautobot/dcim/migrations/0039_related_name_changes.py +1 -0
- nautobot/dcim/migrations/0042_alter_location_managers.py +1 -0
- nautobot/dcim/migrations/0044_tagsfield.py +1 -0
- nautobot/dcim/migrations/0047_status_nonnullable.py +1 -0
- nautobot/dcim/migrations/0051_interface_redundancy_group_nullable_status.py +1 -0
- nautobot/dcim/models/cables.py +3 -3
- nautobot/dcim/models/device_component_templates.py +6 -6
- nautobot/dcim/models/devices.py +9 -4
- nautobot/dcim/models/locations.py +6 -1
- nautobot/dcim/models/power.py +1 -1
- nautobot/dcim/models/racks.py +5 -4
- nautobot/dcim/navigation.py +0 -1
- nautobot/dcim/signals.py +3 -2
- nautobot/dcim/tables/__init__.py +5 -4
- nautobot/dcim/tables/cables.py +1 -0
- nautobot/dcim/tables/devices.py +1 -0
- nautobot/dcim/tables/locations.py +1 -1
- nautobot/dcim/tables/power.py +1 -0
- nautobot/dcim/tables/racks.py +2 -1
- nautobot/dcim/templates/dcim/device/consoleports.html +2 -2
- nautobot/dcim/templates/dcim/device/consoleserverports.html +2 -2
- nautobot/dcim/templates/dcim/device/devicebays.html +1 -1
- nautobot/dcim/templates/dcim/device/frontports.html +2 -2
- nautobot/dcim/templates/dcim/device/interfaces.html +4 -4
- nautobot/dcim/templates/dcim/device/inventory.html +1 -1
- nautobot/dcim/templates/dcim/device/poweroutlets.html +2 -2
- nautobot/dcim/templates/dcim/device/powerports.html +2 -2
- nautobot/dcim/templates/dcim/device/rearports.html +2 -2
- nautobot/dcim/templates/dcim/inc/location_hierarchy.html +4 -2
- nautobot/dcim/templates/dcim/rack.html +1 -1
- nautobot/dcim/templates/dcim/rack_elevation_list.html +1 -1
- nautobot/dcim/templates/dcim/rackreservation.html +1 -1
- nautobot/dcim/tests/test_api.py +7 -7
- nautobot/dcim/tests/test_cablepaths.py +0 -1
- nautobot/dcim/tests/test_filters.py +16 -13
- nautobot/dcim/tests/test_forms.py +2 -3
- nautobot/dcim/tests/test_graphql.py +1 -0
- nautobot/dcim/tests/test_migrations.py +2 -2
- nautobot/dcim/tests/test_models.py +2 -2
- nautobot/dcim/tests/test_views.py +77 -14
- nautobot/dcim/urls.py +3 -2
- nautobot/dcim/utils.py +1 -1
- nautobot/dcim/views.py +4 -3
- nautobot/extras/admin.py +2 -1
- nautobot/extras/api/customfields.py +0 -2
- nautobot/extras/api/mixins.py +0 -1
- nautobot/extras/api/serializers.py +4 -4
- nautobot/extras/api/urls.py +1 -1
- nautobot/extras/api/views.py +1 -1
- nautobot/extras/apps.py +3 -4
- nautobot/extras/choices.py +3 -18
- nautobot/extras/context_managers.py +1 -1
- nautobot/extras/datasources/__init__.py +3 -1
- nautobot/extras/datasources/git.py +33 -12
- nautobot/extras/datasources/utils.py +0 -1
- nautobot/extras/factory.py +20 -0
- nautobot/extras/filters/__init__.py +2 -3
- nautobot/extras/filters/customfields.py +0 -1
- nautobot/extras/filters/mixins.py +1 -1
- nautobot/extras/forms/__init__.py +3 -4
- nautobot/extras/forms/base.py +1 -1
- nautobot/extras/forms/forms.py +29 -11
- nautobot/extras/forms/mixins.py +1 -1
- nautobot/extras/graphql/types.py +2 -2
- nautobot/extras/health_checks.py +1 -1
- nautobot/extras/jobs.py +43 -25
- nautobot/extras/management/__init__.py +0 -1
- nautobot/extras/management/commands/refresh_dynamic_group_member_caches.py +1 -1
- nautobot/extras/management/commands/runjob.py +3 -3
- nautobot/extras/management/commands/webhook_receiver.py +1 -2
- nautobot/extras/migrations/0001_initial_part_1.py +2 -1
- nautobot/extras/migrations/0002_initial_part_2.py +2 -1
- nautobot/extras/migrations/0003_initial_part_3.py +1 -0
- nautobot/extras/migrations/0006_graphqlquery.py +2 -1
- nautobot/extras/migrations/0007_configcontextschema.py +3 -1
- nautobot/extras/migrations/0009_computedfield.py +3 -1
- nautobot/extras/migrations/0011_fileattachment_fileproxy.py +3 -1
- nautobot/extras/migrations/0012_healthchecktestmodel.py +2 -1
- nautobot/extras/migrations/0014_auto_slug.py +1 -0
- nautobot/extras/migrations/0015_scheduled_job.py +3 -1
- nautobot/extras/migrations/0016_secret.py +4 -2
- nautobot/extras/migrations/0017_joblogentry.py +2 -1
- nautobot/extras/migrations/0018_joblog_data_migration.py +2 -1
- nautobot/extras/migrations/0021_customfield_changelog_data.py +3 -2
- nautobot/extras/migrations/0022_objectchange_object_datav2.py +1 -0
- nautobot/extras/migrations/0023_job_model.py +4 -2
- nautobot/extras/migrations/0026_job_add_gitrepository_fk.py +1 -0
- nautobot/extras/migrations/0029_dynamicgroup.py +3 -1
- nautobot/extras/migrations/0031_tag_content_types.py +1 -0
- nautobot/extras/migrations/0032_tag_content_types_data_migration.py +1 -0
- nautobot/extras/migrations/0040_dynamicgroup__dynamicgroupmembership.py +2 -1
- nautobot/extras/migrations/0041_jobresult_job_kwargs.py +1 -0
- nautobot/extras/migrations/0043_note.py +3 -1
- nautobot/extras/migrations/0044_add_job_hook.py +3 -1
- nautobot/extras/migrations/0046_populate_custom_field_slug_label.py +1 -0
- nautobot/extras/migrations/0047_enforce_custom_field_slug.py +1 -0
- nautobot/extras/migrations/0051_add_job_task_queues.py +1 -0
- nautobot/extras/migrations/0055_configcontext_dynamic_groups.py +1 -0
- nautobot/extras/migrations/0057_jobbutton.py +3 -1
- nautobot/extras/migrations/0065_configcontext_data_migrations.py +1 -0
- nautobot/extras/migrations/0067_migrate_job_result_status.py +0 -1
- nautobot/extras/migrations/0068_jobresult__add_celery_fields.py +1 -0
- nautobot/extras/migrations/0071_replace_related_names.py +1 -0
- nautobot/extras/migrations/0077_migrate_custom_field_data.py +1 -0
- nautobot/extras/migrations/0078_remove_name_field_and_make_label_field_non_nullable.py +1 -0
- nautobot/extras/migrations/0080_tagsfield.py +1 -0
- nautobot/extras/migrations/0082_rename_relationship_name_to_label.py +1 -0
- nautobot/extras/migrations/0083_ensure_relationship_keys_are_unique.py +1 -0
- nautobot/extras/migrations/0090_joblogentry__log_level_data_migration.py +0 -1
- nautobot/extras/migrations/0095_ensure_note_timestamps_are_unique.py +4 -5
- nautobot/extras/migrations/0097_alter_job_result_remove_result.py +1 -0
- nautobot/extras/migrations/0100_fileproxy_job_result.py +1 -0
- nautobot/extras/migrations/0101_externalintegration.py +9 -1
- nautobot/extras/models/__init__.py +2 -3
- nautobot/extras/models/change_logging.py +0 -1
- nautobot/extras/models/customfields.py +13 -4
- nautobot/extras/models/datasources.py +2 -2
- nautobot/extras/models/groups.py +3 -4
- nautobot/extras/models/jobs.py +13 -7
- nautobot/extras/models/models.py +61 -24
- nautobot/extras/models/relationships.py +8 -4
- nautobot/extras/models/roles.py +1 -1
- nautobot/extras/models/secrets.py +1 -3
- nautobot/extras/models/tags.py +0 -1
- nautobot/extras/navigation.py +0 -1
- nautobot/extras/plugins/__init__.py +6 -7
- nautobot/extras/plugins/tables.py +1 -2
- nautobot/extras/plugins/utils.py +1 -1
- nautobot/extras/plugins/views.py +21 -21
- nautobot/extras/querysets.py +30 -13
- nautobot/extras/signals.py +6 -7
- nautobot/extras/tables.py +13 -5
- nautobot/extras/tasks.py +1 -2
- nautobot/extras/templates/extras/configcontext_edit.html +1 -1
- nautobot/extras/templates/extras/customfield_edit.html +7 -12
- nautobot/extras/templates/extras/dynamicgroup_edit.html +42 -47
- nautobot/extras/templates/extras/externalintegration_retrieve.html +12 -0
- nautobot/extras/templates/extras/externalintegration_update.html +28 -0
- nautobot/extras/templates/extras/gitrepository_result.html +2 -2
- nautobot/extras/templates/extras/graphqlquery.html +4 -2
- nautobot/extras/templates/extras/inc/jobresult_js.html +1 -1
- nautobot/extras/templates/extras/job_list.html +1 -1
- nautobot/extras/templates/extras/jobresult.html +2 -2
- nautobot/extras/templates/extras/secretsgroup_edit.html +40 -45
- nautobot/extras/templatetags/custom_links.py +2 -3
- nautobot/extras/templatetags/job_buttons.py +76 -83
- nautobot/extras/templatetags/log_levels.py +0 -1
- nautobot/extras/templatetags/plugins.py +1 -1
- nautobot/extras/test_jobs/api_test_job.py +1 -2
- nautobot/extras/test_jobs/atomic_transaction.py +1 -2
- nautobot/extras/test_jobs/dry_run.py +1 -2
- nautobot/extras/test_jobs/fail.py +1 -2
- nautobot/extras/test_jobs/field_order.py +1 -1
- nautobot/extras/test_jobs/file_upload_fail.py +1 -2
- nautobot/extras/test_jobs/file_upload_pass.py +1 -2
- nautobot/extras/test_jobs/has_sensitive_variables.py +1 -2
- nautobot/extras/test_jobs/ipaddress_vars.py +1 -4
- nautobot/extras/test_jobs/job_button_receiver.py +1 -2
- nautobot/extras/test_jobs/job_hook_receiver.py +1 -2
- nautobot/extras/test_jobs/job_variables.py +7 -2
- nautobot/extras/test_jobs/location_with_custom_field.py +1 -2
- nautobot/extras/test_jobs/log_redaction.py +1 -2
- nautobot/extras/test_jobs/log_skip_db_logging.py +1 -2
- nautobot/extras/test_jobs/modify_db.py +1 -2
- nautobot/extras/test_jobs/object_var_optional.py +1 -2
- nautobot/extras/test_jobs/object_var_required.py +1 -2
- nautobot/extras/test_jobs/object_vars.py +1 -2
- nautobot/extras/test_jobs/pass.py +1 -2
- nautobot/extras/test_jobs/profiling.py +1 -2
- nautobot/extras/tests/integration/__init__.py +1 -1
- nautobot/extras/tests/integration/test_computedfields.py +2 -2
- nautobot/extras/tests/integration/test_configcontextschema.py +5 -5
- nautobot/extras/tests/integration/test_plugins.py +5 -4
- nautobot/extras/tests/integration/test_tagfilter.py +1 -1
- nautobot/extras/tests/test_api.py +15 -9
- nautobot/extras/tests/test_changelog.py +3 -2
- nautobot/extras/tests/test_context_managers.py +6 -3
- nautobot/extras/tests/test_customfields.py +4 -4
- nautobot/extras/tests/test_datasources.py +1 -1
- nautobot/extras/tests/test_dynamicgroups.py +3 -3
- nautobot/extras/tests/test_filters.py +3 -2
- nautobot/extras/tests/test_forms.py +5 -6
- nautobot/extras/tests/test_git.py +1 -1
- nautobot/extras/tests/test_job_variables.py +20 -1
- nautobot/extras/tests/test_jobs.py +34 -5
- nautobot/extras/tests/test_models.py +156 -6
- nautobot/extras/tests/test_notes.py +0 -1
- nautobot/extras/tests/test_plugins.py +71 -9
- nautobot/extras/tests/test_relationships.py +3 -3
- nautobot/extras/tests/test_tags.py +1 -1
- nautobot/extras/tests/test_views.py +105 -25
- nautobot/extras/tests/test_webhooks.py +4 -5
- nautobot/extras/urls.py +0 -2
- nautobot/extras/utils.py +11 -9
- nautobot/extras/views.py +42 -44
- nautobot/generate_secret_key.py +10 -5
- nautobot/ipam/api/serializers.py +1 -2
- nautobot/ipam/api/urls.py +1 -1
- nautobot/ipam/api/views.py +1 -0
- nautobot/ipam/apps.py +2 -1
- nautobot/ipam/factory.py +6 -9
- nautobot/ipam/fields.py +1 -1
- nautobot/ipam/filters.py +42 -58
- nautobot/ipam/formfields.py +1 -2
- nautobot/ipam/forms.py +5 -4
- nautobot/ipam/graphql/types.py +1 -1
- nautobot/ipam/homepage.py +0 -1
- nautobot/ipam/lookups.py +2 -3
- nautobot/ipam/migrations/0002_initial_part_2.py +2 -1
- nautobot/ipam/migrations/0003_remove_max_length.py +1 -0
- nautobot/ipam/migrations/0004_fixup_p2p_broadcast.py +0 -1
- nautobot/ipam/migrations/0005_auto_slug.py +1 -0
- nautobot/ipam/migrations/0010_alter_ipam_role_add_new_role.py +1 -0
- nautobot/ipam/migrations/0011_migrate_ipam_role_data.py +1 -0
- nautobot/ipam/migrations/0020_related_name_changes.py +1 -0
- nautobot/ipam/migrations/0022_aggregate_to_prefix_data_migration.py +1 -2
- nautobot/ipam/migrations/0024_interface_to_ipaddress_m2m.py +2 -1
- nautobot/ipam/migrations/0025_interface_ipaddress_m2m_data_migration.py +15 -13
- nautobot/ipam/migrations/0028_tagsfield.py +1 -0
- nautobot/ipam/migrations/0030_ipam__namespaces.py +3 -1
- nautobot/ipam/migrations/0034_status_nonnullable.py +1 -0
- nautobot/ipam/migrations/0037_data_migration_vlan_group_name_uniqueness.py +0 -1
- nautobot/ipam/migrations/0039_alter_ipaddresstointerface_ip_address.py +20 -0
- nautobot/ipam/models.py +11 -8
- nautobot/ipam/navigation.py +0 -1
- nautobot/ipam/querysets.py +48 -49
- nautobot/ipam/tables.py +11 -2
- nautobot/ipam/templates/ipam/ipaddress.html +30 -6
- nautobot/ipam/templates/ipam/ipaddress_interfaces.html +3 -3
- nautobot/ipam/templates/ipam/ipaddress_vm_interfaces.html +32 -0
- nautobot/ipam/tests/test_api.py +2 -2
- nautobot/ipam/tests/test_filters.py +13 -17
- nautobot/ipam/tests/test_migrations.py +1 -2
- nautobot/ipam/tests/test_models.py +17 -2
- nautobot/ipam/tests/test_ordering.py +1 -1
- nautobot/ipam/tests/test_querysets.py +2 -2
- nautobot/ipam/tests/test_views.py +6 -6
- nautobot/ipam/urls.py +6 -0
- nautobot/ipam/utils/migrations.py +0 -1
- nautobot/ipam/views.py +26 -6
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap-theme.css +142 -142
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap-theme.css.map +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap-theme.min.css +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap-theme.min.css.map +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.css +307 -307
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.css.map +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.min.css +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.min.css.map +1 -1
- nautobot/project-static/css/base.css +59 -30
- nautobot/project-static/css/dark.css +38 -31
- nautobot/project-static/docs/404.html +17 -87
- nautobot/project-static/docs/apps/index.html +17 -87
- nautobot/project-static/docs/apps/nautobot-apps.html +17 -87
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +405 -475
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +28 -98
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +2334 -2396
- nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +17 -87
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +132 -202
- nautobot/project-static/docs/code-reference/nautobot/apps/config.html +17 -87
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +155 -87
- nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +17 -87
- nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +17 -87
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +42 -112
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +1028 -1098
- nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +186 -256
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +1454 -1156
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +1443 -1507
- nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +157 -203
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +17 -87
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +32 -102
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +3822 -3888
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +990 -1060
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +65 -123
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +1431 -1495
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +3618 -3640
- nautobot/project-static/docs/development/apps/api/configuration-view.html +17 -87
- nautobot/project-static/docs/development/apps/api/database-backend-config.html +19 -89
- nautobot/project-static/docs/development/apps/api/models/django-admin.html +17 -87
- nautobot/project-static/docs/development/apps/api/models/global-search.html +17 -87
- nautobot/project-static/docs/development/apps/api/models/graphql.html +17 -87
- nautobot/project-static/docs/development/apps/api/models/index.html +17 -87
- nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +17 -87
- nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +17 -87
- nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +19 -89
- nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +19 -89
- nautobot/project-static/docs/development/apps/api/platform-features/index.html +19 -89
- nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +17 -87
- nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +17 -87
- nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +21 -87
- nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +17 -87
- nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +17 -87
- nautobot/project-static/docs/development/apps/api/prometheus.html +17 -87
- nautobot/project-static/docs/development/apps/api/setup.html +17 -87
- nautobot/project-static/docs/development/apps/api/testing.html +20 -90
- nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +17 -87
- nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +17 -87
- nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +17 -87
- nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +19 -89
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-detail-views.html +209 -140
- nautobot/project-static/docs/development/apps/api/ui-extensions/tabs.html +13 -5390
- nautobot/project-static/docs/development/apps/api/views/base-template.html +17 -87
- nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +22 -92
- nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +17 -87
- nautobot/project-static/docs/development/apps/api/views/help-documentation.html +17 -87
- nautobot/project-static/docs/development/apps/api/views/index.html +17 -87
- nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +17 -87
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +17 -87
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +17 -87
- nautobot/project-static/docs/development/apps/api/views/notes.html +19 -89
- nautobot/project-static/docs/development/apps/api/views/rest-api.html +17 -87
- nautobot/project-static/docs/development/apps/api/views/urls.html +17 -87
- nautobot/project-static/docs/development/apps/api/views/view-overrides.html +13 -5385
- nautobot/project-static/docs/development/apps/index.html +17 -87
- nautobot/project-static/docs/development/apps/migration/code-updates.html +17 -87
- nautobot/project-static/docs/development/apps/migration/dependency-updates.html +17 -87
- nautobot/project-static/docs/development/apps/migration/from-v1.html +17 -88
- nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +17 -87
- nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +17 -87
- nautobot/project-static/docs/development/apps/migration/model-updates/global.html +17 -87
- nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +17 -87
- nautobot/project-static/docs/development/apps/porting-from-netbox.html +17 -87
- nautobot/project-static/docs/development/core/application-registry.html +20 -90
- nautobot/project-static/docs/development/core/best-practices.html +20 -90
- nautobot/project-static/docs/development/core/bootstrap-ui.html +5360 -0
- nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +17 -87
- nautobot/project-static/docs/development/core/extending-models.html +21 -87
- nautobot/project-static/docs/development/core/generic-views.html +17 -87
- nautobot/project-static/docs/development/core/getting-started.html +124 -301
- nautobot/project-static/docs/development/core/homepage.html +17 -87
- nautobot/project-static/docs/development/core/index.html +17 -87
- nautobot/project-static/docs/development/core/model-features.html +17 -87
- nautobot/project-static/docs/development/core/natural-keys.html +17 -87
- nautobot/project-static/docs/development/core/navigation-menu.html +17 -87
- nautobot/project-static/docs/development/core/react-ui.html +13 -5668
- nautobot/project-static/docs/development/core/release-checklist.html +20 -96
- nautobot/project-static/docs/development/core/role-internals.html +20 -90
- nautobot/project-static/docs/development/core/style-guide.html +77 -146
- nautobot/project-static/docs/development/core/templates.html +20 -90
- nautobot/project-static/docs/development/core/testing.html +17 -87
- nautobot/project-static/docs/development/core/user-preferences.html +17 -87
- nautobot/project-static/docs/development/index.html +17 -87
- nautobot/project-static/docs/development/jobs/index.html +424 -425
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +75 -98
- nautobot/project-static/docs/development/react-ui.html +3 -3
- nautobot/project-static/docs/img/relationship_w_json_filter.png +0 -0
- nautobot/project-static/docs/index.html +90 -93
- nautobot/project-static/docs/media/admin_ui_run_permission.png +0 -0
- nautobot/project-static/docs/media/development/homepage_changelog_panel.png +0 -0
- nautobot/project-static/docs/media/development/homepage_dcim_panel.png +0 -0
- nautobot/project-static/docs/media/installation/nautobot_ui_admin.png +0 -0
- nautobot/project-static/docs/media/installation/nautobot_ui_login.png +0 -0
- nautobot/project-static/docs/media/models/dynamicgroup_filtering_01.png +0 -0
- nautobot/project-static/docs/media/models/dynamicgroup_workflow_advanced_1_01.png +0 -0
- nautobot/project-static/docs/media/models/dynamicgroup_workflow_advanced_1_02.png +0 -0
- nautobot/project-static/docs/media/models/dynamicgroup_workflow_advanced_1_03.png +0 -0
- nautobot/project-static/docs/media/models/dynamicgroup_workflow_advanced_1_04.png +0 -0
- nautobot/project-static/docs/media/models/dynamicgroup_workflow_advanced_1_05.png +0 -0
- nautobot/project-static/docs/media/models/dynamicgroup_workflow_advanced_2_01.png +0 -0
- nautobot/project-static/docs/media/models/dynamicgroup_workflow_advanced_2_02.png +0 -0
- nautobot/project-static/docs/media/models/dynamicgroup_workflow_advanced_2_03.png +0 -0
- nautobot/project-static/docs/media/models/dynamicgroup_workflow_advanced_2_04.png +0 -0
- nautobot/project-static/docs/media/models/dynamicgroup_workflow_advanced_2_05.png +0 -0
- nautobot/project-static/docs/media/models/dynamicgroup_workflow_advanced_2_06.png +0 -0
- nautobot/project-static/docs/media/models/dynamicgroup_workflow_advanced_2_07.png +0 -0
- nautobot/project-static/docs/media/models/dynamicgroup_workflow_basic_01.png +0 -0
- nautobot/project-static/docs/media/models/dynamicgroup_workflow_basic_02.png +0 -0
- nautobot/project-static/docs/media/models/dynamicgroup_workflow_basic_03.png +0 -0
- nautobot/project-static/docs/media/models/jobbutton_form.png +0 -0
- nautobot/project-static/docs/media/models/site_jobbuttons.png +0 -0
- nautobot/project-static/docs/media/plugins/plugin_admin_config.png +0 -0
- nautobot/project-static/docs/media/plugins/plugin_admin_ui.png +0 -0
- nautobot/project-static/docs/media/ss_config_contexts.png +0 -0
- nautobot/project-static/docs/media/ss_graphiql.png +0 -0
- nautobot/project-static/docs/media/ss_main_page.png +0 -0
- nautobot/project-static/docs/media/ss_plugin_chatops.png +0 -0
- nautobot/project-static/docs/media/ss_plugin_golden_config.png +0 -0
- nautobot/project-static/docs/media/ss_prefix_hierarchy.png +0 -0
- nautobot/project-static/docs/objects.inv +0 -0
- nautobot/project-static/docs/release-notes/index.html +17 -87
- nautobot/project-static/docs/release-notes/version-1.0.html +17 -87
- nautobot/project-static/docs/release-notes/version-1.1.html +17 -87
- nautobot/project-static/docs/release-notes/version-1.2.html +17 -87
- nautobot/project-static/docs/release-notes/version-1.3.html +17 -87
- nautobot/project-static/docs/release-notes/version-1.4.html +18 -88
- nautobot/project-static/docs/release-notes/version-1.5.html +17 -87
- nautobot/project-static/docs/release-notes/version-1.6.html +17 -87
- nautobot/project-static/docs/release-notes/version-2.0.html +467 -336
- nautobot/project-static/docs/release-notes/version-2.1.html +470 -108
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +240 -255
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +17 -87
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +20 -90
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +17 -87
- nautobot/project-static/docs/user-guide/administration/configuration/index.html +17 -87
- nautobot/project-static/docs/user-guide/administration/configuration/node-configuration.html +13 -5417
- nautobot/project-static/docs/user-guide/administration/configuration/optional-settings.html +47 -113
- nautobot/project-static/docs/user-guide/administration/configuration/required-settings.html +17 -87
- nautobot/project-static/docs/user-guide/administration/guides/caching.html +17 -87
- nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +17 -87
- nautobot/project-static/docs/user-guide/administration/guides/healthcheck.html +17 -87
- nautobot/project-static/docs/user-guide/administration/guides/permissions.html +17 -87
- nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +17 -87
- nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +17 -87
- nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +17 -87
- nautobot/project-static/docs/user-guide/administration/installation/app-install.html +17 -87
- nautobot/project-static/docs/user-guide/administration/installation/docker.html +17 -87
- nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +17 -87
- nautobot/project-static/docs/user-guide/administration/installation/http-server.html +17 -87
- nautobot/project-static/docs/user-guide/administration/installation/index.html +22 -109
- nautobot/project-static/docs/user-guide/administration/installation/install_system.html +18 -101
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +23 -140
- nautobot/project-static/docs/user-guide/administration/installation/selinux-troubleshooting.html +17 -87
- nautobot/project-static/docs/user-guide/administration/installation/services.html +17 -87
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +17 -87
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +17 -87
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +92 -181
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +17 -87
- nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +17 -87
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +17 -87
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +17 -87
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +17 -87
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +17 -87
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +18 -88
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +17 -87
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +17 -87
- nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +23 -89
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +18 -88
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/ipam/media/ipam_namespace_documentation.drawio +259 -1
- nautobot/project-static/docs/user-guide/core-data-model/ipam/media/ipam_namespace_documentation.drawio.png +0 -0
- nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +18 -88
- nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +17 -87
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +17 -87
- nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +17 -87
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +23 -93
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +17 -87
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +17 -87
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +26 -96
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +35 -103
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +19 -89
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +19 -91
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +19 -89
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +24 -94
- nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +39 -258
- nautobot/project-static/docs/user-guide/feature-guides/graphql.html +45 -243
- nautobot/project-static/docs/user-guide/feature-guides/images/custom-fields/custom_field_choices.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/custom-fields/custom_field_detail_grouped.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/custom-fields/custom_field_detail_label.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/custom-fields/custom_field_edit.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/custom-fields/custom_field_select.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/1-create-location-type.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/10-add-platform.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/11-platforms-page.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/12-add-tenant.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/13-assign-tenant-to-device.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/14-assign-tenant-to-device-2.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/15-create-device-type.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/16-interface-templates.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/17-templated-interfaces.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/18-assign-device-type.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/19-edit-ints-for-lag.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/2-create-manufacturer.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/20-ints-int-lag.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/21-device-type.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/22-create-vlans.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/23-create-vlans-2.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/24-vlan-main-page.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/25-add-vlan-to-interface.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/26-add-vlan-to-interface-2.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/27-add-rir.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/3-create-role.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/30-add-prefix.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/32-add-ip-addr.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/33-assign-address.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/34-assign-address-2.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/35-assign-address-3.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/36-verify-address.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/37-verify-prefix.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/38-verify-prefix2.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/4-create-device-type.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/41-device-search-results.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/42-address-search-v2.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/43-get-to-device-main-page.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/44-add-platform.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/5-create-device.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/6-create-location.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/7-location-type-page.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/8-location-page.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/git-as-data-source/01-git-data-source.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/git-as-data-source/02-git-data-source.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/git-as-data-source/03-git-data-source.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/git-as-data-source/04-git-data-source.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/git-as-data-source/05-git-data-source.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/git-as-data-source/06-git-data-source.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/git-as-data-source/07-git-data-source.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/git-as-data-source/08-git-data-source.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/git-as-data-source/09-git-data-source.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/git-as-data-source/10-git-data-source.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/git-as-data-source/11-git-data-source.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/git-as-data-source/12-git-data-source.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/git-as-data-source/13-git-data-source.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/git-as-data-source/14-git-data-source.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/git-as-data-source/15-git-data-source.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/git-as-data-source/16-git-data-source.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/git-as-data-source/17-git-data-source.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/graphql/00-graphiql.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/graphql/01-graphiql-explorer.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/graphql/02-graphiql-explorer-device-query.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/graphql/03-graphiql-explorer-device-attributes.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/graphql/04-graphql-query-01.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/graphql/05-graphiql-autocomplete.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/graphql/06-graphql-query-02.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/graphql/07-graphql-query-03.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/graphql/08-graphql-query-04.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/graphql/09-graphql-query-05.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/graphql/10-graphql-swagger.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/graphql/11-graphql-query-06.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/ip-address-merge-tool/ip_merge_button.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/ip-address-merge-tool/merge_button.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/ip-address-merge-tool/merge_view.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/ip-address-merge-tool/no_more_dup_ips.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/ip-address-merge-tool/skip_button.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/ip-address-merge-tool/unselect_ips.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/relationships/01-relationships.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/relationships/02-relationships.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/relationships/03-relationships.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/relationships/04-relationships.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/relationships/05-relationships.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/relationships/06-relationships.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/relationships/07-relationships.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/relationships/08-relationships.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/relationships/09-relationships.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/relationships/10-relationships.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/relationships/11-relationships.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +20 -90
- nautobot/project-static/docs/user-guide/feature-guides/relationships.html +22 -92
- nautobot/project-static/docs/user-guide/index.html +17 -87
- nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +17 -87
- nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +17 -87
- nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +17 -87
- nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +17 -87
- nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +22 -88
- nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +17 -87
- nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +68 -87
- nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +18 -88
- nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +17 -87
- nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +17 -87
- nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +17 -87
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +17 -87
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +17 -87
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +22 -88
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +17 -87
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +17 -87
- nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +17 -87
- nautobot/project-static/docs/user-guide/platform-functionality/note.html +17 -87
- nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +18 -88
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +17 -87
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +17 -87
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +17 -87
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +17 -87
- nautobot/project-static/docs/user-guide/platform-functionality/role.html +17 -87
- nautobot/project-static/docs/user-guide/platform-functionality/secret.html +17 -87
- nautobot/project-static/docs/user-guide/platform-functionality/status.html +17 -87
- nautobot/project-static/docs/user-guide/platform-functionality/tag.html +17 -87
- nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +43 -91
- nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +21 -87
- nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +17 -87
- nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +17 -87
- nautobot/project-static/js/homepage_layout.js +170 -0
- nautobot/project-static/js/theme.js +0 -5
- nautobot/tenancy/api/urls.py +1 -1
- nautobot/tenancy/api/views.py +1 -0
- nautobot/tenancy/factory.py +2 -2
- nautobot/tenancy/filters/__init__.py +1 -2
- nautobot/tenancy/forms.py +2 -2
- nautobot/tenancy/homepage.py +0 -1
- nautobot/tenancy/migrations/0001_initial.py +2 -1
- nautobot/tenancy/migrations/0002_auto_slug.py +1 -0
- nautobot/tenancy/migrations/0004_change_tree_manager_on_tree_models.py +1 -0
- nautobot/tenancy/migrations/0008_tagsfield.py +1 -0
- nautobot/tenancy/models.py +0 -1
- nautobot/tenancy/navigation.py +0 -1
- nautobot/tenancy/tables.py +1 -0
- nautobot/tenancy/templates/tenancy/tenantgroup.html +1 -1
- nautobot/tenancy/tests/test_filters.py +5 -5
- nautobot/tenancy/urls.py +1 -0
- nautobot/tenancy/views.py +2 -2
- nautobot/users/admin.py +1 -2
- nautobot/users/api/urls.py +1 -1
- nautobot/users/api/views.py +6 -4
- nautobot/users/factory.py +8 -24
- nautobot/users/filters.py +4 -4
- nautobot/users/forms.py +1 -0
- nautobot/users/migrations/0004_alter_user_managers.py +1 -0
- nautobot/users/migrations/0008_make_object_permission_a_changelogged_model.py +22 -0
- nautobot/users/models.py +2 -2
- nautobot/users/tests/test_api.py +7 -6
- nautobot/users/tests/test_filters.py +0 -1
- nautobot/users/tests/test_models.py +0 -1
- nautobot/users/tests/test_password_ui.py +1 -1
- nautobot/users/views.py +5 -4
- nautobot/virtualization/api/urls.py +1 -1
- nautobot/virtualization/api/views.py +2 -1
- nautobot/virtualization/apps.py +1 -1
- nautobot/virtualization/choices.py +0 -1
- nautobot/virtualization/factory.py +1 -1
- nautobot/virtualization/filters.py +1 -1
- nautobot/virtualization/forms.py +6 -6
- nautobot/virtualization/homepage.py +0 -1
- nautobot/virtualization/migrations/0003_vminterface_verbose_name.py +1 -0
- nautobot/virtualization/migrations/0004_auto_slug.py +1 -0
- nautobot/virtualization/migrations/0005_add_natural_indexing.py +1 -0
- nautobot/virtualization/migrations/0006_vminterface_status.py +1 -0
- nautobot/virtualization/migrations/0007_vminterface_status_data_migration.py +1 -0
- nautobot/virtualization/migrations/0011_alter_vminterface_mac_address.py +1 -0
- nautobot/virtualization/migrations/0012_alter_virtualmachine_role_add_new_role.py +1 -0
- nautobot/virtualization/migrations/0013_migrate_virtualmachine_role_data.py +1 -0
- nautobot/virtualization/migrations/0018_related_name_changes.py +1 -0
- nautobot/virtualization/migrations/0021_tagsfield_and_vminterface_to_primarymodel.py +1 -0
- nautobot/virtualization/migrations/0025_status_nonnullable.py +1 -0
- nautobot/virtualization/models.py +1 -2
- nautobot/virtualization/navigation.py +0 -1
- nautobot/virtualization/signals.py +0 -1
- nautobot/virtualization/tables.py +1 -0
- nautobot/virtualization/templates/virtualization/virtualmachine.html +2 -2
- nautobot/virtualization/tests/test_filters.py +3 -3
- nautobot/virtualization/tests/test_models.py +1 -1
- nautobot/virtualization/tests/test_views.py +2 -2
- nautobot/virtualization/urls.py +1 -0
- nautobot/virtualization/views.py +1 -1
- {nautobot-2.1.0b1.dist-info → nautobot-2.1.1.dist-info}/METADATA +10 -2
- {nautobot-2.1.0b1.dist-info → nautobot-2.1.1.dist-info}/RECORD +895 -993
- nautobot/core/management/commands/build_ui.py +0 -281
- nautobot/core/templates/base_react.html +0 -55
- nautobot/core/tests/test_cli.py +0 -25
- nautobot/project-static/docs/media/installation/nautobot_ui_guest.png +0 -0
- nautobot/project-static/docs/user-guide/core-data-model/ipam/media/ipam_namespace_documentation.drawio.svg +0 -4
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/39-address-search.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/40-addr-main-page.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/git-as-data-source/18-git-data-source.png +0 -0
- nautobot/ui/.eslintignore +0 -3
- nautobot/ui/.gitignore +0 -7
- nautobot/ui/.prettierignore +0 -6
- nautobot/ui/.prettierrc +0 -4
- nautobot/ui/README.md +0 -27
- nautobot/ui/config/env.js +0 -102
- nautobot/ui/config/getHttpsConfig.js +0 -68
- nautobot/ui/config/jest/babelTransform.js +0 -14
- nautobot/ui/config/jest/cssTransform.js +0 -12
- nautobot/ui/config/jest/fileTransform.js +0 -38
- nautobot/ui/config/modules.js +0 -151
- nautobot/ui/config/paths.js +0 -67
- nautobot/ui/config/webpack/persistentCache/createEnvironmentHash.js +0 -8
- nautobot/ui/config/webpack.config.js +0 -674
- nautobot/ui/config/webpackDevServer.config.js +0 -127
- nautobot/ui/jest.config.js +0 -35
- nautobot/ui/jsconfig.json +0 -4
- nautobot/ui/package-lock.json +0 -22947
- nautobot/ui/package.json +0 -119
- nautobot/ui/public/index.html +0 -47
- nautobot/ui/public/logo192.png +0 -0
- nautobot/ui/public/logo512.png +0 -0
- nautobot/ui/public/manifest.json +0 -25
- nautobot/ui/public/nautobot_logo.svg +0 -131
- nautobot/ui/public/robots.txt +0 -3
- nautobot/ui/scripts/build.js +0 -224
- nautobot/ui/scripts/start.js +0 -140
- nautobot/ui/scripts/test.js +0 -40
- nautobot/ui/src/App.js +0 -79
- nautobot/ui/src/components/AppFullWidthComponents.js +0 -8
- nautobot/ui/src/components/AppTab.js +0 -40
- nautobot/ui/src/components/Apps.js +0 -60
- nautobot/ui/src/components/FeedbackModal.js +0 -123
- nautobot/ui/src/components/FiltersPanel.js +0 -693
- nautobot/ui/src/components/HomeChangelogPanel.js +0 -98
- nautobot/ui/src/components/HomePanel.js +0 -58
- nautobot/ui/src/components/JobHistoryTable.js +0 -78
- nautobot/ui/src/components/Layout.js +0 -76
- nautobot/ui/src/components/LoadingWidget.js +0 -14
- nautobot/ui/src/components/Navbar.js +0 -204
- nautobot/ui/src/components/NotificationPopover.js +0 -27
- nautobot/ui/src/components/ObjectTable/ObjectListTable.js +0 -300
- nautobot/ui/src/components/ObjectTable/ObjectTable.js +0 -96
- nautobot/ui/src/components/ObjectTable/ObjectTableItem.js +0 -70
- nautobot/ui/src/components/ObjectTable/index.js +0 -3
- nautobot/ui/src/components/Pagination/PageNumberForm.js +0 -228
- nautobot/ui/src/components/Pagination/PageSizeForm.js +0 -65
- nautobot/ui/src/components/Pagination/Pagination.js +0 -67
- nautobot/ui/src/components/Pagination/index.js +0 -3
- nautobot/ui/src/components/ReferenceDataTag.js +0 -35
- nautobot/ui/src/components/Retrieve/RenderChangeLogsTab.js +0 -58
- nautobot/ui/src/components/Retrieve/RenderColumn.js +0 -30
- nautobot/ui/src/components/Retrieve/RenderGroup.js +0 -24
- nautobot/ui/src/components/Retrieve/RenderHeader.js +0 -125
- nautobot/ui/src/components/Retrieve/RenderNotesTab.js +0 -60
- nautobot/ui/src/components/Retrieve/RenderTable.js +0 -33
- nautobot/ui/src/components/Retrieve/RenderTabs.js +0 -56
- nautobot/ui/src/components/Retrieve/index.js +0 -7
- nautobot/ui/src/components/RouterButton.js +0 -10
- nautobot/ui/src/components/RouterLink.js +0 -10
- nautobot/ui/src/components/SidebarNav.js +0 -156
- nautobot/ui/src/components/__tests__/AppFullWidthComponents.test.js +0 -16
- nautobot/ui/src/components/__tests__/AppTab.test.js +0 -21
- nautobot/ui/src/components/__tests__/Apps.test.js +0 -14
- nautobot/ui/src/components/__tests__/Layout.test.js +0 -33
- nautobot/ui/src/components/__tests__/PageSizeForm.test.js +0 -13
- nautobot/ui/src/components/__tests__/Pagination.test.js +0 -43
- nautobot/ui/src/components/__tests__/Table.test.js +0 -39
- nautobot/ui/src/components/__tests__/TableItem.test.js +0 -39
- nautobot/ui/src/components/index.js +0 -4
- nautobot/ui/src/constants/apiPath.js +0 -13
- nautobot/ui/src/constants/icons.js +0 -15
- nautobot/ui/src/constants/size.js +0 -15
- nautobot/ui/src/file_templates/app_imports.js.j2 +0 -7
- nautobot/ui/src/file_templates/jsconfig-base.json +0 -12
- nautobot/ui/src/index.js +0 -65
- nautobot/ui/src/reportWebVitals.js +0 -15
- nautobot/ui/src/router.js +0 -77
- nautobot/ui/src/utils/api.js +0 -160
- nautobot/ui/src/utils/app-import.js +0 -15
- nautobot/ui/src/utils/color.js +0 -15
- nautobot/ui/src/utils/date.js +0 -14
- nautobot/ui/src/utils/index.js +0 -15
- nautobot/ui/src/utils/navigation.js +0 -48
- nautobot/ui/src/utils/session.js +0 -64
- nautobot/ui/src/utils/store.js +0 -242
- nautobot/ui/src/utils/string.js +0 -6
- nautobot/ui/src/utils/url.js +0 -4
- nautobot/ui/src/views/Home.js +0 -142
- nautobot/ui/src/views/InstalledApps.js +0 -80
- nautobot/ui/src/views/Login.js +0 -48
- nautobot/ui/src/views/Logout.js +0 -20
- nautobot/ui/src/views/__tests__/BSCreateViewTemplate.test.js +0 -11
- nautobot/ui/src/views/__tests__/BSListViewTemplate.test.js +0 -107
- nautobot/ui/src/views/__tests__/Login.test.js +0 -15
- nautobot/ui/src/views/generic/GenericView.js +0 -191
- nautobot/ui/src/views/generic/ObjectCreate.js +0 -96
- nautobot/ui/src/views/generic/ObjectList.js +0 -137
- nautobot/ui/src/views/generic/ObjectRetrieve.js +0 -87
- {nautobot-2.1.0b1.dist-info → nautobot-2.1.1.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.1.0b1.dist-info → nautobot-2.1.1.dist-info}/WHEEL +0 -0
- {nautobot-2.1.0b1.dist-info → nautobot-2.1.1.dist-info}/entry_points.txt +0 -0
|
@@ -1097,12 +1097,12 @@ textarea {
|
|
|
1097
1097
|
line-height: inherit;
|
|
1098
1098
|
}
|
|
1099
1099
|
a {
|
|
1100
|
-
color: #
|
|
1100
|
+
color: #0938e1;
|
|
1101
1101
|
text-decoration: none;
|
|
1102
1102
|
}
|
|
1103
1103
|
a:hover,
|
|
1104
1104
|
a:focus {
|
|
1105
|
-
color: #
|
|
1105
|
+
color: #0938e1;
|
|
1106
1106
|
text-decoration: underline;
|
|
1107
1107
|
}
|
|
1108
1108
|
a:focus {
|
|
@@ -1131,7 +1131,7 @@ img {
|
|
|
1131
1131
|
padding: 19px;
|
|
1132
1132
|
line-height: 1.71428572;
|
|
1133
1133
|
background-color: #ffffff;
|
|
1134
|
-
border: 1px solid #
|
|
1134
|
+
border: 1px solid #d2d2d2;
|
|
1135
1135
|
border-radius: 10px;
|
|
1136
1136
|
-webkit-transition: all 0.2s ease-in-out;
|
|
1137
1137
|
-o-transition: all 0.2s ease-in-out;
|
|
@@ -1147,7 +1147,7 @@ hr {
|
|
|
1147
1147
|
margin-top: 24px;
|
|
1148
1148
|
margin-bottom: 24px;
|
|
1149
1149
|
border: 0;
|
|
1150
|
-
border-top: 1px solid #
|
|
1150
|
+
border-top: 1px solid #d2d2d2;
|
|
1151
1151
|
}
|
|
1152
1152
|
.sr-only {
|
|
1153
1153
|
position: absolute;
|
|
@@ -1214,7 +1214,7 @@ h6 .small,
|
|
|
1214
1214
|
.h6 .small {
|
|
1215
1215
|
font-weight: 400;
|
|
1216
1216
|
line-height: 1;
|
|
1217
|
-
color: #
|
|
1217
|
+
color: #7d7f7c;
|
|
1218
1218
|
}
|
|
1219
1219
|
h1,
|
|
1220
1220
|
.h1,
|
|
@@ -1307,7 +1307,7 @@ small,
|
|
|
1307
1307
|
mark,
|
|
1308
1308
|
.mark {
|
|
1309
1309
|
padding: 0.2em;
|
|
1310
|
-
background-color: #
|
|
1310
|
+
background-color: #fef7f0;
|
|
1311
1311
|
}
|
|
1312
1312
|
.text-left {
|
|
1313
1313
|
text-align: left;
|
|
@@ -1334,7 +1334,7 @@ mark,
|
|
|
1334
1334
|
text-transform: capitalize;
|
|
1335
1335
|
}
|
|
1336
1336
|
.text-muted {
|
|
1337
|
-
color: #
|
|
1337
|
+
color: #7d7f7c;
|
|
1338
1338
|
}
|
|
1339
1339
|
.text-primary {
|
|
1340
1340
|
color: #007dff;
|
|
@@ -1344,25 +1344,25 @@ a.text-primary:focus {
|
|
|
1344
1344
|
color: #0064cc;
|
|
1345
1345
|
}
|
|
1346
1346
|
.text-success {
|
|
1347
|
-
color: #
|
|
1347
|
+
color: #169f32;
|
|
1348
1348
|
}
|
|
1349
1349
|
a.text-success:hover,
|
|
1350
1350
|
a.text-success:focus {
|
|
1351
|
-
color: #
|
|
1351
|
+
color: #107224;
|
|
1352
1352
|
}
|
|
1353
1353
|
.text-info {
|
|
1354
|
-
color: #
|
|
1354
|
+
color: #0938e1;
|
|
1355
1355
|
}
|
|
1356
1356
|
a.text-info:hover,
|
|
1357
1357
|
a.text-info:focus {
|
|
1358
|
-
color: #
|
|
1358
|
+
color: #072cb0;
|
|
1359
1359
|
}
|
|
1360
1360
|
.text-warning {
|
|
1361
|
-
color: #
|
|
1361
|
+
color: #ff8000;
|
|
1362
1362
|
}
|
|
1363
1363
|
a.text-warning:hover,
|
|
1364
1364
|
a.text-warning:focus {
|
|
1365
|
-
color: #
|
|
1365
|
+
color: #cc6600;
|
|
1366
1366
|
}
|
|
1367
1367
|
.text-danger {
|
|
1368
1368
|
color: #e01f1f;
|
|
@@ -1380,37 +1380,37 @@ a.bg-primary:focus {
|
|
|
1380
1380
|
background-color: #0064cc;
|
|
1381
1381
|
}
|
|
1382
1382
|
.bg-success {
|
|
1383
|
-
background-color: #
|
|
1383
|
+
background-color: #dff0d8;
|
|
1384
1384
|
}
|
|
1385
1385
|
a.bg-success:hover,
|
|
1386
1386
|
a.bg-success:focus {
|
|
1387
|
-
background-color: #
|
|
1387
|
+
background-color: #c1e2b3;
|
|
1388
1388
|
}
|
|
1389
1389
|
.bg-info {
|
|
1390
|
-
background-color: #
|
|
1390
|
+
background-color: #eaf2f9;
|
|
1391
1391
|
}
|
|
1392
1392
|
a.bg-info:hover,
|
|
1393
1393
|
a.bg-info:focus {
|
|
1394
|
-
background-color: #
|
|
1394
|
+
background-color: #c2d9ee;
|
|
1395
1395
|
}
|
|
1396
1396
|
.bg-warning {
|
|
1397
|
-
background-color: #
|
|
1397
|
+
background-color: #fef7f0;
|
|
1398
1398
|
}
|
|
1399
1399
|
a.bg-warning:hover,
|
|
1400
1400
|
a.bg-warning:focus {
|
|
1401
|
-
background-color: #
|
|
1401
|
+
background-color: #fbdec0;
|
|
1402
1402
|
}
|
|
1403
1403
|
.bg-danger {
|
|
1404
|
-
background-color: #
|
|
1404
|
+
background-color: #fce8e9;
|
|
1405
1405
|
}
|
|
1406
1406
|
a.bg-danger:hover,
|
|
1407
1407
|
a.bg-danger:focus {
|
|
1408
|
-
background-color: #
|
|
1408
|
+
background-color: #f6bbbe;
|
|
1409
1409
|
}
|
|
1410
1410
|
.page-header {
|
|
1411
1411
|
padding-bottom: 11px;
|
|
1412
1412
|
margin: 48px 0 24px;
|
|
1413
|
-
border-bottom: 1px solid #
|
|
1413
|
+
border-bottom: 1px solid #aaaaaa;
|
|
1414
1414
|
}
|
|
1415
1415
|
ul,
|
|
1416
1416
|
ol {
|
|
@@ -1477,7 +1477,7 @@ blockquote {
|
|
|
1477
1477
|
padding: 12px 24px;
|
|
1478
1478
|
margin: 0 0 24px;
|
|
1479
1479
|
font-size: 14px;
|
|
1480
|
-
border-left: 5px solid #
|
|
1480
|
+
border-left: 5px solid #aaaaaa;
|
|
1481
1481
|
}
|
|
1482
1482
|
blockquote p:last-child,
|
|
1483
1483
|
blockquote ul:last-child,
|
|
@@ -1490,7 +1490,7 @@ blockquote .small {
|
|
|
1490
1490
|
display: block;
|
|
1491
1491
|
font-size: 80%;
|
|
1492
1492
|
line-height: 1.71428572;
|
|
1493
|
-
color: #
|
|
1493
|
+
color: #7d7f7c;
|
|
1494
1494
|
}
|
|
1495
1495
|
blockquote footer:before,
|
|
1496
1496
|
blockquote small:before,
|
|
@@ -1502,7 +1502,7 @@ blockquote.pull-right {
|
|
|
1502
1502
|
padding-right: 15px;
|
|
1503
1503
|
padding-left: 0;
|
|
1504
1504
|
text-align: right;
|
|
1505
|
-
border-right: 5px solid #
|
|
1505
|
+
border-right: 5px solid #aaaaaa;
|
|
1506
1506
|
border-left: 0;
|
|
1507
1507
|
}
|
|
1508
1508
|
.blockquote-reverse footer:before,
|
|
@@ -1535,14 +1535,14 @@ samp {
|
|
|
1535
1535
|
code {
|
|
1536
1536
|
padding: 2px 4px;
|
|
1537
1537
|
font-size: 90%;
|
|
1538
|
-
color: #
|
|
1538
|
+
color: #646464;
|
|
1539
1539
|
background-color: #f4f4f4;
|
|
1540
1540
|
border-radius: 6px;
|
|
1541
1541
|
}
|
|
1542
1542
|
kbd {
|
|
1543
1543
|
padding: 2px 4px;
|
|
1544
1544
|
font-size: 90%;
|
|
1545
|
-
color: #
|
|
1545
|
+
color: #646464;
|
|
1546
1546
|
background-color: #f4f4f4;
|
|
1547
1547
|
border-radius: 4px;
|
|
1548
1548
|
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
|
|
@@ -1561,11 +1561,11 @@ pre {
|
|
|
1561
1561
|
margin: 0 0 12px;
|
|
1562
1562
|
font-size: 13px;
|
|
1563
1563
|
line-height: 1.71428572;
|
|
1564
|
-
color: #
|
|
1564
|
+
color: #646464;
|
|
1565
1565
|
word-break: break-all;
|
|
1566
1566
|
word-wrap: break-word;
|
|
1567
1567
|
background-color: #f4f4f4;
|
|
1568
|
-
border: 1px solid #
|
|
1568
|
+
border: 1px solid #aaaaaa;
|
|
1569
1569
|
border-radius: 6px;
|
|
1570
1570
|
}
|
|
1571
1571
|
pre code {
|
|
@@ -2361,9 +2361,9 @@ table th[class*="col-"] {
|
|
|
2361
2361
|
float: none;
|
|
2362
2362
|
}
|
|
2363
2363
|
caption {
|
|
2364
|
-
padding-top:
|
|
2365
|
-
padding-bottom:
|
|
2366
|
-
color: #
|
|
2364
|
+
padding-top: 10px;
|
|
2365
|
+
padding-bottom: 10px;
|
|
2366
|
+
color: #7d7f7c;
|
|
2367
2367
|
text-align: left;
|
|
2368
2368
|
}
|
|
2369
2369
|
th {
|
|
@@ -2380,14 +2380,14 @@ th {
|
|
|
2380
2380
|
.table > thead > tr > td,
|
|
2381
2381
|
.table > tbody > tr > td,
|
|
2382
2382
|
.table > tfoot > tr > td {
|
|
2383
|
-
padding:
|
|
2383
|
+
padding: 10px;
|
|
2384
2384
|
line-height: 1.71428572;
|
|
2385
2385
|
vertical-align: top;
|
|
2386
|
-
border-top: 1px solid #
|
|
2386
|
+
border-top: 1px solid #aaaaaa;
|
|
2387
2387
|
}
|
|
2388
2388
|
.table > thead > tr > th {
|
|
2389
2389
|
vertical-align: bottom;
|
|
2390
|
-
border-bottom: 2px solid #
|
|
2390
|
+
border-bottom: 2px solid #aaaaaa;
|
|
2391
2391
|
}
|
|
2392
2392
|
.table > caption + thead > tr:first-child > th,
|
|
2393
2393
|
.table > colgroup + thead > tr:first-child > th,
|
|
@@ -2398,7 +2398,7 @@ th {
|
|
|
2398
2398
|
border-top: 0;
|
|
2399
2399
|
}
|
|
2400
2400
|
.table > tbody + tbody {
|
|
2401
|
-
border-top: 2px solid #
|
|
2401
|
+
border-top: 2px solid #aaaaaa;
|
|
2402
2402
|
}
|
|
2403
2403
|
.table .table {
|
|
2404
2404
|
background-color: #ffffff;
|
|
@@ -2412,7 +2412,7 @@ th {
|
|
|
2412
2412
|
padding: 4px;
|
|
2413
2413
|
}
|
|
2414
2414
|
.table-bordered {
|
|
2415
|
-
border: 1px solid #
|
|
2415
|
+
border: 1px solid #aaaaaa;
|
|
2416
2416
|
}
|
|
2417
2417
|
.table-bordered > thead > tr > th,
|
|
2418
2418
|
.table-bordered > tbody > tr > th,
|
|
@@ -2420,17 +2420,17 @@ th {
|
|
|
2420
2420
|
.table-bordered > thead > tr > td,
|
|
2421
2421
|
.table-bordered > tbody > tr > td,
|
|
2422
2422
|
.table-bordered > tfoot > tr > td {
|
|
2423
|
-
border: 1px solid #
|
|
2423
|
+
border: 1px solid #aaaaaa;
|
|
2424
2424
|
}
|
|
2425
2425
|
.table-bordered > thead > tr > th,
|
|
2426
2426
|
.table-bordered > thead > tr > td {
|
|
2427
2427
|
border-bottom-width: 2px;
|
|
2428
2428
|
}
|
|
2429
2429
|
.table-striped > tbody > tr:nth-of-type(odd) {
|
|
2430
|
-
background-color: #
|
|
2430
|
+
background-color: #d2d2d2;
|
|
2431
2431
|
}
|
|
2432
2432
|
.table-hover > tbody > tr:hover {
|
|
2433
|
-
background-color:
|
|
2433
|
+
background-color: #eaf2f9;
|
|
2434
2434
|
}
|
|
2435
2435
|
.table > thead > tr > td.active,
|
|
2436
2436
|
.table > tbody > tr > td.active,
|
|
@@ -2444,14 +2444,14 @@ th {
|
|
|
2444
2444
|
.table > thead > tr.active > th,
|
|
2445
2445
|
.table > tbody > tr.active > th,
|
|
2446
2446
|
.table > tfoot > tr.active > th {
|
|
2447
|
-
background-color:
|
|
2447
|
+
background-color: #eaf2f9;
|
|
2448
2448
|
}
|
|
2449
2449
|
.table-hover > tbody > tr > td.active:hover,
|
|
2450
2450
|
.table-hover > tbody > tr > th.active:hover,
|
|
2451
2451
|
.table-hover > tbody > tr.active:hover > td,
|
|
2452
2452
|
.table-hover > tbody > tr:hover > .active,
|
|
2453
2453
|
.table-hover > tbody > tr.active:hover > th {
|
|
2454
|
-
background-color:
|
|
2454
|
+
background-color: #d6e6f3;
|
|
2455
2455
|
}
|
|
2456
2456
|
.table > thead > tr > td.success,
|
|
2457
2457
|
.table > tbody > tr > td.success,
|
|
@@ -2465,14 +2465,14 @@ th {
|
|
|
2465
2465
|
.table > thead > tr.success > th,
|
|
2466
2466
|
.table > tbody > tr.success > th,
|
|
2467
2467
|
.table > tfoot > tr.success > th {
|
|
2468
|
-
background-color: #
|
|
2468
|
+
background-color: #dff0d8;
|
|
2469
2469
|
}
|
|
2470
2470
|
.table-hover > tbody > tr > td.success:hover,
|
|
2471
2471
|
.table-hover > tbody > tr > th.success:hover,
|
|
2472
2472
|
.table-hover > tbody > tr.success:hover > td,
|
|
2473
2473
|
.table-hover > tbody > tr:hover > .success,
|
|
2474
2474
|
.table-hover > tbody > tr.success:hover > th {
|
|
2475
|
-
background-color: #
|
|
2475
|
+
background-color: #d0e9c6;
|
|
2476
2476
|
}
|
|
2477
2477
|
.table > thead > tr > td.info,
|
|
2478
2478
|
.table > tbody > tr > td.info,
|
|
@@ -2486,14 +2486,14 @@ th {
|
|
|
2486
2486
|
.table > thead > tr.info > th,
|
|
2487
2487
|
.table > tbody > tr.info > th,
|
|
2488
2488
|
.table > tfoot > tr.info > th {
|
|
2489
|
-
background-color: #
|
|
2489
|
+
background-color: #eaf2f9;
|
|
2490
2490
|
}
|
|
2491
2491
|
.table-hover > tbody > tr > td.info:hover,
|
|
2492
2492
|
.table-hover > tbody > tr > th.info:hover,
|
|
2493
2493
|
.table-hover > tbody > tr.info:hover > td,
|
|
2494
2494
|
.table-hover > tbody > tr:hover > .info,
|
|
2495
2495
|
.table-hover > tbody > tr.info:hover > th {
|
|
2496
|
-
background-color: #
|
|
2496
|
+
background-color: #d6e6f3;
|
|
2497
2497
|
}
|
|
2498
2498
|
.table > thead > tr > td.warning,
|
|
2499
2499
|
.table > tbody > tr > td.warning,
|
|
@@ -2507,14 +2507,14 @@ th {
|
|
|
2507
2507
|
.table > thead > tr.warning > th,
|
|
2508
2508
|
.table > tbody > tr.warning > th,
|
|
2509
2509
|
.table > tfoot > tr.warning > th {
|
|
2510
|
-
background-color: #
|
|
2510
|
+
background-color: #fef7f0;
|
|
2511
2511
|
}
|
|
2512
2512
|
.table-hover > tbody > tr > td.warning:hover,
|
|
2513
2513
|
.table-hover > tbody > tr > th.warning:hover,
|
|
2514
2514
|
.table-hover > tbody > tr.warning:hover > td,
|
|
2515
2515
|
.table-hover > tbody > tr:hover > .warning,
|
|
2516
2516
|
.table-hover > tbody > tr.warning:hover > th {
|
|
2517
|
-
background-color: #
|
|
2517
|
+
background-color: #fcead8;
|
|
2518
2518
|
}
|
|
2519
2519
|
.table > thead > tr > td.danger,
|
|
2520
2520
|
.table > tbody > tr > td.danger,
|
|
@@ -2528,14 +2528,14 @@ th {
|
|
|
2528
2528
|
.table > thead > tr.danger > th,
|
|
2529
2529
|
.table > tbody > tr.danger > th,
|
|
2530
2530
|
.table > tfoot > tr.danger > th {
|
|
2531
|
-
background-color: #
|
|
2531
|
+
background-color: #fce8e9;
|
|
2532
2532
|
}
|
|
2533
2533
|
.table-hover > tbody > tr > td.danger:hover,
|
|
2534
2534
|
.table-hover > tbody > tr > th.danger:hover,
|
|
2535
2535
|
.table-hover > tbody > tr.danger:hover > td,
|
|
2536
2536
|
.table-hover > tbody > tr:hover > .danger,
|
|
2537
2537
|
.table-hover > tbody > tr.danger:hover > th {
|
|
2538
|
-
background-color: #
|
|
2538
|
+
background-color: #f9d1d3;
|
|
2539
2539
|
}
|
|
2540
2540
|
.table-responsive {
|
|
2541
2541
|
min-height: 0.01%;
|
|
@@ -2547,7 +2547,7 @@ th {
|
|
|
2547
2547
|
margin-bottom: 18px;
|
|
2548
2548
|
overflow-y: hidden;
|
|
2549
2549
|
-ms-overflow-style: -ms-autohiding-scrollbar;
|
|
2550
|
-
border: 1px solid #
|
|
2550
|
+
border: 1px solid #aaaaaa;
|
|
2551
2551
|
}
|
|
2552
2552
|
.table-responsive > .table {
|
|
2553
2553
|
margin-bottom: 0;
|
|
@@ -2599,9 +2599,9 @@ legend {
|
|
|
2599
2599
|
margin-bottom: 24px;
|
|
2600
2600
|
font-size: 21px;
|
|
2601
2601
|
line-height: inherit;
|
|
2602
|
-
color: #
|
|
2602
|
+
color: #646464;
|
|
2603
2603
|
border: 0;
|
|
2604
|
-
border-bottom: 1px solid #
|
|
2604
|
+
border-bottom: 1px solid #919396;
|
|
2605
2605
|
}
|
|
2606
2606
|
label {
|
|
2607
2607
|
display: inline-block;
|
|
@@ -2665,7 +2665,7 @@ output {
|
|
|
2665
2665
|
color: #1a1a1a;
|
|
2666
2666
|
background-color: #ffffff;
|
|
2667
2667
|
background-image: none;
|
|
2668
|
-
border: 1px solid #
|
|
2668
|
+
border: 1px solid #d2d2d2;
|
|
2669
2669
|
border-radius: 10px;
|
|
2670
2670
|
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
|
2671
2671
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
|
@@ -2683,14 +2683,14 @@ output {
|
|
|
2683
2683
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(0, 125, 255, 0.6);
|
|
2684
2684
|
}
|
|
2685
2685
|
.form-control::-moz-placeholder {
|
|
2686
|
-
color: #
|
|
2686
|
+
color: #919396;
|
|
2687
2687
|
opacity: 1;
|
|
2688
2688
|
}
|
|
2689
2689
|
.form-control:-ms-input-placeholder {
|
|
2690
|
-
color: #
|
|
2690
|
+
color: #919396;
|
|
2691
2691
|
}
|
|
2692
2692
|
.form-control::-webkit-input-placeholder {
|
|
2693
|
-
color: #
|
|
2693
|
+
color: #919396;
|
|
2694
2694
|
}
|
|
2695
2695
|
.form-control::-ms-expand {
|
|
2696
2696
|
background-color: transparent;
|
|
@@ -2699,7 +2699,7 @@ output {
|
|
|
2699
2699
|
.form-control[disabled],
|
|
2700
2700
|
.form-control[readonly],
|
|
2701
2701
|
fieldset[disabled] .form-control {
|
|
2702
|
-
background-color: #
|
|
2702
|
+
background-color: #f4f4f4;
|
|
2703
2703
|
opacity: 1;
|
|
2704
2704
|
}
|
|
2705
2705
|
.form-control[disabled],
|
|
@@ -2921,25 +2921,25 @@ select[multiple].input-lg {
|
|
|
2921
2921
|
.has-success.checkbox label,
|
|
2922
2922
|
.has-success.radio-inline label,
|
|
2923
2923
|
.has-success.checkbox-inline label {
|
|
2924
|
-
color: #
|
|
2924
|
+
color: #169f32;
|
|
2925
2925
|
}
|
|
2926
2926
|
.has-success .form-control {
|
|
2927
|
-
border-color: #
|
|
2927
|
+
border-color: #169f32;
|
|
2928
2928
|
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
|
2929
2929
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
|
2930
2930
|
}
|
|
2931
2931
|
.has-success .form-control:focus {
|
|
2932
|
-
border-color: #
|
|
2933
|
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #
|
|
2934
|
-
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #
|
|
2932
|
+
border-color: #107224;
|
|
2933
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #38e35b;
|
|
2934
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #38e35b;
|
|
2935
2935
|
}
|
|
2936
2936
|
.has-success .input-group-addon {
|
|
2937
|
-
color: #
|
|
2938
|
-
background-color: #
|
|
2939
|
-
border-color: #
|
|
2937
|
+
color: #169f32;
|
|
2938
|
+
background-color: #dff0d8;
|
|
2939
|
+
border-color: #169f32;
|
|
2940
2940
|
}
|
|
2941
2941
|
.has-success .form-control-feedback {
|
|
2942
|
-
color: #
|
|
2942
|
+
color: #169f32;
|
|
2943
2943
|
}
|
|
2944
2944
|
.has-warning .help-block,
|
|
2945
2945
|
.has-warning .control-label,
|
|
@@ -2951,25 +2951,25 @@ select[multiple].input-lg {
|
|
|
2951
2951
|
.has-warning.checkbox label,
|
|
2952
2952
|
.has-warning.radio-inline label,
|
|
2953
2953
|
.has-warning.checkbox-inline label {
|
|
2954
|
-
color: #
|
|
2954
|
+
color: #ff8000;
|
|
2955
2955
|
}
|
|
2956
2956
|
.has-warning .form-control {
|
|
2957
|
-
border-color: #
|
|
2957
|
+
border-color: #ff8000;
|
|
2958
2958
|
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
|
2959
2959
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
|
2960
2960
|
}
|
|
2961
2961
|
.has-warning .form-control:focus {
|
|
2962
|
-
border-color: #
|
|
2963
|
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #
|
|
2964
|
-
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #
|
|
2962
|
+
border-color: #cc6600;
|
|
2963
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ffb366;
|
|
2964
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ffb366;
|
|
2965
2965
|
}
|
|
2966
2966
|
.has-warning .input-group-addon {
|
|
2967
|
-
color: #
|
|
2968
|
-
background-color: #
|
|
2969
|
-
border-color: #
|
|
2967
|
+
color: #ff8000;
|
|
2968
|
+
background-color: #fef7f0;
|
|
2969
|
+
border-color: #ff8000;
|
|
2970
2970
|
}
|
|
2971
2971
|
.has-warning .form-control-feedback {
|
|
2972
|
-
color: #
|
|
2972
|
+
color: #ff8000;
|
|
2973
2973
|
}
|
|
2974
2974
|
.has-error .help-block,
|
|
2975
2975
|
.has-error .control-label,
|
|
@@ -2995,7 +2995,7 @@ select[multiple].input-lg {
|
|
|
2995
2995
|
}
|
|
2996
2996
|
.has-error .input-group-addon {
|
|
2997
2997
|
color: #e01f1f;
|
|
2998
|
-
background-color: #
|
|
2998
|
+
background-color: #fce8e9;
|
|
2999
2999
|
border-color: #e01f1f;
|
|
3000
3000
|
}
|
|
3001
3001
|
.has-error .form-control-feedback {
|
|
@@ -3159,25 +3159,25 @@ fieldset[disabled] a.btn {
|
|
|
3159
3159
|
}
|
|
3160
3160
|
.btn-default {
|
|
3161
3161
|
color: #007dff;
|
|
3162
|
-
background-color:
|
|
3162
|
+
background-color: transparent;
|
|
3163
3163
|
border-color: #007dff;
|
|
3164
3164
|
}
|
|
3165
3165
|
.btn-default:focus,
|
|
3166
3166
|
.btn-default.focus {
|
|
3167
3167
|
color: #007dff;
|
|
3168
|
-
background-color:
|
|
3168
|
+
background-color: rgba(0, 0, 0, 0);
|
|
3169
3169
|
border-color: #003e80;
|
|
3170
3170
|
}
|
|
3171
3171
|
.btn-default:hover {
|
|
3172
3172
|
color: #007dff;
|
|
3173
|
-
background-color:
|
|
3173
|
+
background-color: rgba(0, 0, 0, 0);
|
|
3174
3174
|
border-color: #005fc2;
|
|
3175
3175
|
}
|
|
3176
3176
|
.btn-default:active,
|
|
3177
3177
|
.btn-default.active,
|
|
3178
3178
|
.open > .dropdown-toggle.btn-default {
|
|
3179
3179
|
color: #007dff;
|
|
3180
|
-
background-color:
|
|
3180
|
+
background-color: rgba(0, 0, 0, 0);
|
|
3181
3181
|
background-image: none;
|
|
3182
3182
|
border-color: #005fc2;
|
|
3183
3183
|
}
|
|
@@ -3191,7 +3191,7 @@ fieldset[disabled] a.btn {
|
|
|
3191
3191
|
.btn-default.active.focus,
|
|
3192
3192
|
.open > .dropdown-toggle.btn-default.focus {
|
|
3193
3193
|
color: #007dff;
|
|
3194
|
-
background-color:
|
|
3194
|
+
background-color: rgba(0, 0, 0, 0);
|
|
3195
3195
|
border-color: #003e80;
|
|
3196
3196
|
}
|
|
3197
3197
|
.btn-default.disabled:hover,
|
|
@@ -3203,34 +3203,34 @@ fieldset[disabled] .btn-default:focus,
|
|
|
3203
3203
|
.btn-default.disabled.focus,
|
|
3204
3204
|
.btn-default[disabled].focus,
|
|
3205
3205
|
fieldset[disabled] .btn-default.focus {
|
|
3206
|
-
background-color:
|
|
3206
|
+
background-color: transparent;
|
|
3207
3207
|
border-color: #007dff;
|
|
3208
3208
|
}
|
|
3209
3209
|
.btn-default .badge {
|
|
3210
|
-
color:
|
|
3210
|
+
color: transparent;
|
|
3211
3211
|
background-color: #007dff;
|
|
3212
3212
|
}
|
|
3213
3213
|
.btn-primary {
|
|
3214
3214
|
color: #ffffff;
|
|
3215
|
-
background-color: #
|
|
3215
|
+
background-color: #007dff;
|
|
3216
3216
|
border-color: transparent;
|
|
3217
3217
|
}
|
|
3218
3218
|
.btn-primary:focus,
|
|
3219
3219
|
.btn-primary.focus {
|
|
3220
3220
|
color: #ffffff;
|
|
3221
|
-
background-color: #
|
|
3221
|
+
background-color: #0064cc;
|
|
3222
3222
|
border-color: rgba(0, 0, 0, 0);
|
|
3223
3223
|
}
|
|
3224
3224
|
.btn-primary:hover {
|
|
3225
3225
|
color: #ffffff;
|
|
3226
|
-
background-color: #
|
|
3226
|
+
background-color: #0064cc;
|
|
3227
3227
|
border-color: rgba(0, 0, 0, 0);
|
|
3228
3228
|
}
|
|
3229
3229
|
.btn-primary:active,
|
|
3230
3230
|
.btn-primary.active,
|
|
3231
3231
|
.open > .dropdown-toggle.btn-primary {
|
|
3232
3232
|
color: #ffffff;
|
|
3233
|
-
background-color: #
|
|
3233
|
+
background-color: #0064cc;
|
|
3234
3234
|
background-image: none;
|
|
3235
3235
|
border-color: rgba(0, 0, 0, 0);
|
|
3236
3236
|
}
|
|
@@ -3244,7 +3244,7 @@ fieldset[disabled] .btn-default.focus {
|
|
|
3244
3244
|
.btn-primary.active.focus,
|
|
3245
3245
|
.open > .dropdown-toggle.btn-primary.focus {
|
|
3246
3246
|
color: #ffffff;
|
|
3247
|
-
background-color: #
|
|
3247
|
+
background-color: #0052a8;
|
|
3248
3248
|
border-color: rgba(0, 0, 0, 0);
|
|
3249
3249
|
}
|
|
3250
3250
|
.btn-primary.disabled:hover,
|
|
@@ -3256,34 +3256,34 @@ fieldset[disabled] .btn-primary:focus,
|
|
|
3256
3256
|
.btn-primary.disabled.focus,
|
|
3257
3257
|
.btn-primary[disabled].focus,
|
|
3258
3258
|
fieldset[disabled] .btn-primary.focus {
|
|
3259
|
-
background-color: #
|
|
3259
|
+
background-color: #007dff;
|
|
3260
3260
|
border-color: transparent;
|
|
3261
3261
|
}
|
|
3262
3262
|
.btn-primary .badge {
|
|
3263
|
-
color: #
|
|
3263
|
+
color: #007dff;
|
|
3264
3264
|
background-color: #ffffff;
|
|
3265
3265
|
}
|
|
3266
3266
|
.btn-success {
|
|
3267
|
-
color: #
|
|
3268
|
-
background-color: #
|
|
3267
|
+
color: #ffffff;
|
|
3268
|
+
background-color: #169f32;
|
|
3269
3269
|
border-color: transparent;
|
|
3270
3270
|
}
|
|
3271
3271
|
.btn-success:focus,
|
|
3272
3272
|
.btn-success.focus {
|
|
3273
|
-
color: #
|
|
3274
|
-
background-color: #
|
|
3273
|
+
color: #ffffff;
|
|
3274
|
+
background-color: #107224;
|
|
3275
3275
|
border-color: rgba(0, 0, 0, 0);
|
|
3276
3276
|
}
|
|
3277
3277
|
.btn-success:hover {
|
|
3278
|
-
color: #
|
|
3279
|
-
background-color: #
|
|
3278
|
+
color: #ffffff;
|
|
3279
|
+
background-color: #107224;
|
|
3280
3280
|
border-color: rgba(0, 0, 0, 0);
|
|
3281
3281
|
}
|
|
3282
3282
|
.btn-success:active,
|
|
3283
3283
|
.btn-success.active,
|
|
3284
3284
|
.open > .dropdown-toggle.btn-success {
|
|
3285
|
-
color: #
|
|
3286
|
-
background-color: #
|
|
3285
|
+
color: #ffffff;
|
|
3286
|
+
background-color: #107224;
|
|
3287
3287
|
background-image: none;
|
|
3288
3288
|
border-color: rgba(0, 0, 0, 0);
|
|
3289
3289
|
}
|
|
@@ -3296,8 +3296,8 @@ fieldset[disabled] .btn-primary.focus {
|
|
|
3296
3296
|
.btn-success:active.focus,
|
|
3297
3297
|
.btn-success.active.focus,
|
|
3298
3298
|
.open > .dropdown-toggle.btn-success.focus {
|
|
3299
|
-
color: #
|
|
3300
|
-
background-color: #
|
|
3299
|
+
color: #ffffff;
|
|
3300
|
+
background-color: #0b531a;
|
|
3301
3301
|
border-color: rgba(0, 0, 0, 0);
|
|
3302
3302
|
}
|
|
3303
3303
|
.btn-success.disabled:hover,
|
|
@@ -3309,34 +3309,34 @@ fieldset[disabled] .btn-success:focus,
|
|
|
3309
3309
|
.btn-success.disabled.focus,
|
|
3310
3310
|
.btn-success[disabled].focus,
|
|
3311
3311
|
fieldset[disabled] .btn-success.focus {
|
|
3312
|
-
background-color: #
|
|
3312
|
+
background-color: #169f32;
|
|
3313
3313
|
border-color: transparent;
|
|
3314
3314
|
}
|
|
3315
3315
|
.btn-success .badge {
|
|
3316
|
-
color: #
|
|
3317
|
-
background-color: #
|
|
3316
|
+
color: #169f32;
|
|
3317
|
+
background-color: #ffffff;
|
|
3318
3318
|
}
|
|
3319
3319
|
.btn-info {
|
|
3320
3320
|
color: #ffffff;
|
|
3321
|
-
background-color: #
|
|
3321
|
+
background-color: #0938e1;
|
|
3322
3322
|
border-color: transparent;
|
|
3323
3323
|
}
|
|
3324
3324
|
.btn-info:focus,
|
|
3325
3325
|
.btn-info.focus {
|
|
3326
3326
|
color: #ffffff;
|
|
3327
|
-
background-color: #
|
|
3327
|
+
background-color: #072cb0;
|
|
3328
3328
|
border-color: rgba(0, 0, 0, 0);
|
|
3329
3329
|
}
|
|
3330
3330
|
.btn-info:hover {
|
|
3331
3331
|
color: #ffffff;
|
|
3332
|
-
background-color: #
|
|
3332
|
+
background-color: #072cb0;
|
|
3333
3333
|
border-color: rgba(0, 0, 0, 0);
|
|
3334
3334
|
}
|
|
3335
3335
|
.btn-info:active,
|
|
3336
3336
|
.btn-info.active,
|
|
3337
3337
|
.open > .dropdown-toggle.btn-info {
|
|
3338
3338
|
color: #ffffff;
|
|
3339
|
-
background-color: #
|
|
3339
|
+
background-color: #072cb0;
|
|
3340
3340
|
background-image: none;
|
|
3341
3341
|
border-color: rgba(0, 0, 0, 0);
|
|
3342
3342
|
}
|
|
@@ -3350,7 +3350,7 @@ fieldset[disabled] .btn-success.focus {
|
|
|
3350
3350
|
.btn-info.active.focus,
|
|
3351
3351
|
.open > .dropdown-toggle.btn-info.focus {
|
|
3352
3352
|
color: #ffffff;
|
|
3353
|
-
background-color: #
|
|
3353
|
+
background-color: #06238e;
|
|
3354
3354
|
border-color: rgba(0, 0, 0, 0);
|
|
3355
3355
|
}
|
|
3356
3356
|
.btn-info.disabled:hover,
|
|
@@ -3362,34 +3362,34 @@ fieldset[disabled] .btn-info:focus,
|
|
|
3362
3362
|
.btn-info.disabled.focus,
|
|
3363
3363
|
.btn-info[disabled].focus,
|
|
3364
3364
|
fieldset[disabled] .btn-info.focus {
|
|
3365
|
-
background-color: #
|
|
3365
|
+
background-color: #0938e1;
|
|
3366
3366
|
border-color: transparent;
|
|
3367
3367
|
}
|
|
3368
3368
|
.btn-info .badge {
|
|
3369
|
-
color: #
|
|
3369
|
+
color: #0938e1;
|
|
3370
3370
|
background-color: #ffffff;
|
|
3371
3371
|
}
|
|
3372
3372
|
.btn-warning {
|
|
3373
3373
|
color: #ffffff;
|
|
3374
|
-
background-color: #
|
|
3374
|
+
background-color: #ff8000;
|
|
3375
3375
|
border-color: transparent;
|
|
3376
3376
|
}
|
|
3377
3377
|
.btn-warning:focus,
|
|
3378
3378
|
.btn-warning.focus {
|
|
3379
3379
|
color: #ffffff;
|
|
3380
|
-
background-color: #
|
|
3380
|
+
background-color: #cc6600;
|
|
3381
3381
|
border-color: rgba(0, 0, 0, 0);
|
|
3382
3382
|
}
|
|
3383
3383
|
.btn-warning:hover {
|
|
3384
3384
|
color: #ffffff;
|
|
3385
|
-
background-color: #
|
|
3385
|
+
background-color: #cc6600;
|
|
3386
3386
|
border-color: rgba(0, 0, 0, 0);
|
|
3387
3387
|
}
|
|
3388
3388
|
.btn-warning:active,
|
|
3389
3389
|
.btn-warning.active,
|
|
3390
3390
|
.open > .dropdown-toggle.btn-warning {
|
|
3391
3391
|
color: #ffffff;
|
|
3392
|
-
background-color: #
|
|
3392
|
+
background-color: #cc6600;
|
|
3393
3393
|
background-image: none;
|
|
3394
3394
|
border-color: rgba(0, 0, 0, 0);
|
|
3395
3395
|
}
|
|
@@ -3403,7 +3403,7 @@ fieldset[disabled] .btn-info.focus {
|
|
|
3403
3403
|
.btn-warning.active.focus,
|
|
3404
3404
|
.open > .dropdown-toggle.btn-warning.focus {
|
|
3405
3405
|
color: #ffffff;
|
|
3406
|
-
background-color: #
|
|
3406
|
+
background-color: #a85400;
|
|
3407
3407
|
border-color: rgba(0, 0, 0, 0);
|
|
3408
3408
|
}
|
|
3409
3409
|
.btn-warning.disabled:hover,
|
|
@@ -3415,11 +3415,11 @@ fieldset[disabled] .btn-warning:focus,
|
|
|
3415
3415
|
.btn-warning.disabled.focus,
|
|
3416
3416
|
.btn-warning[disabled].focus,
|
|
3417
3417
|
fieldset[disabled] .btn-warning.focus {
|
|
3418
|
-
background-color: #
|
|
3418
|
+
background-color: #ff8000;
|
|
3419
3419
|
border-color: transparent;
|
|
3420
3420
|
}
|
|
3421
3421
|
.btn-warning .badge {
|
|
3422
|
-
color: #
|
|
3422
|
+
color: #ff8000;
|
|
3423
3423
|
background-color: #ffffff;
|
|
3424
3424
|
}
|
|
3425
3425
|
.btn-danger {
|
|
@@ -3477,7 +3477,7 @@ fieldset[disabled] .btn-danger.focus {
|
|
|
3477
3477
|
}
|
|
3478
3478
|
.btn-link {
|
|
3479
3479
|
font-weight: 400;
|
|
3480
|
-
color: #
|
|
3480
|
+
color: #0938e1;
|
|
3481
3481
|
border-radius: 0;
|
|
3482
3482
|
}
|
|
3483
3483
|
.btn-link,
|
|
@@ -3497,7 +3497,7 @@ fieldset[disabled] .btn-link {
|
|
|
3497
3497
|
}
|
|
3498
3498
|
.btn-link:hover,
|
|
3499
3499
|
.btn-link:focus {
|
|
3500
|
-
color: #
|
|
3500
|
+
color: #0938e1;
|
|
3501
3501
|
text-decoration: underline;
|
|
3502
3502
|
background-color: transparent;
|
|
3503
3503
|
}
|
|
@@ -3505,7 +3505,7 @@ fieldset[disabled] .btn-link {
|
|
|
3505
3505
|
fieldset[disabled] .btn-link:hover,
|
|
3506
3506
|
.btn-link[disabled]:focus,
|
|
3507
3507
|
fieldset[disabled] .btn-link:focus {
|
|
3508
|
-
color: #
|
|
3508
|
+
color: #919396;
|
|
3509
3509
|
text-decoration: none;
|
|
3510
3510
|
}
|
|
3511
3511
|
.btn-lg,
|
|
@@ -3622,7 +3622,7 @@ tbody.collapse.in {
|
|
|
3622
3622
|
height: 1px;
|
|
3623
3623
|
margin: 11px 0;
|
|
3624
3624
|
overflow: hidden;
|
|
3625
|
-
background-color: #
|
|
3625
|
+
background-color: #aaaaaa;
|
|
3626
3626
|
}
|
|
3627
3627
|
.dropdown-menu > li > a {
|
|
3628
3628
|
display: block;
|
|
@@ -3635,22 +3635,22 @@ tbody.collapse.in {
|
|
|
3635
3635
|
}
|
|
3636
3636
|
.dropdown-menu > li > a:hover,
|
|
3637
3637
|
.dropdown-menu > li > a:focus {
|
|
3638
|
-
color: #
|
|
3638
|
+
color: #ffffff;
|
|
3639
3639
|
text-decoration: none;
|
|
3640
|
-
background-color:
|
|
3640
|
+
background-color: #646464;
|
|
3641
3641
|
}
|
|
3642
3642
|
.dropdown-menu > .active > a,
|
|
3643
3643
|
.dropdown-menu > .active > a:hover,
|
|
3644
3644
|
.dropdown-menu > .active > a:focus {
|
|
3645
3645
|
color: #007dff;
|
|
3646
3646
|
text-decoration: none;
|
|
3647
|
-
background-color:
|
|
3647
|
+
background-color: #eaf2f9;
|
|
3648
3648
|
outline: 0;
|
|
3649
3649
|
}
|
|
3650
3650
|
.dropdown-menu > .disabled > a,
|
|
3651
3651
|
.dropdown-menu > .disabled > a:hover,
|
|
3652
3652
|
.dropdown-menu > .disabled > a:focus {
|
|
3653
|
-
color: #
|
|
3653
|
+
color: #919396;
|
|
3654
3654
|
}
|
|
3655
3655
|
.dropdown-menu > .disabled > a:hover,
|
|
3656
3656
|
.dropdown-menu > .disabled > a:focus {
|
|
@@ -3679,7 +3679,7 @@ tbody.collapse.in {
|
|
|
3679
3679
|
padding: 3px 20px;
|
|
3680
3680
|
font-size: 12px;
|
|
3681
3681
|
line-height: 1.71428572;
|
|
3682
|
-
color: #
|
|
3682
|
+
color: #646464;
|
|
3683
3683
|
white-space: nowrap;
|
|
3684
3684
|
}
|
|
3685
3685
|
.dropdown-backdrop {
|
|
@@ -3978,7 +3978,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
|
3978
3978
|
color: #1a1a1a;
|
|
3979
3979
|
text-align: center;
|
|
3980
3980
|
background-color: #ffffff;
|
|
3981
|
-
border: 1px solid #
|
|
3981
|
+
border: 1px solid #d2d2d2;
|
|
3982
3982
|
border-radius: 10px;
|
|
3983
3983
|
}
|
|
3984
3984
|
.input-group-addon.input-sm {
|
|
@@ -4063,14 +4063,14 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
|
4063
4063
|
.nav > li > a:hover,
|
|
4064
4064
|
.nav > li > a:focus {
|
|
4065
4065
|
text-decoration: none;
|
|
4066
|
-
background-color:
|
|
4066
|
+
background-color: #aaaaaa;
|
|
4067
4067
|
}
|
|
4068
4068
|
.nav > li.disabled > a {
|
|
4069
|
-
color: #
|
|
4069
|
+
color: #919396;
|
|
4070
4070
|
}
|
|
4071
4071
|
.nav > li.disabled > a:hover,
|
|
4072
4072
|
.nav > li.disabled > a:focus {
|
|
4073
|
-
color: #
|
|
4073
|
+
color: #919396;
|
|
4074
4074
|
text-decoration: none;
|
|
4075
4075
|
cursor: not-allowed;
|
|
4076
4076
|
background-color: transparent;
|
|
@@ -4078,8 +4078,8 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
|
4078
4078
|
.nav .open > a,
|
|
4079
4079
|
.nav .open > a:hover,
|
|
4080
4080
|
.nav .open > a:focus {
|
|
4081
|
-
background-color:
|
|
4082
|
-
border-color: #
|
|
4081
|
+
background-color: #aaaaaa;
|
|
4082
|
+
border-color: #0938e1;
|
|
4083
4083
|
}
|
|
4084
4084
|
.nav .nav-divider {
|
|
4085
4085
|
height: 1px;
|
|
@@ -4091,7 +4091,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
|
4091
4091
|
max-width: none;
|
|
4092
4092
|
}
|
|
4093
4093
|
.nav-tabs {
|
|
4094
|
-
border-bottom: 1px solid #
|
|
4094
|
+
border-bottom: 1px solid #aaaaaa;
|
|
4095
4095
|
}
|
|
4096
4096
|
.nav-tabs > li {
|
|
4097
4097
|
float: left;
|
|
@@ -4104,7 +4104,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
|
4104
4104
|
border-radius: 6px 6px 0 0;
|
|
4105
4105
|
}
|
|
4106
4106
|
.nav-tabs > li > a:hover {
|
|
4107
|
-
border-color: #
|
|
4107
|
+
border-color: #aaaaaa #aaaaaa #aaaaaa;
|
|
4108
4108
|
}
|
|
4109
4109
|
.nav-tabs > li.active > a,
|
|
4110
4110
|
.nav-tabs > li.active > a:hover,
|
|
@@ -4112,7 +4112,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
|
4112
4112
|
color: #007dff;
|
|
4113
4113
|
cursor: default;
|
|
4114
4114
|
background-color: #ffffff;
|
|
4115
|
-
border: 1px solid #
|
|
4115
|
+
border: 1px solid #aaaaaa;
|
|
4116
4116
|
border-bottom-color: transparent;
|
|
4117
4117
|
}
|
|
4118
4118
|
.nav-tabs.nav-justified {
|
|
@@ -4146,17 +4146,17 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
|
4146
4146
|
.nav-tabs.nav-justified > .active > a,
|
|
4147
4147
|
.nav-tabs.nav-justified > .active > a:hover,
|
|
4148
4148
|
.nav-tabs.nav-justified > .active > a:focus {
|
|
4149
|
-
border: 1px solid #
|
|
4149
|
+
border: 1px solid #aaaaaa;
|
|
4150
4150
|
}
|
|
4151
4151
|
@media (min-width: 768px) {
|
|
4152
4152
|
.nav-tabs.nav-justified > li > a {
|
|
4153
|
-
border-bottom: 1px solid #
|
|
4153
|
+
border-bottom: 1px solid #aaaaaa;
|
|
4154
4154
|
border-radius: 6px 6px 0 0;
|
|
4155
4155
|
}
|
|
4156
4156
|
.nav-tabs.nav-justified > .active > a,
|
|
4157
4157
|
.nav-tabs.nav-justified > .active > a:hover,
|
|
4158
4158
|
.nav-tabs.nav-justified > .active > a:focus {
|
|
4159
|
-
border-bottom-color: #
|
|
4159
|
+
border-bottom-color: #aaaaaa;
|
|
4160
4160
|
}
|
|
4161
4161
|
}
|
|
4162
4162
|
.nav-pills > li {
|
|
@@ -4172,7 +4172,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
|
4172
4172
|
.nav-pills > li.active > a:hover,
|
|
4173
4173
|
.nav-pills > li.active > a:focus {
|
|
4174
4174
|
color: #007dff;
|
|
4175
|
-
background-color:
|
|
4175
|
+
background-color: #aaaaaa;
|
|
4176
4176
|
}
|
|
4177
4177
|
.nav-stacked > li {
|
|
4178
4178
|
float: none;
|
|
@@ -4214,17 +4214,17 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
|
4214
4214
|
.nav-tabs-justified > .active > a,
|
|
4215
4215
|
.nav-tabs-justified > .active > a:hover,
|
|
4216
4216
|
.nav-tabs-justified > .active > a:focus {
|
|
4217
|
-
border: 1px solid #
|
|
4217
|
+
border: 1px solid #aaaaaa;
|
|
4218
4218
|
}
|
|
4219
4219
|
@media (min-width: 768px) {
|
|
4220
4220
|
.nav-tabs-justified > li > a {
|
|
4221
|
-
border-bottom: 1px solid #
|
|
4221
|
+
border-bottom: 1px solid #aaaaaa;
|
|
4222
4222
|
border-radius: 6px 6px 0 0;
|
|
4223
4223
|
}
|
|
4224
4224
|
.nav-tabs-justified > .active > a,
|
|
4225
4225
|
.nav-tabs-justified > .active > a:hover,
|
|
4226
4226
|
.nav-tabs-justified > .active > a:focus {
|
|
4227
|
-
border-bottom-color: #
|
|
4227
|
+
border-bottom-color: #aaaaaa;
|
|
4228
4228
|
}
|
|
4229
4229
|
}
|
|
4230
4230
|
.tab-content > .tab-pane {
|
|
@@ -4568,27 +4568,27 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
|
4568
4568
|
}
|
|
4569
4569
|
}
|
|
4570
4570
|
.navbar-default {
|
|
4571
|
-
background-color: #
|
|
4572
|
-
border-color: #
|
|
4571
|
+
background-color: #d2d2d2;
|
|
4572
|
+
border-color: #d2d2d2;
|
|
4573
4573
|
}
|
|
4574
4574
|
.navbar-default .navbar-brand {
|
|
4575
|
-
color: #
|
|
4575
|
+
color: #7d7f7c;
|
|
4576
4576
|
}
|
|
4577
4577
|
.navbar-default .navbar-brand:hover,
|
|
4578
4578
|
.navbar-default .navbar-brand:focus {
|
|
4579
4579
|
color: #007dff;
|
|
4580
|
-
background-color:
|
|
4580
|
+
background-color: #aaaaaa;
|
|
4581
4581
|
}
|
|
4582
4582
|
.navbar-default .navbar-text {
|
|
4583
4583
|
color: #1a1a1a;
|
|
4584
4584
|
}
|
|
4585
4585
|
.navbar-default .navbar-nav > li > a {
|
|
4586
|
-
color: #
|
|
4586
|
+
color: #7d7f7c;
|
|
4587
4587
|
}
|
|
4588
4588
|
.navbar-default .navbar-nav > li > a:hover,
|
|
4589
4589
|
.navbar-default .navbar-nav > li > a:focus {
|
|
4590
4590
|
color: #007dff;
|
|
4591
|
-
background-color:
|
|
4591
|
+
background-color: #aaaaaa;
|
|
4592
4592
|
}
|
|
4593
4593
|
.navbar-default .navbar-nav > .active > a,
|
|
4594
4594
|
.navbar-default .navbar-nav > .active > a:hover,
|
|
@@ -4599,7 +4599,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
|
4599
4599
|
.navbar-default .navbar-nav > .disabled > a,
|
|
4600
4600
|
.navbar-default .navbar-nav > .disabled > a:hover,
|
|
4601
4601
|
.navbar-default .navbar-nav > .disabled > a:focus {
|
|
4602
|
-
color: #
|
|
4602
|
+
color: #919396;
|
|
4603
4603
|
background-color: transparent;
|
|
4604
4604
|
}
|
|
4605
4605
|
.navbar-default .navbar-nav > .open > a,
|
|
@@ -4610,12 +4610,12 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
|
4610
4610
|
}
|
|
4611
4611
|
@media (max-width: 767px) {
|
|
4612
4612
|
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
|
|
4613
|
-
color: #
|
|
4613
|
+
color: #7d7f7c;
|
|
4614
4614
|
}
|
|
4615
4615
|
.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
|
|
4616
4616
|
.navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
|
|
4617
4617
|
color: #007dff;
|
|
4618
|
-
background-color:
|
|
4618
|
+
background-color: #aaaaaa;
|
|
4619
4619
|
}
|
|
4620
4620
|
.navbar-default .navbar-nav .open .dropdown-menu > .active > a,
|
|
4621
4621
|
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
|
|
@@ -4626,7 +4626,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
|
4626
4626
|
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
|
|
4627
4627
|
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
|
|
4628
4628
|
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
|
|
4629
|
-
color: #
|
|
4629
|
+
color: #919396;
|
|
4630
4630
|
background-color: transparent;
|
|
4631
4631
|
}
|
|
4632
4632
|
}
|
|
@@ -4642,16 +4642,16 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
|
4642
4642
|
}
|
|
4643
4643
|
.navbar-default .navbar-collapse,
|
|
4644
4644
|
.navbar-default .navbar-form {
|
|
4645
|
-
border-color: #
|
|
4645
|
+
border-color: #d2d2d2;
|
|
4646
4646
|
}
|
|
4647
4647
|
.navbar-default .navbar-link {
|
|
4648
|
-
color: #
|
|
4648
|
+
color: #7d7f7c;
|
|
4649
4649
|
}
|
|
4650
4650
|
.navbar-default .navbar-link:hover {
|
|
4651
4651
|
color: #007dff;
|
|
4652
4652
|
}
|
|
4653
4653
|
.navbar-default .btn-link {
|
|
4654
|
-
color: #
|
|
4654
|
+
color: #7d7f7c;
|
|
4655
4655
|
}
|
|
4656
4656
|
.navbar-default .btn-link:hover,
|
|
4657
4657
|
.navbar-default .btn-link:focus {
|
|
@@ -4661,48 +4661,48 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
|
4661
4661
|
fieldset[disabled] .navbar-default .btn-link:hover,
|
|
4662
4662
|
.navbar-default .btn-link[disabled]:focus,
|
|
4663
4663
|
fieldset[disabled] .navbar-default .btn-link:focus {
|
|
4664
|
-
color: #
|
|
4664
|
+
color: #919396;
|
|
4665
4665
|
}
|
|
4666
4666
|
.navbar-inverse {
|
|
4667
4667
|
background-color: #121a25;
|
|
4668
4668
|
border-color: #121a25;
|
|
4669
4669
|
}
|
|
4670
4670
|
.navbar-inverse .navbar-brand {
|
|
4671
|
-
color: #
|
|
4671
|
+
color: #646464;
|
|
4672
4672
|
}
|
|
4673
4673
|
.navbar-inverse .navbar-brand:hover,
|
|
4674
4674
|
.navbar-inverse .navbar-brand:focus {
|
|
4675
|
-
color: #
|
|
4676
|
-
background-color:
|
|
4675
|
+
color: #ff8000;
|
|
4676
|
+
background-color: #121a25;
|
|
4677
4677
|
}
|
|
4678
4678
|
.navbar-inverse .navbar-text {
|
|
4679
4679
|
color: #ffffff;
|
|
4680
4680
|
}
|
|
4681
4681
|
.navbar-inverse .navbar-nav > li > a {
|
|
4682
|
-
color: #
|
|
4682
|
+
color: #646464;
|
|
4683
4683
|
}
|
|
4684
4684
|
.navbar-inverse .navbar-nav > li > a:hover,
|
|
4685
4685
|
.navbar-inverse .navbar-nav > li > a:focus {
|
|
4686
|
-
color: #
|
|
4687
|
-
background-color:
|
|
4686
|
+
color: #ff8000;
|
|
4687
|
+
background-color: #121a25;
|
|
4688
4688
|
}
|
|
4689
4689
|
.navbar-inverse .navbar-nav > .active > a,
|
|
4690
4690
|
.navbar-inverse .navbar-nav > .active > a:hover,
|
|
4691
4691
|
.navbar-inverse .navbar-nav > .active > a:focus {
|
|
4692
|
-
color: #
|
|
4693
|
-
background-color: #
|
|
4692
|
+
color: #ff8000;
|
|
4693
|
+
background-color: #121a25;
|
|
4694
4694
|
}
|
|
4695
4695
|
.navbar-inverse .navbar-nav > .disabled > a,
|
|
4696
4696
|
.navbar-inverse .navbar-nav > .disabled > a:hover,
|
|
4697
4697
|
.navbar-inverse .navbar-nav > .disabled > a:focus {
|
|
4698
|
-
color: #
|
|
4698
|
+
color: #646464;
|
|
4699
4699
|
background-color: transparent;
|
|
4700
4700
|
}
|
|
4701
4701
|
.navbar-inverse .navbar-nav > .open > a,
|
|
4702
4702
|
.navbar-inverse .navbar-nav > .open > a:hover,
|
|
4703
4703
|
.navbar-inverse .navbar-nav > .open > a:focus {
|
|
4704
|
-
color: #
|
|
4705
|
-
background-color: #
|
|
4704
|
+
color: #ff8000;
|
|
4705
|
+
background-color: #121a25;
|
|
4706
4706
|
}
|
|
4707
4707
|
@media (max-width: 767px) {
|
|
4708
4708
|
.navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
|
|
@@ -4712,58 +4712,58 @@ fieldset[disabled] .navbar-default .btn-link:focus {
|
|
|
4712
4712
|
background-color: #121a25;
|
|
4713
4713
|
}
|
|
4714
4714
|
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
|
|
4715
|
-
color: #
|
|
4715
|
+
color: #646464;
|
|
4716
4716
|
}
|
|
4717
4717
|
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
|
|
4718
4718
|
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
|
|
4719
|
-
color: #
|
|
4720
|
-
background-color:
|
|
4719
|
+
color: #ff8000;
|
|
4720
|
+
background-color: #121a25;
|
|
4721
4721
|
}
|
|
4722
4722
|
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
|
|
4723
4723
|
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
|
|
4724
4724
|
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
|
|
4725
|
-
color: #
|
|
4726
|
-
background-color: #
|
|
4725
|
+
color: #ff8000;
|
|
4726
|
+
background-color: #121a25;
|
|
4727
4727
|
}
|
|
4728
4728
|
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
|
|
4729
4729
|
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
|
|
4730
4730
|
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
|
|
4731
|
-
color: #
|
|
4731
|
+
color: #646464;
|
|
4732
4732
|
background-color: transparent;
|
|
4733
4733
|
}
|
|
4734
4734
|
}
|
|
4735
4735
|
.navbar-inverse .navbar-toggle {
|
|
4736
|
-
border-color: #
|
|
4736
|
+
border-color: #121a25;
|
|
4737
4737
|
}
|
|
4738
4738
|
.navbar-inverse .navbar-toggle:hover,
|
|
4739
4739
|
.navbar-inverse .navbar-toggle:focus {
|
|
4740
|
-
background-color: #
|
|
4740
|
+
background-color: #121a25;
|
|
4741
4741
|
}
|
|
4742
4742
|
.navbar-inverse .navbar-toggle .icon-bar {
|
|
4743
|
-
background-color: #
|
|
4743
|
+
background-color: #121a25;
|
|
4744
4744
|
}
|
|
4745
4745
|
.navbar-inverse .navbar-collapse,
|
|
4746
4746
|
.navbar-inverse .navbar-form {
|
|
4747
4747
|
border-color: #06090d;
|
|
4748
4748
|
}
|
|
4749
4749
|
.navbar-inverse .navbar-link {
|
|
4750
|
-
color: #
|
|
4750
|
+
color: #646464;
|
|
4751
4751
|
}
|
|
4752
4752
|
.navbar-inverse .navbar-link:hover {
|
|
4753
|
-
color: #
|
|
4753
|
+
color: #ff8000;
|
|
4754
4754
|
}
|
|
4755
4755
|
.navbar-inverse .btn-link {
|
|
4756
|
-
color: #
|
|
4756
|
+
color: #646464;
|
|
4757
4757
|
}
|
|
4758
4758
|
.navbar-inverse .btn-link:hover,
|
|
4759
4759
|
.navbar-inverse .btn-link:focus {
|
|
4760
|
-
color: #
|
|
4760
|
+
color: #ff8000;
|
|
4761
4761
|
}
|
|
4762
4762
|
.navbar-inverse .btn-link[disabled]:hover,
|
|
4763
4763
|
fieldset[disabled] .navbar-inverse .btn-link:hover,
|
|
4764
4764
|
.navbar-inverse .btn-link[disabled]:focus,
|
|
4765
4765
|
fieldset[disabled] .navbar-inverse .btn-link:focus {
|
|
4766
|
-
color: #
|
|
4766
|
+
color: #646464;
|
|
4767
4767
|
}
|
|
4768
4768
|
.breadcrumb {
|
|
4769
4769
|
padding: 8px 20px;
|
|
@@ -4777,7 +4777,7 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
|
|
|
4777
4777
|
}
|
|
4778
4778
|
.breadcrumb > li + li:before {
|
|
4779
4779
|
padding: 0 5px;
|
|
4780
|
-
color: #
|
|
4780
|
+
color: #919396;
|
|
4781
4781
|
content: "/\00a0";
|
|
4782
4782
|
}
|
|
4783
4783
|
.breadcrumb > .active {
|
|
@@ -4799,10 +4799,10 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
|
|
|
4799
4799
|
padding: 7px 19px;
|
|
4800
4800
|
margin-left: -1px;
|
|
4801
4801
|
line-height: 1.71428572;
|
|
4802
|
-
color: #
|
|
4802
|
+
color: #007dff;
|
|
4803
4803
|
text-decoration: none;
|
|
4804
|
-
background-color:
|
|
4805
|
-
border: 1px solid #
|
|
4804
|
+
background-color: transparent;
|
|
4805
|
+
border: 1px solid #007dff;
|
|
4806
4806
|
}
|
|
4807
4807
|
.pagination > li > a:hover,
|
|
4808
4808
|
.pagination > li > span:hover,
|
|
@@ -4810,8 +4810,8 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
|
|
|
4810
4810
|
.pagination > li > span:focus {
|
|
4811
4811
|
z-index: 2;
|
|
4812
4812
|
color: #007dff;
|
|
4813
|
-
background-color:
|
|
4814
|
-
border-color: #
|
|
4813
|
+
background-color: #eaf2f9;
|
|
4814
|
+
border-color: #007dff;
|
|
4815
4815
|
}
|
|
4816
4816
|
.pagination > li:first-child > a,
|
|
4817
4817
|
.pagination > li:first-child > span {
|
|
@@ -4831,10 +4831,10 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
|
|
|
4831
4831
|
.pagination > .active > a:focus,
|
|
4832
4832
|
.pagination > .active > span:focus {
|
|
4833
4833
|
z-index: 3;
|
|
4834
|
-
color: #
|
|
4834
|
+
color: #0938e1;
|
|
4835
4835
|
cursor: default;
|
|
4836
|
-
background-color: #
|
|
4837
|
-
border-color: #
|
|
4836
|
+
background-color: #eaf2f9;
|
|
4837
|
+
border-color: #007dff;
|
|
4838
4838
|
}
|
|
4839
4839
|
.pagination > .disabled > span,
|
|
4840
4840
|
.pagination > .disabled > span:hover,
|
|
@@ -4842,10 +4842,10 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
|
|
|
4842
4842
|
.pagination > .disabled > a,
|
|
4843
4843
|
.pagination > .disabled > a:hover,
|
|
4844
4844
|
.pagination > .disabled > a:focus {
|
|
4845
|
-
color: #
|
|
4845
|
+
color: #aaaaaa;
|
|
4846
4846
|
cursor: not-allowed;
|
|
4847
|
-
background-color: #
|
|
4848
|
-
border-color: #
|
|
4847
|
+
background-color: #f4f4f4;
|
|
4848
|
+
border-color: #007dff;
|
|
4849
4849
|
}
|
|
4850
4850
|
.pagination-lg > li > a,
|
|
4851
4851
|
.pagination-lg > li > span {
|
|
@@ -4892,14 +4892,14 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
|
|
|
4892
4892
|
.pager li > span {
|
|
4893
4893
|
display: inline-block;
|
|
4894
4894
|
padding: 5px 14px;
|
|
4895
|
-
background-color:
|
|
4896
|
-
border: 1px solid #
|
|
4895
|
+
background-color: transparent;
|
|
4896
|
+
border: 1px solid #007dff;
|
|
4897
4897
|
border-radius: 10px;
|
|
4898
4898
|
}
|
|
4899
4899
|
.pager li > a:hover,
|
|
4900
4900
|
.pager li > a:focus {
|
|
4901
4901
|
text-decoration: none;
|
|
4902
|
-
background-color:
|
|
4902
|
+
background-color: #eaf2f9;
|
|
4903
4903
|
}
|
|
4904
4904
|
.pager .next > a,
|
|
4905
4905
|
.pager .next > span {
|
|
@@ -4913,9 +4913,9 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
|
|
|
4913
4913
|
.pager .disabled > a:hover,
|
|
4914
4914
|
.pager .disabled > a:focus,
|
|
4915
4915
|
.pager .disabled > span {
|
|
4916
|
-
color: #
|
|
4916
|
+
color: #aaaaaa;
|
|
4917
4917
|
cursor: not-allowed;
|
|
4918
|
-
background-color:
|
|
4918
|
+
background-color: transparent;
|
|
4919
4919
|
}
|
|
4920
4920
|
.label {
|
|
4921
4921
|
display: inline;
|
|
@@ -4943,11 +4943,11 @@ a.label:focus {
|
|
|
4943
4943
|
top: -1px;
|
|
4944
4944
|
}
|
|
4945
4945
|
.label-default {
|
|
4946
|
-
background-color: #
|
|
4946
|
+
background-color: #919396;
|
|
4947
4947
|
}
|
|
4948
4948
|
.label-default[href]:hover,
|
|
4949
4949
|
.label-default[href]:focus {
|
|
4950
|
-
background-color: #
|
|
4950
|
+
background-color: #77797d;
|
|
4951
4951
|
}
|
|
4952
4952
|
.label-primary {
|
|
4953
4953
|
background-color: #007dff;
|
|
@@ -4957,25 +4957,25 @@ a.label:focus {
|
|
|
4957
4957
|
background-color: #0064cc;
|
|
4958
4958
|
}
|
|
4959
4959
|
.label-success {
|
|
4960
|
-
background-color: #
|
|
4960
|
+
background-color: #169f32;
|
|
4961
4961
|
}
|
|
4962
4962
|
.label-success[href]:hover,
|
|
4963
4963
|
.label-success[href]:focus {
|
|
4964
|
-
background-color: #
|
|
4964
|
+
background-color: #107224;
|
|
4965
4965
|
}
|
|
4966
4966
|
.label-info {
|
|
4967
|
-
background-color: #
|
|
4967
|
+
background-color: #0938e1;
|
|
4968
4968
|
}
|
|
4969
4969
|
.label-info[href]:hover,
|
|
4970
4970
|
.label-info[href]:focus {
|
|
4971
|
-
background-color: #
|
|
4971
|
+
background-color: #072cb0;
|
|
4972
4972
|
}
|
|
4973
4973
|
.label-warning {
|
|
4974
|
-
background-color: #
|
|
4974
|
+
background-color: #ff8000;
|
|
4975
4975
|
}
|
|
4976
4976
|
.label-warning[href]:hover,
|
|
4977
4977
|
.label-warning[href]:focus {
|
|
4978
|
-
background-color: #
|
|
4978
|
+
background-color: #cc6600;
|
|
4979
4979
|
}
|
|
4980
4980
|
.label-danger {
|
|
4981
4981
|
background-color: #e01f1f;
|
|
@@ -4995,7 +4995,7 @@ a.label:focus {
|
|
|
4995
4995
|
text-align: center;
|
|
4996
4996
|
white-space: nowrap;
|
|
4997
4997
|
vertical-align: middle;
|
|
4998
|
-
background-color: #
|
|
4998
|
+
background-color: #007dff;
|
|
4999
4999
|
border-radius: 10px;
|
|
5000
5000
|
}
|
|
5001
5001
|
.badge:empty {
|
|
@@ -5012,14 +5012,14 @@ a.label:focus {
|
|
|
5012
5012
|
}
|
|
5013
5013
|
a.badge:hover,
|
|
5014
5014
|
a.badge:focus {
|
|
5015
|
-
color: #
|
|
5015
|
+
color: #ffffff;
|
|
5016
5016
|
text-decoration: none;
|
|
5017
5017
|
cursor: pointer;
|
|
5018
5018
|
}
|
|
5019
5019
|
.list-group-item.active > .badge,
|
|
5020
5020
|
.nav-pills > .active > a > .badge {
|
|
5021
5021
|
color: #ffffff;
|
|
5022
|
-
background-color: #
|
|
5022
|
+
background-color: #007dff;
|
|
5023
5023
|
}
|
|
5024
5024
|
.list-group-item > .badge {
|
|
5025
5025
|
float: right;
|
|
@@ -5034,12 +5034,12 @@ a.badge:focus {
|
|
|
5034
5034
|
padding-top: 20px;
|
|
5035
5035
|
padding-bottom: 20px;
|
|
5036
5036
|
margin-bottom: 20px;
|
|
5037
|
-
color: #
|
|
5037
|
+
color: #ff8000;
|
|
5038
5038
|
background-color: transparent;
|
|
5039
5039
|
}
|
|
5040
5040
|
.jumbotron h1,
|
|
5041
5041
|
.jumbotron .h1 {
|
|
5042
|
-
color: #
|
|
5042
|
+
color: #ff8000;
|
|
5043
5043
|
}
|
|
5044
5044
|
.jumbotron p {
|
|
5045
5045
|
margin-bottom: 10px;
|
|
@@ -5079,7 +5079,7 @@ a.badge:focus {
|
|
|
5079
5079
|
margin-bottom: 24px;
|
|
5080
5080
|
line-height: 1.71428572;
|
|
5081
5081
|
background-color: #ffffff;
|
|
5082
|
-
border: 1px solid #
|
|
5082
|
+
border: 1px solid #d2d2d2;
|
|
5083
5083
|
border-radius: 10px;
|
|
5084
5084
|
-webkit-transition: border 0.2s ease-in-out;
|
|
5085
5085
|
-o-transition: border 0.2s ease-in-out;
|
|
@@ -5093,7 +5093,7 @@ a.badge:focus {
|
|
|
5093
5093
|
a.thumbnail:hover,
|
|
5094
5094
|
a.thumbnail:focus,
|
|
5095
5095
|
a.thumbnail.active {
|
|
5096
|
-
border-color: #
|
|
5096
|
+
border-color: #0938e1;
|
|
5097
5097
|
}
|
|
5098
5098
|
.thumbnail .caption {
|
|
5099
5099
|
padding: 0;
|
|
@@ -5131,45 +5131,45 @@ a.thumbnail.active {
|
|
|
5131
5131
|
color: inherit;
|
|
5132
5132
|
}
|
|
5133
5133
|
.alert-success {
|
|
5134
|
-
color: #
|
|
5135
|
-
background-color: #
|
|
5136
|
-
border-color: #
|
|
5134
|
+
color: #169f32;
|
|
5135
|
+
background-color: #dff0d8;
|
|
5136
|
+
border-color: #81c5a7;
|
|
5137
5137
|
}
|
|
5138
5138
|
.alert-success hr {
|
|
5139
|
-
border-top-color: #
|
|
5139
|
+
border-top-color: #70bd9b;
|
|
5140
5140
|
}
|
|
5141
5141
|
.alert-success .alert-link {
|
|
5142
|
-
color: #
|
|
5142
|
+
color: #107224;
|
|
5143
5143
|
}
|
|
5144
5144
|
.alert-info {
|
|
5145
|
-
color: #
|
|
5146
|
-
background-color: #
|
|
5147
|
-
border-color: #
|
|
5145
|
+
color: #0938e1;
|
|
5146
|
+
background-color: #eaf2f9;
|
|
5147
|
+
border-color: #007dff;
|
|
5148
5148
|
}
|
|
5149
5149
|
.alert-info hr {
|
|
5150
|
-
border-top-color: #
|
|
5150
|
+
border-top-color: #0070e6;
|
|
5151
5151
|
}
|
|
5152
5152
|
.alert-info .alert-link {
|
|
5153
|
-
color: #
|
|
5153
|
+
color: #072cb0;
|
|
5154
5154
|
}
|
|
5155
5155
|
.alert-warning {
|
|
5156
|
-
color: #
|
|
5157
|
-
background-color: #
|
|
5158
|
-
border-color: #
|
|
5156
|
+
color: #ff8000;
|
|
5157
|
+
background-color: #fef7f0;
|
|
5158
|
+
border-color: #f7924f;
|
|
5159
5159
|
}
|
|
5160
5160
|
.alert-warning hr {
|
|
5161
|
-
border-top-color: #
|
|
5161
|
+
border-top-color: #f68337;
|
|
5162
5162
|
}
|
|
5163
5163
|
.alert-warning .alert-link {
|
|
5164
|
-
color: #
|
|
5164
|
+
color: #cc6600;
|
|
5165
5165
|
}
|
|
5166
5166
|
.alert-danger {
|
|
5167
5167
|
color: #e01f1f;
|
|
5168
|
-
background-color: #
|
|
5169
|
-
border-color: #
|
|
5168
|
+
background-color: #fce8e9;
|
|
5169
|
+
border-color: #f07162;
|
|
5170
5170
|
}
|
|
5171
5171
|
.alert-danger hr {
|
|
5172
|
-
border-top-color: #
|
|
5172
|
+
border-top-color: #ee5c4b;
|
|
5173
5173
|
}
|
|
5174
5174
|
.alert-danger .alert-link {
|
|
5175
5175
|
color: #b31919;
|
|
@@ -5202,7 +5202,7 @@ a.thumbnail.active {
|
|
|
5202
5202
|
height: 24px;
|
|
5203
5203
|
margin-bottom: 24px;
|
|
5204
5204
|
overflow: hidden;
|
|
5205
|
-
background-color: #
|
|
5205
|
+
background-color: #d2d2d2;
|
|
5206
5206
|
border-radius: 10px;
|
|
5207
5207
|
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
5208
5208
|
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
@@ -5237,7 +5237,7 @@ a.thumbnail.active {
|
|
|
5237
5237
|
animation: progress-bar-stripes 2s linear infinite;
|
|
5238
5238
|
}
|
|
5239
5239
|
.progress-bar-success {
|
|
5240
|
-
background-color: #
|
|
5240
|
+
background-color: #169f32;
|
|
5241
5241
|
}
|
|
5242
5242
|
.progress-striped .progress-bar-success {
|
|
5243
5243
|
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
|
@@ -5245,7 +5245,7 @@ a.thumbnail.active {
|
|
|
5245
5245
|
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
|
5246
5246
|
}
|
|
5247
5247
|
.progress-bar-info {
|
|
5248
|
-
background-color: #
|
|
5248
|
+
background-color: #0938e1;
|
|
5249
5249
|
}
|
|
5250
5250
|
.progress-striped .progress-bar-info {
|
|
5251
5251
|
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
|
@@ -5253,7 +5253,7 @@ a.thumbnail.active {
|
|
|
5253
5253
|
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
|
5254
5254
|
}
|
|
5255
5255
|
.progress-bar-warning {
|
|
5256
|
-
background-color: #
|
|
5256
|
+
background-color: #ff8000;
|
|
5257
5257
|
}
|
|
5258
5258
|
.progress-striped .progress-bar-warning {
|
|
5259
5259
|
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
|
@@ -5326,7 +5326,7 @@ a.thumbnail.active {
|
|
|
5326
5326
|
padding: 10px 15px;
|
|
5327
5327
|
margin-bottom: -1px;
|
|
5328
5328
|
background-color: #ffffff;
|
|
5329
|
-
border: 1px solid #
|
|
5329
|
+
border: 1px solid #d2d2d2;
|
|
5330
5330
|
}
|
|
5331
5331
|
.list-group-item:first-child {
|
|
5332
5332
|
border-top-left-radius: 10px;
|
|
@@ -5340,9 +5340,9 @@ a.thumbnail.active {
|
|
|
5340
5340
|
.list-group-item.disabled,
|
|
5341
5341
|
.list-group-item.disabled:hover,
|
|
5342
5342
|
.list-group-item.disabled:focus {
|
|
5343
|
-
color: #
|
|
5343
|
+
color: #aaaaaa;
|
|
5344
5344
|
cursor: not-allowed;
|
|
5345
|
-
background-color: #
|
|
5345
|
+
background-color: #d2d2d2;
|
|
5346
5346
|
}
|
|
5347
5347
|
.list-group-item.disabled .list-group-item-heading,
|
|
5348
5348
|
.list-group-item.disabled:hover .list-group-item-heading,
|
|
@@ -5352,7 +5352,7 @@ a.thumbnail.active {
|
|
|
5352
5352
|
.list-group-item.disabled .list-group-item-text,
|
|
5353
5353
|
.list-group-item.disabled:hover .list-group-item-text,
|
|
5354
5354
|
.list-group-item.disabled:focus .list-group-item-text {
|
|
5355
|
-
color: #
|
|
5355
|
+
color: #aaaaaa;
|
|
5356
5356
|
}
|
|
5357
5357
|
.list-group-item.active,
|
|
5358
5358
|
.list-group-item.active:hover,
|
|
@@ -5360,7 +5360,7 @@ a.thumbnail.active {
|
|
|
5360
5360
|
z-index: 2;
|
|
5361
5361
|
color: #007dff;
|
|
5362
5362
|
background-color: #ffffff;
|
|
5363
|
-
border-color: #
|
|
5363
|
+
border-color: #d2d2d2;
|
|
5364
5364
|
}
|
|
5365
5365
|
.list-group-item.active .list-group-item-heading,
|
|
5366
5366
|
.list-group-item.active:hover .list-group-item-heading,
|
|
@@ -5380,31 +5380,31 @@ a.thumbnail.active {
|
|
|
5380
5380
|
}
|
|
5381
5381
|
a.list-group-item,
|
|
5382
5382
|
button.list-group-item {
|
|
5383
|
-
color: #
|
|
5383
|
+
color: #0938e1;
|
|
5384
5384
|
}
|
|
5385
5385
|
a.list-group-item .list-group-item-heading,
|
|
5386
5386
|
button.list-group-item .list-group-item-heading {
|
|
5387
|
-
color: #
|
|
5387
|
+
color: #0938e1;
|
|
5388
5388
|
}
|
|
5389
5389
|
a.list-group-item:hover,
|
|
5390
5390
|
button.list-group-item:hover,
|
|
5391
5391
|
a.list-group-item:focus,
|
|
5392
5392
|
button.list-group-item:focus {
|
|
5393
|
-
color: #
|
|
5393
|
+
color: #0938e1;
|
|
5394
5394
|
text-decoration: none;
|
|
5395
|
-
background-color:
|
|
5395
|
+
background-color: #eaf2f9;
|
|
5396
5396
|
}
|
|
5397
5397
|
button.list-group-item {
|
|
5398
5398
|
width: 100%;
|
|
5399
5399
|
text-align: left;
|
|
5400
5400
|
}
|
|
5401
5401
|
.list-group-item-success {
|
|
5402
|
-
color: #
|
|
5403
|
-
background-color: #
|
|
5402
|
+
color: #169f32;
|
|
5403
|
+
background-color: #dff0d8;
|
|
5404
5404
|
}
|
|
5405
5405
|
a.list-group-item-success,
|
|
5406
5406
|
button.list-group-item-success {
|
|
5407
|
-
color: #
|
|
5407
|
+
color: #169f32;
|
|
5408
5408
|
}
|
|
5409
5409
|
a.list-group-item-success .list-group-item-heading,
|
|
5410
5410
|
button.list-group-item-success .list-group-item-heading {
|
|
@@ -5414,8 +5414,8 @@ a.list-group-item-success:hover,
|
|
|
5414
5414
|
button.list-group-item-success:hover,
|
|
5415
5415
|
a.list-group-item-success:focus,
|
|
5416
5416
|
button.list-group-item-success:focus {
|
|
5417
|
-
color: #
|
|
5418
|
-
background-color: #
|
|
5417
|
+
color: #169f32;
|
|
5418
|
+
background-color: #d0e9c6;
|
|
5419
5419
|
}
|
|
5420
5420
|
a.list-group-item-success.active,
|
|
5421
5421
|
button.list-group-item-success.active,
|
|
@@ -5424,16 +5424,16 @@ button.list-group-item-success.active:hover,
|
|
|
5424
5424
|
a.list-group-item-success.active:focus,
|
|
5425
5425
|
button.list-group-item-success.active:focus {
|
|
5426
5426
|
color: #fff;
|
|
5427
|
-
background-color: #
|
|
5428
|
-
border-color: #
|
|
5427
|
+
background-color: #169f32;
|
|
5428
|
+
border-color: #169f32;
|
|
5429
5429
|
}
|
|
5430
5430
|
.list-group-item-info {
|
|
5431
|
-
color: #
|
|
5432
|
-
background-color: #
|
|
5431
|
+
color: #0938e1;
|
|
5432
|
+
background-color: #eaf2f9;
|
|
5433
5433
|
}
|
|
5434
5434
|
a.list-group-item-info,
|
|
5435
5435
|
button.list-group-item-info {
|
|
5436
|
-
color: #
|
|
5436
|
+
color: #0938e1;
|
|
5437
5437
|
}
|
|
5438
5438
|
a.list-group-item-info .list-group-item-heading,
|
|
5439
5439
|
button.list-group-item-info .list-group-item-heading {
|
|
@@ -5443,8 +5443,8 @@ a.list-group-item-info:hover,
|
|
|
5443
5443
|
button.list-group-item-info:hover,
|
|
5444
5444
|
a.list-group-item-info:focus,
|
|
5445
5445
|
button.list-group-item-info:focus {
|
|
5446
|
-
color: #
|
|
5447
|
-
background-color: #
|
|
5446
|
+
color: #0938e1;
|
|
5447
|
+
background-color: #d6e6f3;
|
|
5448
5448
|
}
|
|
5449
5449
|
a.list-group-item-info.active,
|
|
5450
5450
|
button.list-group-item-info.active,
|
|
@@ -5453,16 +5453,16 @@ button.list-group-item-info.active:hover,
|
|
|
5453
5453
|
a.list-group-item-info.active:focus,
|
|
5454
5454
|
button.list-group-item-info.active:focus {
|
|
5455
5455
|
color: #fff;
|
|
5456
|
-
background-color: #
|
|
5457
|
-
border-color: #
|
|
5456
|
+
background-color: #0938e1;
|
|
5457
|
+
border-color: #0938e1;
|
|
5458
5458
|
}
|
|
5459
5459
|
.list-group-item-warning {
|
|
5460
|
-
color: #
|
|
5461
|
-
background-color: #
|
|
5460
|
+
color: #ff8000;
|
|
5461
|
+
background-color: #fef7f0;
|
|
5462
5462
|
}
|
|
5463
5463
|
a.list-group-item-warning,
|
|
5464
5464
|
button.list-group-item-warning {
|
|
5465
|
-
color: #
|
|
5465
|
+
color: #ff8000;
|
|
5466
5466
|
}
|
|
5467
5467
|
a.list-group-item-warning .list-group-item-heading,
|
|
5468
5468
|
button.list-group-item-warning .list-group-item-heading {
|
|
@@ -5472,8 +5472,8 @@ a.list-group-item-warning:hover,
|
|
|
5472
5472
|
button.list-group-item-warning:hover,
|
|
5473
5473
|
a.list-group-item-warning:focus,
|
|
5474
5474
|
button.list-group-item-warning:focus {
|
|
5475
|
-
color: #
|
|
5476
|
-
background-color: #
|
|
5475
|
+
color: #ff8000;
|
|
5476
|
+
background-color: #fcead8;
|
|
5477
5477
|
}
|
|
5478
5478
|
a.list-group-item-warning.active,
|
|
5479
5479
|
button.list-group-item-warning.active,
|
|
@@ -5482,12 +5482,12 @@ button.list-group-item-warning.active:hover,
|
|
|
5482
5482
|
a.list-group-item-warning.active:focus,
|
|
5483
5483
|
button.list-group-item-warning.active:focus {
|
|
5484
5484
|
color: #fff;
|
|
5485
|
-
background-color: #
|
|
5486
|
-
border-color: #
|
|
5485
|
+
background-color: #ff8000;
|
|
5486
|
+
border-color: #ff8000;
|
|
5487
5487
|
}
|
|
5488
5488
|
.list-group-item-danger {
|
|
5489
5489
|
color: #e01f1f;
|
|
5490
|
-
background-color: #
|
|
5490
|
+
background-color: #fce8e9;
|
|
5491
5491
|
}
|
|
5492
5492
|
a.list-group-item-danger,
|
|
5493
5493
|
button.list-group-item-danger {
|
|
@@ -5502,7 +5502,7 @@ button.list-group-item-danger:hover,
|
|
|
5502
5502
|
a.list-group-item-danger:focus,
|
|
5503
5503
|
button.list-group-item-danger:focus {
|
|
5504
5504
|
color: #e01f1f;
|
|
5505
|
-
background-color: #
|
|
5505
|
+
background-color: #f9d1d3;
|
|
5506
5506
|
}
|
|
5507
5507
|
a.list-group-item-danger.active,
|
|
5508
5508
|
button.list-group-item-danger.active,
|
|
@@ -5558,7 +5558,7 @@ button.list-group-item-danger.active:focus {
|
|
|
5558
5558
|
.panel-footer {
|
|
5559
5559
|
padding: 10px;
|
|
5560
5560
|
background-color: #ffffff;
|
|
5561
|
-
border-top: 1px solid #
|
|
5561
|
+
border-top: 1px solid #d2d2d2;
|
|
5562
5562
|
border-bottom-right-radius: 9px;
|
|
5563
5563
|
border-bottom-left-radius: 9px;
|
|
5564
5564
|
}
|
|
@@ -5672,7 +5672,7 @@ button.list-group-item-danger.active:focus {
|
|
|
5672
5672
|
.panel > .panel-body + .table-responsive,
|
|
5673
5673
|
.panel > .table + .panel-body,
|
|
5674
5674
|
.panel > .table-responsive + .panel-body {
|
|
5675
|
-
border-top: 1px solid #
|
|
5675
|
+
border-top: 1px solid #aaaaaa;
|
|
5676
5676
|
}
|
|
5677
5677
|
.panel > .table > tbody:first-child > tr:first-child th,
|
|
5678
5678
|
.panel > .table > tbody:first-child > tr:first-child td {
|
|
@@ -5749,31 +5749,31 @@ button.list-group-item-danger.active:focus {
|
|
|
5749
5749
|
}
|
|
5750
5750
|
.panel-group .panel-heading + .panel-collapse > .panel-body,
|
|
5751
5751
|
.panel-group .panel-heading + .panel-collapse > .list-group {
|
|
5752
|
-
border-top: 1px solid #
|
|
5752
|
+
border-top: 1px solid #d2d2d2;
|
|
5753
5753
|
}
|
|
5754
5754
|
.panel-group .panel-footer {
|
|
5755
5755
|
border-top: 0;
|
|
5756
5756
|
}
|
|
5757
5757
|
.panel-group .panel-footer + .panel-collapse .panel-body {
|
|
5758
|
-
border-bottom: 1px solid #
|
|
5758
|
+
border-bottom: 1px solid #d2d2d2;
|
|
5759
5759
|
}
|
|
5760
5760
|
.panel-default {
|
|
5761
|
-
border-color: #
|
|
5761
|
+
border-color: #d2d2d2;
|
|
5762
5762
|
}
|
|
5763
5763
|
.panel-default > .panel-heading {
|
|
5764
5764
|
color: #1a1a1a;
|
|
5765
5765
|
background-color: #f4f4f4;
|
|
5766
|
-
border-color: #
|
|
5766
|
+
border-color: #d2d2d2;
|
|
5767
5767
|
}
|
|
5768
5768
|
.panel-default > .panel-heading + .panel-collapse > .panel-body {
|
|
5769
|
-
border-top-color: #
|
|
5769
|
+
border-top-color: #d2d2d2;
|
|
5770
5770
|
}
|
|
5771
5771
|
.panel-default > .panel-heading .badge {
|
|
5772
5772
|
color: #f4f4f4;
|
|
5773
5773
|
background-color: #1a1a1a;
|
|
5774
5774
|
}
|
|
5775
5775
|
.panel-default > .panel-footer + .panel-collapse > .panel-body {
|
|
5776
|
-
border-bottom-color: #
|
|
5776
|
+
border-bottom-color: #d2d2d2;
|
|
5777
5777
|
}
|
|
5778
5778
|
.panel-primary {
|
|
5779
5779
|
border-color: #007dff;
|
|
@@ -5794,76 +5794,76 @@ button.list-group-item-danger.active:focus {
|
|
|
5794
5794
|
border-bottom-color: #007dff;
|
|
5795
5795
|
}
|
|
5796
5796
|
.panel-success {
|
|
5797
|
-
border-color: #
|
|
5797
|
+
border-color: #81c5a7;
|
|
5798
5798
|
}
|
|
5799
5799
|
.panel-success > .panel-heading {
|
|
5800
|
-
color: #
|
|
5801
|
-
background-color: #
|
|
5802
|
-
border-color: #
|
|
5800
|
+
color: #169f32;
|
|
5801
|
+
background-color: #dff0d8;
|
|
5802
|
+
border-color: #81c5a7;
|
|
5803
5803
|
}
|
|
5804
5804
|
.panel-success > .panel-heading + .panel-collapse > .panel-body {
|
|
5805
|
-
border-top-color: #
|
|
5805
|
+
border-top-color: #81c5a7;
|
|
5806
5806
|
}
|
|
5807
5807
|
.panel-success > .panel-heading .badge {
|
|
5808
|
-
color: #
|
|
5809
|
-
background-color: #
|
|
5808
|
+
color: #dff0d8;
|
|
5809
|
+
background-color: #169f32;
|
|
5810
5810
|
}
|
|
5811
5811
|
.panel-success > .panel-footer + .panel-collapse > .panel-body {
|
|
5812
|
-
border-bottom-color: #
|
|
5812
|
+
border-bottom-color: #81c5a7;
|
|
5813
5813
|
}
|
|
5814
5814
|
.panel-info {
|
|
5815
|
-
border-color: #
|
|
5815
|
+
border-color: #007dff;
|
|
5816
5816
|
}
|
|
5817
5817
|
.panel-info > .panel-heading {
|
|
5818
|
-
color: #
|
|
5819
|
-
background-color: #
|
|
5820
|
-
border-color: #
|
|
5818
|
+
color: #0938e1;
|
|
5819
|
+
background-color: #eaf2f9;
|
|
5820
|
+
border-color: #007dff;
|
|
5821
5821
|
}
|
|
5822
5822
|
.panel-info > .panel-heading + .panel-collapse > .panel-body {
|
|
5823
|
-
border-top-color: #
|
|
5823
|
+
border-top-color: #007dff;
|
|
5824
5824
|
}
|
|
5825
5825
|
.panel-info > .panel-heading .badge {
|
|
5826
|
-
color: #
|
|
5827
|
-
background-color: #
|
|
5826
|
+
color: #eaf2f9;
|
|
5827
|
+
background-color: #0938e1;
|
|
5828
5828
|
}
|
|
5829
5829
|
.panel-info > .panel-footer + .panel-collapse > .panel-body {
|
|
5830
|
-
border-bottom-color: #
|
|
5830
|
+
border-bottom-color: #007dff;
|
|
5831
5831
|
}
|
|
5832
5832
|
.panel-warning {
|
|
5833
|
-
border-color: #
|
|
5833
|
+
border-color: #f7924f;
|
|
5834
5834
|
}
|
|
5835
5835
|
.panel-warning > .panel-heading {
|
|
5836
|
-
color: #
|
|
5837
|
-
background-color: #
|
|
5838
|
-
border-color: #
|
|
5836
|
+
color: #ff8000;
|
|
5837
|
+
background-color: #fef7f0;
|
|
5838
|
+
border-color: #f7924f;
|
|
5839
5839
|
}
|
|
5840
5840
|
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
|
|
5841
|
-
border-top-color: #
|
|
5841
|
+
border-top-color: #f7924f;
|
|
5842
5842
|
}
|
|
5843
5843
|
.panel-warning > .panel-heading .badge {
|
|
5844
|
-
color: #
|
|
5845
|
-
background-color: #
|
|
5844
|
+
color: #fef7f0;
|
|
5845
|
+
background-color: #ff8000;
|
|
5846
5846
|
}
|
|
5847
5847
|
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
|
|
5848
|
-
border-bottom-color: #
|
|
5848
|
+
border-bottom-color: #f7924f;
|
|
5849
5849
|
}
|
|
5850
5850
|
.panel-danger {
|
|
5851
|
-
border-color: #
|
|
5851
|
+
border-color: #f07162;
|
|
5852
5852
|
}
|
|
5853
5853
|
.panel-danger > .panel-heading {
|
|
5854
5854
|
color: #e01f1f;
|
|
5855
|
-
background-color: #
|
|
5856
|
-
border-color: #
|
|
5855
|
+
background-color: #fce8e9;
|
|
5856
|
+
border-color: #f07162;
|
|
5857
5857
|
}
|
|
5858
5858
|
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
|
|
5859
|
-
border-top-color: #
|
|
5859
|
+
border-top-color: #f07162;
|
|
5860
5860
|
}
|
|
5861
5861
|
.panel-danger > .panel-heading .badge {
|
|
5862
|
-
color: #
|
|
5862
|
+
color: #fce8e9;
|
|
5863
5863
|
background-color: #e01f1f;
|
|
5864
5864
|
}
|
|
5865
5865
|
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
|
|
5866
|
-
border-bottom-color: #
|
|
5866
|
+
border-bottom-color: #f07162;
|
|
5867
5867
|
}
|
|
5868
5868
|
.embed-responsive {
|
|
5869
5869
|
position: relative;
|
|
@@ -5896,7 +5896,7 @@ button.list-group-item-danger.active:focus {
|
|
|
5896
5896
|
padding: 19px;
|
|
5897
5897
|
margin-bottom: 20px;
|
|
5898
5898
|
background-color: #f4f4f4;
|
|
5899
|
-
border: 1px solid #
|
|
5899
|
+
border: 1px solid #d2d2d2;
|
|
5900
5900
|
border-radius: 6px;
|
|
5901
5901
|
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
|
|
5902
5902
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
|