nautobot 2.0.4__py3-none-any.whl → 2.1.0b1__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.
Potentially problematic release.
This version of nautobot might be problematic. Click here for more details.
- nautobot/circuits/navigation.py +0 -25
- nautobot/circuits/templates/circuits/circuit_retrieve.html +0 -9
- nautobot/circuits/templates/circuits/providernetwork_retrieve.html +0 -2
- nautobot/circuits/tests/test_api.py +79 -2
- nautobot/circuits/tests/test_filters.py +1 -0
- nautobot/core/api/serializers.py +15 -5
- nautobot/core/api/views.py +18 -19
- nautobot/core/choices.py +1 -1
- nautobot/core/filters.py +12 -4
- nautobot/core/jobs/__init__.py +125 -3
- nautobot/core/management/commands/generate_test_data.py +6 -1
- nautobot/core/middleware.py +12 -4
- nautobot/core/models/fields.py +12 -2
- nautobot/core/settings.py +9 -8
- nautobot/core/tables.py +26 -31
- nautobot/core/templates/base_django.html +2 -2
- nautobot/core/templates/buttons/export.html +57 -30
- nautobot/core/templates/generic/object_list.html +2 -2
- nautobot/core/templates/generic/object_retrieve.html +8 -1
- nautobot/core/templates/home.html +5 -5
- nautobot/core/templates/inc/created_updated.html +2 -2
- nautobot/core/templates/inc/footer.html +2 -2
- nautobot/core/templates/inc/javascript.html +0 -10
- nautobot/core/templates/inc/media.html +2 -0
- nautobot/core/templates/inc/nav_menu.html +66 -68
- nautobot/core/templates/inc/object_details_advanced_panel.html +19 -0
- nautobot/core/templates/nautobot_config.py.j2 +10 -4
- nautobot/core/templates/panel_table.html +1 -1
- nautobot/core/templates/template.css +89 -0
- nautobot/core/templates/utilities/templatetags/table_config_form.html +1 -0
- nautobot/core/templatetags/buttons.py +7 -2
- nautobot/core/templatetags/helpers.py +9 -9
- nautobot/core/testing/views.py +34 -4
- nautobot/core/tests/integration/test_home.py +1 -43
- nautobot/core/tests/integration/test_navbar.py +10 -64
- nautobot/core/tests/integration/test_plugin_home.py +4 -5
- nautobot/core/tests/integration/test_plugin_navbar.py +20 -16
- nautobot/core/tests/integration/test_theme.py +4 -0
- nautobot/core/tests/test_api.py +14 -66
- nautobot/core/tests/test_filters.py +127 -0
- nautobot/core/tests/test_forms.py +4 -4
- nautobot/core/tests/test_graphql.py +165 -2
- nautobot/core/tests/test_jobs.py +112 -0
- nautobot/core/tests/test_openapi.py +6 -0
- nautobot/core/tests/test_utils.py +23 -20
- nautobot/core/tests/test_views.py +11 -85
- nautobot/core/urls.py +6 -1
- nautobot/core/utils/data.py +5 -1
- nautobot/core/utils/filtering.py +6 -4
- nautobot/core/utils/lookup.py +28 -0
- nautobot/core/utils/requests.py +2 -3
- nautobot/core/views/__init__.py +3 -4
- nautobot/core/views/generic.py +15 -11
- nautobot/core/views/mixins.py +9 -8
- nautobot/core/views/renderers.py +5 -0
- nautobot/core/views/utils.py +23 -24
- nautobot/dcim/api/serializers.py +8 -4
- nautobot/dcim/models/device_components.py +1 -0
- nautobot/dcim/models/devices.py +7 -6
- nautobot/dcim/navigation.py +10 -165
- nautobot/dcim/templates/dcim/location.html +1 -1
- nautobot/dcim/tests/features/locations.feature +143 -0
- nautobot/dcim/tests/test_api.py +8 -1
- nautobot/dcim/tests/test_filters.py +11 -3
- nautobot/dcim/views.py +5 -6
- nautobot/extras/admin.py +1 -1
- nautobot/extras/api/serializers.py +33 -0
- nautobot/extras/api/urls.py +6 -0
- nautobot/extras/api/views.py +45 -6
- nautobot/extras/context_managers.py +34 -8
- nautobot/extras/factory.py +28 -2
- nautobot/extras/filters/__init__.py +52 -0
- nautobot/extras/filters/mixins.py +4 -29
- nautobot/extras/forms/forms.py +43 -0
- nautobot/extras/jobs.py +39 -17
- nautobot/extras/migrations/0100_fileproxy_job_result.py +32 -0
- nautobot/extras/migrations/0101_externalintegration.py +61 -0
- nautobot/extras/migrations/0102_set_null_objectchange_contenttype.py +32 -0
- nautobot/extras/models/__init__.py +2 -0
- nautobot/extras/models/change_logging.py +2 -2
- nautobot/extras/models/customfields.py +2 -2
- nautobot/extras/models/models.py +101 -18
- nautobot/extras/models/relationships.py +13 -8
- nautobot/extras/navigation.py +17 -29
- nautobot/extras/signals.py +80 -59
- nautobot/extras/tables.py +28 -2
- nautobot/extras/templates/extras/externalintegration_retrieve.html +37 -0
- nautobot/extras/templates/extras/inc/jobresult.html +24 -0
- nautobot/extras/templates/extras/jobresult.html +24 -0
- nautobot/extras/templatetags/computed_fields.py +6 -13
- nautobot/extras/templatetags/custom_links.py +19 -12
- nautobot/extras/templatetags/job_buttons.py +34 -19
- nautobot/extras/templatetags/plugins.py +1 -1
- nautobot/extras/test_jobs/file_output.py +16 -0
- nautobot/extras/tests/test_api.py +92 -0
- nautobot/extras/tests/test_context_managers.py +94 -4
- nautobot/extras/tests/test_customfields.py +1 -1
- nautobot/extras/tests/test_filters.py +64 -2
- nautobot/extras/tests/test_jobs.py +75 -22
- nautobot/extras/tests/test_models.py +34 -0
- nautobot/extras/tests/test_relationships.py +2 -2
- nautobot/extras/tests/test_views.py +204 -4
- nautobot/extras/tests/test_webhooks.py +61 -25
- nautobot/extras/urls.py +1 -0
- nautobot/extras/views.py +27 -13
- nautobot/extras/webhooks.py +16 -25
- nautobot/ipam/fields.py +5 -0
- nautobot/ipam/forms.py +16 -0
- nautobot/ipam/models.py +13 -2
- nautobot/ipam/navigation.py +2 -59
- nautobot/ipam/tables.py +1 -1
- nautobot/ipam/templates/ipam/ipaddress.html +0 -9
- nautobot/ipam/templates/ipam/prefix.html +0 -9
- nautobot/ipam/tests/features/prefixes.feature +134 -0
- nautobot/ipam/tests/test_filters.py +5 -10
- nautobot/ipam/tests/test_models.py +7 -0
- nautobot/ipam/tests/test_views.py +8 -1
- nautobot/ipam/views.py +99 -58
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap-theme.css +191 -191
- 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 +874 -881
- 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 +138 -99
- nautobot/project-static/css/dark.css +65 -6
- nautobot/project-static/docs/404.html +45 -17
- nautobot/project-static/docs/apps/index.html +45 -17
- nautobot/project-static/docs/apps/nautobot-apps.html +45 -17
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +45 -17
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +45 -17
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +1598 -1458
- nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +229 -152
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +46 -18
- nautobot/project-static/docs/code-reference/nautobot/apps/config.html +45 -17
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +45 -17
- nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +45 -17
- nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +45 -17
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +354 -433
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +67 -39
- nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +45 -17
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +2083 -2234
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +1389 -1247
- nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +45 -17
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +45 -17
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +129 -111
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +3601 -3457
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +45 -17
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +45 -17
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +320 -284
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +3863 -3801
- nautobot/project-static/docs/development/apps/api/configuration-view.html +45 -17
- nautobot/project-static/docs/development/apps/api/database-backend-config.html +45 -17
- nautobot/project-static/docs/development/apps/api/models/django-admin.html +45 -17
- nautobot/project-static/docs/development/apps/api/models/global-search.html +45 -17
- nautobot/project-static/docs/development/apps/api/models/graphql.html +45 -17
- nautobot/project-static/docs/development/apps/api/models/index.html +45 -17
- nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +45 -17
- nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +45 -17
- nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +45 -17
- nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +45 -17
- nautobot/project-static/docs/development/apps/api/platform-features/index.html +45 -17
- nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +45 -17
- nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +45 -17
- nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +45 -17
- nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +45 -17
- nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +45 -17
- nautobot/project-static/docs/development/apps/api/prometheus.html +45 -17
- nautobot/project-static/docs/development/apps/api/setup.html +45 -17
- nautobot/project-static/docs/development/apps/api/testing.html +45 -17
- nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +45 -17
- nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +45 -17
- nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +45 -17
- nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +45 -17
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-detail-views.html +45 -17
- nautobot/project-static/docs/development/apps/api/ui-extensions/tabs.html +45 -17
- nautobot/project-static/docs/development/apps/api/views/base-template.html +45 -17
- nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +45 -17
- nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +45 -17
- nautobot/project-static/docs/development/apps/api/views/help-documentation.html +45 -17
- nautobot/project-static/docs/development/apps/api/views/index.html +45 -17
- nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +45 -17
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +45 -17
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +45 -17
- nautobot/project-static/docs/development/apps/api/views/notes.html +45 -17
- nautobot/project-static/docs/development/apps/api/views/rest-api.html +45 -17
- nautobot/project-static/docs/development/apps/api/views/urls.html +45 -17
- nautobot/project-static/docs/development/apps/api/views/view-overrides.html +45 -17
- nautobot/project-static/docs/development/apps/index.html +45 -17
- nautobot/project-static/docs/development/apps/migration/code-updates.html +45 -17
- nautobot/project-static/docs/development/apps/migration/dependency-updates.html +45 -17
- nautobot/project-static/docs/development/apps/migration/from-v1.html +45 -17
- nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +45 -17
- nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +45 -17
- nautobot/project-static/docs/development/apps/migration/model-updates/global.html +45 -17
- nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +45 -17
- nautobot/project-static/docs/development/apps/porting-from-netbox.html +45 -17
- nautobot/project-static/docs/development/core/application-registry.html +45 -17
- nautobot/project-static/docs/development/core/best-practices.html +45 -17
- nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +45 -17
- nautobot/project-static/docs/development/core/extending-models.html +45 -17
- nautobot/project-static/docs/development/core/generic-views.html +45 -17
- nautobot/project-static/docs/development/core/getting-started.html +45 -17
- nautobot/project-static/docs/development/core/homepage.html +45 -17
- nautobot/project-static/docs/development/core/index.html +45 -17
- nautobot/project-static/docs/development/core/model-features.html +45 -17
- nautobot/project-static/docs/development/core/natural-keys.html +45 -17
- nautobot/project-static/docs/development/core/navigation-menu.html +45 -22
- nautobot/project-static/docs/development/core/react-ui.html +45 -17
- nautobot/project-static/docs/development/core/release-checklist.html +46 -18
- nautobot/project-static/docs/development/core/role-internals.html +45 -17
- nautobot/project-static/docs/development/core/style-guide.html +45 -17
- nautobot/project-static/docs/development/core/templates.html +45 -17
- nautobot/project-static/docs/development/core/testing.html +45 -17
- nautobot/project-static/docs/development/core/user-preferences.html +45 -17
- nautobot/project-static/docs/development/index.html +45 -17
- nautobot/project-static/docs/development/jobs/index.html +281 -235
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +45 -17
- nautobot/project-static/docs/index.html +45 -17
- nautobot/project-static/docs/media/nautobot_application_stack_low_level.png +0 -0
- nautobot/project-static/docs/media/nautobot_application_stack_low_level.txt +1 -0
- nautobot/project-static/docs/objects.inv +0 -0
- nautobot/project-static/docs/release-notes/index.html +48 -20
- nautobot/project-static/docs/release-notes/version-1.0.html +45 -17
- nautobot/project-static/docs/release-notes/version-1.1.html +45 -17
- nautobot/project-static/docs/release-notes/version-1.2.html +45 -17
- nautobot/project-static/docs/release-notes/version-1.3.html +45 -17
- nautobot/project-static/docs/release-notes/version-1.4.html +45 -17
- nautobot/project-static/docs/release-notes/version-1.5.html +45 -17
- nautobot/project-static/docs/release-notes/version-1.6.html +46 -18
- nautobot/project-static/docs/release-notes/version-2.0.html +372 -199
- nautobot/project-static/docs/release-notes/version-2.1.html +5724 -0
- nautobot/project-static/docs/requirements.txt +1 -1
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +247 -237
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +45 -17
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +45 -17
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +45 -17
- nautobot/project-static/docs/user-guide/administration/configuration/index.html +45 -17
- nautobot/project-static/docs/user-guide/administration/configuration/node-configuration.html +45 -17
- nautobot/project-static/docs/user-guide/administration/configuration/optional-settings.html +110 -44
- nautobot/project-static/docs/user-guide/administration/configuration/required-settings.html +45 -17
- nautobot/project-static/docs/user-guide/administration/guides/caching.html +48 -20
- nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +45 -17
- nautobot/project-static/docs/user-guide/administration/guides/healthcheck.html +45 -17
- nautobot/project-static/docs/user-guide/administration/guides/permissions.html +45 -17
- nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +45 -17
- nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +45 -17
- nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +49 -20
- nautobot/project-static/docs/user-guide/administration/installation/app-install.html +45 -17
- nautobot/project-static/docs/user-guide/administration/installation/docker.html +45 -17
- nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +45 -17
- nautobot/project-static/docs/user-guide/administration/installation/http-server.html +45 -17
- nautobot/project-static/docs/user-guide/administration/installation/index.html +45 -17
- nautobot/project-static/docs/user-guide/administration/installation/install_system.html +45 -17
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +45 -17
- nautobot/project-static/docs/user-guide/administration/installation/selinux-troubleshooting.html +45 -17
- nautobot/project-static/docs/user-guide/administration/installation/services.html +45 -17
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +45 -17
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +45 -17
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +45 -17
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +45 -17
- nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +45 -17
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +45 -17
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +45 -17
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +45 -17
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +45 -17
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +45 -17
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +45 -17
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +45 -17
- nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +45 -17
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +45 -17
- nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +45 -17
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +45 -17
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +45 -17
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +45 -17
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +45 -17
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +45 -17
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +45 -17
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +45 -17
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +45 -17
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +45 -17
- nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +45 -17
- nautobot/project-static/docs/user-guide/feature-guides/graphql.html +45 -17
- nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +45 -17
- nautobot/project-static/docs/user-guide/feature-guides/relationships.html +45 -17
- nautobot/project-static/docs/user-guide/index.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +111 -17
- nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +48 -20
- nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +5359 -0
- nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +48 -20
- nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/note.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +114 -45
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/role.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/secret.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/status.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/tag.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +45 -17
- nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +45 -17
- nautobot/project-static/fonts/UFL.txt +96 -0
- nautobot/project-static/fonts/Ubuntu-Bold.woff2 +0 -0
- nautobot/project-static/fonts/Ubuntu-BoldItalic.woff2 +0 -0
- nautobot/project-static/fonts/Ubuntu-Italic.woff2 +0 -0
- nautobot/project-static/fonts/Ubuntu-Medium.woff2 +0 -0
- nautobot/project-static/fonts/Ubuntu-MediumItalic.woff2 +0 -0
- nautobot/project-static/fonts/Ubuntu-Regular.woff2 +0 -0
- nautobot/project-static/fonts/UbuntuMono-Bold.woff2 +0 -0
- nautobot/project-static/fonts/UbuntuMono-BoldItalic.woff2 +0 -0
- nautobot/project-static/fonts/UbuntuMono-Italic.woff2 +0 -0
- nautobot/project-static/fonts/UbuntuMono-Regular.woff2 +0 -0
- nautobot/project-static/img/dark-theme.png +0 -0
- nautobot/project-static/img/light-theme.png +0 -0
- nautobot/project-static/img/nautobot_chevron.svg +5 -0
- nautobot/project-static/img/nautobot_chevron_header.svg +5 -0
- nautobot/project-static/img/system-theme.png +0 -0
- nautobot/tenancy/navigation.py +0 -13
- nautobot/ui/package-lock.json +2 -2
- nautobot/ui/package.json +1 -1
- nautobot/users/admin.py +44 -0
- nautobot/users/migrations/0007_alter_objectpermission_object_types.py +33 -0
- nautobot/users/models.py +3 -2
- nautobot/virtualization/navigation.py +1 -33
- nautobot/virtualization/tests/test_api.py +1 -1
- nautobot/virtualization/tests/test_filters.py +1 -1
- {nautobot-2.0.4.dist-info → nautobot-2.1.0b1.dist-info}/METADATA +2 -2
- {nautobot-2.0.4.dist-info → nautobot-2.1.0b1.dist-info}/RECORD +405 -786
- CHANGELOG.md +0 -3
- CONTRIBUTING.md +0 -3
- NOTICE +0 -8
- nautobot/docs/apps/index.md +0 -22
- nautobot/docs/apps/nautobot-apps.md +0 -10
- nautobot/docs/assets/app-icons/icon-ChatOps.png +0 -0
- nautobot/docs/assets/app-icons/icon-DataValidationEngine.png +0 -0
- nautobot/docs/assets/app-icons/icon-DeviceLifecycle.png +0 -0
- nautobot/docs/assets/app-icons/icon-DeviceOnboarding.png +0 -0
- nautobot/docs/assets/app-icons/icon-FirewallModels.png +0 -0
- nautobot/docs/assets/app-icons/icon-GoldenConfiguration.png +0 -0
- nautobot/docs/assets/app-icons/icon-NautobotPluginNornir.png +0 -0
- nautobot/docs/assets/app-icons/icon-SSoT.png +0 -0
- nautobot/docs/assets/extra.css +0 -139
- nautobot/docs/assets/favicon.ico +0 -0
- nautobot/docs/assets/nautobot_logo.png +0 -0
- nautobot/docs/assets/nautobot_logo.svg +0 -131
- nautobot/docs/assets/networktocode_bw.png +0 -0
- nautobot/docs/assets/overrides/partials/copyright.html +0 -20
- nautobot/docs/development/apps/api/configuration-view.md +0 -35
- nautobot/docs/development/apps/api/database-backend-config.md +0 -26
- nautobot/docs/development/apps/api/models/django-admin.md +0 -20
- nautobot/docs/development/apps/api/models/global-search.md +0 -11
- nautobot/docs/development/apps/api/models/graphql.md +0 -97
- nautobot/docs/development/apps/api/models/index.md +0 -81
- nautobot/docs/development/apps/api/nautobot-app-config.md +0 -84
- nautobot/docs/development/apps/api/platform-features/custom-validators.md +0 -30
- nautobot/docs/development/apps/api/platform-features/filter-extensions.md +0 -49
- nautobot/docs/development/apps/api/platform-features/git-repository-content.md +0 -62
- nautobot/docs/development/apps/api/platform-features/index.md +0 -1
- nautobot/docs/development/apps/api/platform-features/jinja2-filters.md +0 -28
- nautobot/docs/development/apps/api/platform-features/jobs.md +0 -29
- nautobot/docs/development/apps/api/platform-features/populating-extensibility-features.md +0 -58
- nautobot/docs/development/apps/api/platform-features/secrets-providers.md +0 -64
- nautobot/docs/development/apps/api/platform-features/uniquely-identify-objects.md +0 -63
- nautobot/docs/development/apps/api/prometheus.md +0 -25
- nautobot/docs/development/apps/api/setup.md +0 -132
- nautobot/docs/development/apps/api/testing.md +0 -55
- nautobot/docs/development/apps/api/ui-extensions/banners.md +0 -26
- nautobot/docs/development/apps/api/ui-extensions/home-page.md +0 -9
- nautobot/docs/development/apps/api/ui-extensions/index.md +0 -1
- nautobot/docs/development/apps/api/ui-extensions/navigation.md +0 -15
- nautobot/docs/development/apps/api/ui-extensions/object-detail-views.md +0 -74
- nautobot/docs/development/apps/api/ui-extensions/tabs.md +0 -52
- nautobot/docs/development/apps/api/views/base-template.md +0 -38
- nautobot/docs/development/apps/api/views/core-view-overrides.md +0 -26
- nautobot/docs/development/apps/api/views/django-generic-views.md +0 -23
- nautobot/docs/development/apps/api/views/help-documentation.md +0 -16
- nautobot/docs/development/apps/api/views/index.md +0 -3
- nautobot/docs/development/apps/api/views/nautobot-generic-views.md +0 -35
- nautobot/docs/development/apps/api/views/nautobotuiviewset.md +0 -147
- nautobot/docs/development/apps/api/views/nautobotuiviewsetrouter.md +0 -41
- nautobot/docs/development/apps/api/views/notes.md +0 -25
- nautobot/docs/development/apps/api/views/rest-api.md +0 -64
- nautobot/docs/development/apps/api/views/urls.md +0 -26
- nautobot/docs/development/apps/api/views/view-overrides.md +0 -50
- nautobot/docs/development/apps/index.md +0 -75
- nautobot/docs/development/apps/migration/code-updates.md +0 -160
- nautobot/docs/development/apps/migration/dependency-updates.md +0 -13
- nautobot/docs/development/apps/migration/from-v1.md +0 -56
- nautobot/docs/development/apps/migration/model-updates/dcim.md +0 -285
- nautobot/docs/development/apps/migration/model-updates/extras.md +0 -30
- nautobot/docs/development/apps/migration/model-updates/global.md +0 -5
- nautobot/docs/development/apps/migration/model-updates/ipam.md +0 -22
- nautobot/docs/development/apps/porting-from-netbox.md +0 -23
- nautobot/docs/development/core/application-registry.md +0 -216
- nautobot/docs/development/core/best-practices.md +0 -469
- nautobot/docs/development/core/docker-compose-advanced-use-cases.md +0 -228
- nautobot/docs/development/core/extending-models.md +0 -93
- nautobot/docs/development/core/generic-views.md +0 -65
- nautobot/docs/development/core/getting-started.md +0 -859
- nautobot/docs/development/core/homepage.md +0 -63
- nautobot/docs/development/core/index.md +0 -334
- nautobot/docs/development/core/model-features.md +0 -44
- nautobot/docs/development/core/natural-keys.md +0 -121
- nautobot/docs/development/core/navigation-menu.md +0 -142
- nautobot/docs/development/core/react-ui.md +0 -137
- nautobot/docs/development/core/release-checklist.md +0 -312
- nautobot/docs/development/core/role-internals.md +0 -28
- nautobot/docs/development/core/style-guide.md +0 -200
- nautobot/docs/development/core/templates.md +0 -101
- nautobot/docs/development/core/testing.md +0 -238
- nautobot/docs/development/core/user-preferences.md +0 -11
- nautobot/docs/development/index.md +0 -1
- nautobot/docs/development/jobs/index.md +0 -835
- nautobot/docs/development/jobs/migration/from-v1.md +0 -160
- nautobot/docs/generate_code_reference_pages.py +0 -20
- nautobot/docs/img/edge_dev_circuit_relationship.png +0 -0
- nautobot/docs/img/leaf_dev_no_circuit_relationship.png +0 -0
- nautobot/docs/img/relationship_w_json_filter.png +0 -0
- nautobot/docs/index.md +0 -105
- nautobot/docs/media/admin_ui_run_permission.png +0 -0
- nautobot/docs/media/development/homepage_changelog_panel.png +0 -0
- nautobot/docs/media/development/homepage_dcim_panel.png +0 -0
- nautobot/docs/media/development/index_bug_wf.jpg +0 -0
- nautobot/docs/media/development/index_feature_request_wf.jpg +0 -0
- nautobot/docs/media/development/index_release_cadence.drawio +0 -90
- nautobot/docs/media/development/index_release_cadence.jpg +0 -0
- nautobot/docs/media/installation/nautobot_ui_admin.png +0 -0
- nautobot/docs/media/installation/nautobot_ui_guest.png +0 -0
- nautobot/docs/media/models/dcim_cable_trace.png +0 -0
- nautobot/docs/media/models/dcim_cable_trace_circuit.png +0 -0
- nautobot/docs/media/models/dynamicgroup_filtering_01.png +0 -0
- nautobot/docs/media/models/dynamicgroup_workflow_advanced_1_01.png +0 -0
- nautobot/docs/media/models/dynamicgroup_workflow_advanced_1_02.png +0 -0
- nautobot/docs/media/models/dynamicgroup_workflow_advanced_1_03.png +0 -0
- nautobot/docs/media/models/dynamicgroup_workflow_advanced_1_04.png +0 -0
- nautobot/docs/media/models/dynamicgroup_workflow_advanced_1_05.png +0 -0
- nautobot/docs/media/models/dynamicgroup_workflow_advanced_2_01.png +0 -0
- nautobot/docs/media/models/dynamicgroup_workflow_advanced_2_02.png +0 -0
- nautobot/docs/media/models/dynamicgroup_workflow_advanced_2_03.png +0 -0
- nautobot/docs/media/models/dynamicgroup_workflow_advanced_2_04.png +0 -0
- nautobot/docs/media/models/dynamicgroup_workflow_advanced_2_05.png +0 -0
- nautobot/docs/media/models/dynamicgroup_workflow_advanced_2_06.png +0 -0
- nautobot/docs/media/models/dynamicgroup_workflow_advanced_2_07.png +0 -0
- nautobot/docs/media/models/dynamicgroup_workflow_basic_01.png +0 -0
- nautobot/docs/media/models/dynamicgroup_workflow_basic_02.png +0 -0
- nautobot/docs/media/models/dynamicgroup_workflow_basic_03.png +0 -0
- nautobot/docs/media/models/jobbutton_form.png +0 -0
- nautobot/docs/media/models/site_jobbuttons.png +0 -0
- nautobot/docs/media/nautobot_application_stack_high_level.drawio +0 -1
- nautobot/docs/media/nautobot_application_stack_high_level.png +0 -0
- nautobot/docs/media/nautobot_application_stack_low_level.drawio +0 -1
- nautobot/docs/media/nautobot_application_stack_low_level.png +0 -0
- nautobot/docs/media/nautobot_chatops.gif +0 -0
- nautobot/docs/media/nautobot_config_context.gif +0 -0
- nautobot/docs/media/nautobot_golden_config.gif +0 -0
- nautobot/docs/media/nautobot_graphql.gif +0 -0
- nautobot/docs/media/nautobot_mainpage.gif +0 -0
- nautobot/docs/media/nautobot_prefix_hierarchy.gif +0 -0
- nautobot/docs/media/plugins/plugin_admin_config.png +0 -0
- nautobot/docs/media/plugins/plugin_admin_ui.png +0 -0
- nautobot/docs/media/plugins/plugin_rest_api_endpoint.png +0 -0
- nautobot/docs/media/power_distribution.png +0 -0
- nautobot/docs/media/ss_config_contexts.png +0 -0
- nautobot/docs/media/ss_graphiql.png +0 -0
- nautobot/docs/media/ss_main_page.png +0 -0
- nautobot/docs/media/ss_plugin_chatops.png +0 -0
- nautobot/docs/media/ss_plugin_golden_config.png +0 -0
- nautobot/docs/media/ss_prefix_hierarchy.png +0 -0
- nautobot/docs/media/user-guide/administration/guides/s3-django-storage/user-guide-s3-1.png +0 -0
- nautobot/docs/media/user-guide/administration/guides/s3-django-storage/user-guide-s3-2.png +0 -0
- nautobot/docs/media/user-guide/administration/upgrading/from-v1/ipam/tenant-affinity.png +0 -0
- nautobot/docs/nautobot_logo.png +0 -0
- nautobot/docs/nautobot_logo.svg +0 -131
- nautobot/docs/release-notes/index.md +0 -3
- nautobot/docs/release-notes/version-1.0.md +0 -530
- nautobot/docs/release-notes/version-1.1.md +0 -337
- nautobot/docs/release-notes/version-1.2.md +0 -509
- nautobot/docs/release-notes/version-1.3.md +0 -554
- nautobot/docs/release-notes/version-1.4.md +0 -677
- nautobot/docs/release-notes/version-1.5.md +0 -840
- nautobot/docs/release-notes/version-1.6.md +0 -290
- nautobot/docs/release-notes/version-2.0.md +0 -1359
- nautobot/docs/requirements.txt +0 -12
- nautobot/docs/user-guide/administration/configuration/authentication/ldap.md +0 -286
- nautobot/docs/user-guide/administration/configuration/authentication/remote.md +0 -46
- nautobot/docs/user-guide/administration/configuration/authentication/sso.md +0 -528
- nautobot/docs/user-guide/administration/configuration/index.md +0 -190
- nautobot/docs/user-guide/administration/configuration/node-configuration.md +0 -31
- nautobot/docs/user-guide/administration/configuration/optional-settings.md +0 -1302
- nautobot/docs/user-guide/administration/configuration/required-settings.md +0 -244
- nautobot/docs/user-guide/administration/guides/caching.md +0 -108
- nautobot/docs/user-guide/administration/guides/celery-queues.md +0 -42
- nautobot/docs/user-guide/administration/guides/healthcheck.md +0 -11
- nautobot/docs/user-guide/administration/guides/permissions.md +0 -98
- nautobot/docs/user-guide/administration/guides/prometheus-metrics.md +0 -55
- nautobot/docs/user-guide/administration/guides/replicating-nautobot.md +0 -70
- nautobot/docs/user-guide/administration/guides/s3-django-storage.md +0 -145
- nautobot/docs/user-guide/administration/installation/app-install.md +0 -94
- nautobot/docs/user-guide/administration/installation/docker.md +0 -286
- nautobot/docs/user-guide/administration/installation/external-authentication.md +0 -9
- nautobot/docs/user-guide/administration/installation/http-server.md +0 -279
- nautobot/docs/user-guide/administration/installation/index.md +0 -101
- nautobot/docs/user-guide/administration/installation/install_system.md +0 -493
- nautobot/docs/user-guide/administration/installation/nautobot.md +0 -367
- nautobot/docs/user-guide/administration/installation/selinux-troubleshooting.md +0 -194
- nautobot/docs/user-guide/administration/installation/services.md +0 -340
- nautobot/docs/user-guide/administration/migration/migrating-from-netbox.md +0 -336
- nautobot/docs/user-guide/administration/migration/migrating-from-postgresql.md +0 -122
- nautobot/docs/user-guide/administration/tools/nautobot-server.md +0 -858
- nautobot/docs/user-guide/administration/tools/nautobot-shell.md +0 -263
- nautobot/docs/user-guide/administration/upgrading/database-backup.md +0 -11
- nautobot/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.md +0 -55
- nautobot/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.md +0 -73
- nautobot/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.md +0 -211
- nautobot/docs/user-guide/administration/upgrading/from-v1/ipam/index.md +0 -16
- nautobot/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.md +0 -157
- nautobot/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.md +0 -153
- nautobot/docs/user-guide/administration/upgrading/from-v1/tables/v2-api-behavior-changes.yaml +0 -82
- nautobot/docs/user-guide/administration/upgrading/from-v1/tables/v2-api-removed-fields.yaml +0 -175
- nautobot/docs/user-guide/administration/upgrading/from-v1/tables/v2-api-renamed-fields.yaml +0 -124
- nautobot/docs/user-guide/administration/upgrading/from-v1/tables/v2-code-location-changes.yaml +0 -241
- nautobot/docs/user-guide/administration/upgrading/from-v1/tables/v2-code-removals.yaml +0 -57
- nautobot/docs/user-guide/administration/upgrading/from-v1/tables/v2-code-renames.yaml +0 -5
- nautobot/docs/user-guide/administration/upgrading/from-v1/tables/v2-database-behavior-changes.yaml +0 -76
- nautobot/docs/user-guide/administration/upgrading/from-v1/tables/v2-database-removed-fields.yaml +0 -202
- nautobot/docs/user-guide/administration/upgrading/from-v1/tables/v2-database-renamed-fields.yaml +0 -343
- nautobot/docs/user-guide/administration/upgrading/from-v1/tables/v2-filters-corrected-fields.yaml +0 -31
- nautobot/docs/user-guide/administration/upgrading/from-v1/tables/v2-filters-enhanced-fields.yaml +0 -244
- nautobot/docs/user-guide/administration/upgrading/from-v1/tables/v2-filters-removed-fields.yaml +0 -595
- nautobot/docs/user-guide/administration/upgrading/from-v1/tables/v2-filters-renamed-fields.yaml +0 -253
- nautobot/docs/user-guide/administration/upgrading/from-v1/tables/v2-logging-renamed-loggers.yaml +0 -23
- nautobot/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.md +0 -574
- nautobot/docs/user-guide/administration/upgrading/upgrading.md +0 -127
- nautobot/docs/user-guide/core-data-model/circuits/circuit.md +0 -19
- nautobot/docs/user-guide/core-data-model/circuits/circuittermination.md +0 -10
- nautobot/docs/user-guide/core-data-model/circuits/circuittype.md +0 -8
- nautobot/docs/user-guide/core-data-model/circuits/provider.md +0 -5
- nautobot/docs/user-guide/core-data-model/circuits/providernetwork.md +0 -7
- nautobot/docs/user-guide/core-data-model/dcim/cable.md +0 -43
- nautobot/docs/user-guide/core-data-model/dcim/consoleport.md +0 -8
- nautobot/docs/user-guide/core-data-model/dcim/consoleporttemplate.md +0 -6
- nautobot/docs/user-guide/core-data-model/dcim/consoleserverport.md +0 -8
- nautobot/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.md +0 -6
- nautobot/docs/user-guide/core-data-model/dcim/device.md +0 -29
- nautobot/docs/user-guide/core-data-model/dcim/devicebay.md +0 -11
- nautobot/docs/user-guide/core-data-model/dcim/devicebaytemplate.md +0 -6
- nautobot/docs/user-guide/core-data-model/dcim/deviceredundancygroup.md +0 -279
- nautobot/docs/user-guide/core-data-model/dcim/devicetype.md +0 -44
- nautobot/docs/user-guide/core-data-model/dcim/frontport.md +0 -6
- nautobot/docs/user-guide/core-data-model/dcim/frontporttemplate.md +0 -6
- nautobot/docs/user-guide/core-data-model/dcim/interface.md +0 -34
- nautobot/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.md +0 -24
- nautobot/docs/user-guide/core-data-model/dcim/interfacetemplate.md +0 -6
- nautobot/docs/user-guide/core-data-model/dcim/inventoryitem.md +0 -10
- nautobot/docs/user-guide/core-data-model/dcim/location.md +0 -15
- nautobot/docs/user-guide/core-data-model/dcim/locationtype.md +0 -43
- nautobot/docs/user-guide/core-data-model/dcim/manufacturer.md +0 -3
- nautobot/docs/user-guide/core-data-model/dcim/platform.md +0 -19
- nautobot/docs/user-guide/core-data-model/dcim/powerfeed.md +0 -25
- nautobot/docs/user-guide/core-data-model/dcim/poweroutlet.md +0 -14
- nautobot/docs/user-guide/core-data-model/dcim/poweroutlettemplate.md +0 -6
- nautobot/docs/user-guide/core-data-model/dcim/powerpanel.md +0 -12
- nautobot/docs/user-guide/core-data-model/dcim/powerport.md +0 -15
- nautobot/docs/user-guide/core-data-model/dcim/powerporttemplate.md +0 -6
- nautobot/docs/user-guide/core-data-model/dcim/rack.md +0 -41
- nautobot/docs/user-guide/core-data-model/dcim/rackgroup.md +0 -7
- nautobot/docs/user-guide/core-data-model/dcim/rackreservation.md +0 -3
- nautobot/docs/user-guide/core-data-model/dcim/rearport.md +0 -9
- nautobot/docs/user-guide/core-data-model/dcim/rearporttemplate.md +0 -6
- nautobot/docs/user-guide/core-data-model/dcim/virtualchassis.md +0 -8
- nautobot/docs/user-guide/core-data-model/extras/configcontext.md +0 -78
- nautobot/docs/user-guide/core-data-model/extras/configcontextschema.md +0 -73
- nautobot/docs/user-guide/core-data-model/ipam/ipaddress.md +0 -69
- nautobot/docs/user-guide/core-data-model/ipam/media/ipam_namespace_documentation.drawio +0 -1
- nautobot/docs/user-guide/core-data-model/ipam/media/ipam_namespace_documentation.drawio.svg +0 -4
- nautobot/docs/user-guide/core-data-model/ipam/namespace.md +0 -18
- nautobot/docs/user-guide/core-data-model/ipam/prefix.md +0 -65
- nautobot/docs/user-guide/core-data-model/ipam/rir.md +0 -10
- nautobot/docs/user-guide/core-data-model/ipam/routetarget.md +0 -5
- nautobot/docs/user-guide/core-data-model/ipam/service.md +0 -8
- nautobot/docs/user-guide/core-data-model/ipam/vlan.md +0 -17
- nautobot/docs/user-guide/core-data-model/ipam/vlangroup.md +0 -5
- nautobot/docs/user-guide/core-data-model/ipam/vrf.md +0 -15
- nautobot/docs/user-guide/core-data-model/tenancy/tenant.md +0 -20
- nautobot/docs/user-guide/core-data-model/tenancy/tenantgroup.md +0 -5
- nautobot/docs/user-guide/core-data-model/virtualization/cluster.md +0 -5
- nautobot/docs/user-guide/core-data-model/virtualization/clustergroup.md +0 -3
- nautobot/docs/user-guide/core-data-model/virtualization/clustertype.md +0 -3
- nautobot/docs/user-guide/core-data-model/virtualization/virtualmachine.md +0 -17
- nautobot/docs/user-guide/core-data-model/virtualization/vminterface.md +0 -19
- nautobot/docs/user-guide/feature-guides/custom-fields.md +0 -350
- nautobot/docs/user-guide/feature-guides/getting-started/creating-devices.md +0 -130
- nautobot/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.md +0 -113
- nautobot/docs/user-guide/feature-guides/getting-started/index.md +0 -29
- nautobot/docs/user-guide/feature-guides/getting-started/interfaces.md +0 -100
- nautobot/docs/user-guide/feature-guides/getting-started/ipam.md +0 -104
- nautobot/docs/user-guide/feature-guides/getting-started/platforms.md +0 -78
- nautobot/docs/user-guide/feature-guides/getting-started/search-bar.md +0 -40
- nautobot/docs/user-guide/feature-guides/getting-started/tenants.md +0 -40
- nautobot/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.md +0 -87
- nautobot/docs/user-guide/feature-guides/git-data-source.md +0 -307
- nautobot/docs/user-guide/feature-guides/graphql.md +0 -342
- nautobot/docs/user-guide/feature-guides/images/custom-fields/custom_field_choices.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/custom-fields/custom_field_detail_grouped.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/custom-fields/custom_field_detail_label.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/custom-fields/custom_field_edit.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/custom-fields/custom_field_select.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/1-create-location-type.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/10-add-platform.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/11-platforms-page.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/12-add-tenant.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/13-assign-tenant-to-device.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/14-assign-tenant-to-device-2.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/15-create-device-type.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/16-interface-templates.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/17-templated-interfaces.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/18-assign-device-type.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/19-edit-ints-for-lag.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/2-create-manufacturer.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/20-ints-int-lag.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/21-device-type.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/22-create-vlans.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/23-create-vlans-2.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/24-vlan-main-page.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/25-add-vlan-to-interface.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/26-add-vlan-to-interface-2.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/27-add-rir.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/3-create-role.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/30-add-prefix.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/32-add-ip-addr.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/33-assign-address.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/34-assign-address-2.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/35-assign-address-3.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/36-verify-address.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/37-verify-prefix.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/38-verify-prefix2.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/39-address-search.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/4-create-device-type.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/40-addr-main-page.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/41-device-search-results.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/42-address-search-v2.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/43-get-to-device-main-page.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/44-add-platform.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/5-create-device.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/6-create-location.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/7-location-type-page.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/8-location-page.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/git-as-data-source/01-git-data-source.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/git-as-data-source/02-git-data-source.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/git-as-data-source/03-git-data-source.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/git-as-data-source/04-git-data-source.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/git-as-data-source/05-git-data-source.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/git-as-data-source/06-git-data-source.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/git-as-data-source/07-git-data-source.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/git-as-data-source/08-git-data-source.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/git-as-data-source/09-git-data-source.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/git-as-data-source/10-git-data-source.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/git-as-data-source/11-git-data-source.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/git-as-data-source/12-git-data-source.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/git-as-data-source/13-git-data-source.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/git-as-data-source/14-git-data-source.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/git-as-data-source/15-git-data-source.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/git-as-data-source/16-git-data-source.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/git-as-data-source/17-git-data-source.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/git-as-data-source/18-git-data-source.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/graphql/00-graphiql.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/graphql/01-graphiql-explorer.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/graphql/02-graphiql-explorer-device-query.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/graphql/03-graphiql-explorer-device-attributes.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/graphql/04-graphql-query-01.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/graphql/05-graphiql-autocomplete.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/graphql/06-graphql-query-02.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/graphql/07-graphql-query-03.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/graphql/08-graphql-query-04.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/graphql/09-graphql-query-05.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/graphql/10-graphql-swagger.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/graphql/11-graphql-query-06.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/ip-address-merge-tool/ip_merge_button.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/ip-address-merge-tool/merge_button.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/ip-address-merge-tool/merge_view.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/ip-address-merge-tool/no_more_dup_ips.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/ip-address-merge-tool/skip_button.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/ip-address-merge-tool/unselect_ips.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/relationships/01-relationships.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/relationships/02-relationships.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/relationships/03-relationships.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/relationships/04-relationships.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/relationships/05-relationships.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/relationships/06-relationships.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/relationships/07-relationships.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/relationships/08-relationships.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/relationships/09-relationships.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/relationships/10-relationships.png +0 -0
- nautobot/docs/user-guide/feature-guides/images/relationships/11-relationships.png +0 -0
- nautobot/docs/user-guide/feature-guides/ip-address-merge-tool.md +0 -63
- nautobot/docs/user-guide/feature-guides/relationships.md +0 -125
- nautobot/docs/user-guide/index.md +0 -1
- nautobot/docs/user-guide/platform-functionality/change-logging.md +0 -21
- nautobot/docs/user-guide/platform-functionality/computedfield.md +0 -89
- nautobot/docs/user-guide/platform-functionality/customfield.md +0 -123
- nautobot/docs/user-guide/platform-functionality/customlink.md +0 -59
- nautobot/docs/user-guide/platform-functionality/dynamicgroup.md +0 -660
- nautobot/docs/user-guide/platform-functionality/exporttemplate.md +0 -55
- nautobot/docs/user-guide/platform-functionality/gitrepository.md +0 -353
- nautobot/docs/user-guide/platform-functionality/graphql.md +0 -259
- nautobot/docs/user-guide/platform-functionality/graphqlquery.md +0 -28
- nautobot/docs/user-guide/platform-functionality/imageattachment.md +0 -10
- nautobot/docs/user-guide/platform-functionality/jobs/index.md +0 -193
- nautobot/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.md +0 -78
- nautobot/docs/user-guide/platform-functionality/jobs/jobbutton.md +0 -79
- nautobot/docs/user-guide/platform-functionality/jobs/jobhook.md +0 -15
- nautobot/docs/user-guide/platform-functionality/jobs/models.md +0 -65
- nautobot/docs/user-guide/platform-functionality/napalm.md +0 -85
- nautobot/docs/user-guide/platform-functionality/note.md +0 -7
- nautobot/docs/user-guide/platform-functionality/relationship.md +0 -158
- nautobot/docs/user-guide/platform-functionality/rest-api/authentication.md +0 -67
- nautobot/docs/user-guide/platform-functionality/rest-api/filtering.md +0 -142
- nautobot/docs/user-guide/platform-functionality/rest-api/overview.md +0 -1045
- nautobot/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.md +0 -9
- nautobot/docs/user-guide/platform-functionality/role.md +0 -17
- nautobot/docs/user-guide/platform-functionality/secret.md +0 -136
- nautobot/docs/user-guide/platform-functionality/status.md +0 -92
- nautobot/docs/user-guide/platform-functionality/tag.md +0 -62
- nautobot/docs/user-guide/platform-functionality/template-filters.md +0 -306
- nautobot/docs/user-guide/platform-functionality/users/objectpermission.md +0 -56
- nautobot/docs/user-guide/platform-functionality/users/token.md +0 -21
- nautobot/docs/user-guide/platform-functionality/webhook.md +0 -137
- nautobot/project-static/docs/media/nautobot_application_stack_low_level.drawio +0 -1
- nautobot/project-static/docs/media/nautobot_chatops.gif +0 -0
- nautobot/project-static/docs/media/nautobot_config_context.gif +0 -0
- nautobot/project-static/docs/media/nautobot_golden_config.gif +0 -0
- nautobot/project-static/docs/media/nautobot_graphql.gif +0 -0
- nautobot/project-static/docs/media/nautobot_mainpage.gif +0 -0
- nautobot/project-static/docs/media/nautobot_prefix_hierarchy.gif +0 -0
- nautobot-2.0.4.dist-info/LICENSE.txt +0 -177
- /LICENSE.txt → /nautobot-2.1.0b1.dist-info/LICENSE.txt +0 -0
- {nautobot-2.0.4.dist-info → nautobot-2.1.0b1.dist-info}/WHEEL +0 -0
- {nautobot-2.0.4.dist-info → nautobot-2.1.0b1.dist-info}/entry_points.txt +0 -0
|
@@ -1082,11 +1082,11 @@ html {
|
|
|
1082
1082
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
1083
1083
|
}
|
|
1084
1084
|
body {
|
|
1085
|
-
font-family:
|
|
1085
|
+
font-family: Ubuntu, sans-serif;
|
|
1086
1086
|
font-size: 14px;
|
|
1087
|
-
line-height: 1.
|
|
1088
|
-
color: #
|
|
1089
|
-
background-color: #
|
|
1087
|
+
line-height: 1.71428572;
|
|
1088
|
+
color: #1a1a1a;
|
|
1089
|
+
background-color: #ffffff;
|
|
1090
1090
|
}
|
|
1091
1091
|
input,
|
|
1092
1092
|
button,
|
|
@@ -1097,12 +1097,12 @@ textarea {
|
|
|
1097
1097
|
line-height: inherit;
|
|
1098
1098
|
}
|
|
1099
1099
|
a {
|
|
1100
|
-
color: #
|
|
1100
|
+
color: #005EBF;
|
|
1101
1101
|
text-decoration: none;
|
|
1102
1102
|
}
|
|
1103
1103
|
a:hover,
|
|
1104
1104
|
a:focus {
|
|
1105
|
-
color: #
|
|
1105
|
+
color: #005EBF;
|
|
1106
1106
|
text-decoration: underline;
|
|
1107
1107
|
}
|
|
1108
1108
|
a:focus {
|
|
@@ -1125,14 +1125,14 @@ img {
|
|
|
1125
1125
|
height: auto;
|
|
1126
1126
|
}
|
|
1127
1127
|
.img-rounded {
|
|
1128
|
-
border-radius:
|
|
1128
|
+
border-radius: 10px;
|
|
1129
1129
|
}
|
|
1130
1130
|
.img-thumbnail {
|
|
1131
|
-
padding:
|
|
1132
|
-
line-height: 1.
|
|
1133
|
-
background-color: #
|
|
1134
|
-
border: 1px solid #
|
|
1135
|
-
border-radius:
|
|
1131
|
+
padding: 19px;
|
|
1132
|
+
line-height: 1.71428572;
|
|
1133
|
+
background-color: #ffffff;
|
|
1134
|
+
border: 1px solid #d8d8d8;
|
|
1135
|
+
border-radius: 10px;
|
|
1136
1136
|
-webkit-transition: all 0.2s ease-in-out;
|
|
1137
1137
|
-o-transition: all 0.2s ease-in-out;
|
|
1138
1138
|
transition: all 0.2s ease-in-out;
|
|
@@ -1144,10 +1144,10 @@ img {
|
|
|
1144
1144
|
border-radius: 50%;
|
|
1145
1145
|
}
|
|
1146
1146
|
hr {
|
|
1147
|
-
margin-top:
|
|
1148
|
-
margin-bottom:
|
|
1147
|
+
margin-top: 24px;
|
|
1148
|
+
margin-bottom: 24px;
|
|
1149
1149
|
border: 0;
|
|
1150
|
-
border-top: 1px solid #
|
|
1150
|
+
border-top: 1px solid #d8d8d8;
|
|
1151
1151
|
}
|
|
1152
1152
|
.sr-only {
|
|
1153
1153
|
position: absolute;
|
|
@@ -1185,7 +1185,7 @@ h6,
|
|
|
1185
1185
|
.h6 {
|
|
1186
1186
|
font-family: inherit;
|
|
1187
1187
|
font-weight: 500;
|
|
1188
|
-
line-height: 1.
|
|
1188
|
+
line-height: 1.71428572;
|
|
1189
1189
|
color: inherit;
|
|
1190
1190
|
}
|
|
1191
1191
|
h1 small,
|
|
@@ -1214,7 +1214,7 @@ h6 .small,
|
|
|
1214
1214
|
.h6 .small {
|
|
1215
1215
|
font-weight: 400;
|
|
1216
1216
|
line-height: 1;
|
|
1217
|
-
color: #
|
|
1217
|
+
color: #6f6f6f;
|
|
1218
1218
|
}
|
|
1219
1219
|
h1,
|
|
1220
1220
|
.h1,
|
|
@@ -1222,8 +1222,8 @@ h2,
|
|
|
1222
1222
|
.h2,
|
|
1223
1223
|
h3,
|
|
1224
1224
|
.h3 {
|
|
1225
|
-
margin-top:
|
|
1226
|
-
margin-bottom:
|
|
1225
|
+
margin-top: 24px;
|
|
1226
|
+
margin-bottom: 12px;
|
|
1227
1227
|
}
|
|
1228
1228
|
h1 small,
|
|
1229
1229
|
.h1 small,
|
|
@@ -1245,8 +1245,8 @@ h5,
|
|
|
1245
1245
|
.h5,
|
|
1246
1246
|
h6,
|
|
1247
1247
|
.h6 {
|
|
1248
|
-
margin-top:
|
|
1249
|
-
margin-bottom:
|
|
1248
|
+
margin-top: 12px;
|
|
1249
|
+
margin-bottom: 12px;
|
|
1250
1250
|
}
|
|
1251
1251
|
h4 small,
|
|
1252
1252
|
.h4 small,
|
|
@@ -1264,15 +1264,15 @@ h6 .small,
|
|
|
1264
1264
|
}
|
|
1265
1265
|
h1,
|
|
1266
1266
|
.h1 {
|
|
1267
|
-
font-size:
|
|
1267
|
+
font-size: 24px;
|
|
1268
1268
|
}
|
|
1269
1269
|
h2,
|
|
1270
1270
|
.h2 {
|
|
1271
|
-
font-size:
|
|
1271
|
+
font-size: 18px;
|
|
1272
1272
|
}
|
|
1273
1273
|
h3,
|
|
1274
1274
|
.h3 {
|
|
1275
|
-
font-size:
|
|
1275
|
+
font-size: 14px;
|
|
1276
1276
|
}
|
|
1277
1277
|
h4,
|
|
1278
1278
|
.h4 {
|
|
@@ -1287,10 +1287,10 @@ h6,
|
|
|
1287
1287
|
font-size: 12px;
|
|
1288
1288
|
}
|
|
1289
1289
|
p {
|
|
1290
|
-
margin: 0 0
|
|
1290
|
+
margin: 0 0 12px;
|
|
1291
1291
|
}
|
|
1292
1292
|
.lead {
|
|
1293
|
-
margin-bottom:
|
|
1293
|
+
margin-bottom: 24px;
|
|
1294
1294
|
font-size: 16px;
|
|
1295
1295
|
font-weight: 300;
|
|
1296
1296
|
line-height: 1.4;
|
|
@@ -1307,7 +1307,7 @@ small,
|
|
|
1307
1307
|
mark,
|
|
1308
1308
|
.mark {
|
|
1309
1309
|
padding: 0.2em;
|
|
1310
|
-
background-color: #
|
|
1310
|
+
background-color: #fcf2e6;
|
|
1311
1311
|
}
|
|
1312
1312
|
.text-left {
|
|
1313
1313
|
text-align: left;
|
|
@@ -1334,88 +1334,88 @@ mark,
|
|
|
1334
1334
|
text-transform: capitalize;
|
|
1335
1335
|
}
|
|
1336
1336
|
.text-muted {
|
|
1337
|
-
color: #
|
|
1337
|
+
color: #6f6f6f;
|
|
1338
1338
|
}
|
|
1339
1339
|
.text-primary {
|
|
1340
|
-
color: #
|
|
1340
|
+
color: #007dff;
|
|
1341
1341
|
}
|
|
1342
1342
|
a.text-primary:hover,
|
|
1343
1343
|
a.text-primary:focus {
|
|
1344
|
-
color: #
|
|
1344
|
+
color: #0064cc;
|
|
1345
1345
|
}
|
|
1346
1346
|
.text-success {
|
|
1347
|
-
color: #
|
|
1347
|
+
color: #098a15;
|
|
1348
1348
|
}
|
|
1349
1349
|
a.text-success:hover,
|
|
1350
1350
|
a.text-success:focus {
|
|
1351
|
-
color: #
|
|
1351
|
+
color: #065a0e;
|
|
1352
1352
|
}
|
|
1353
1353
|
.text-info {
|
|
1354
|
-
color: #
|
|
1354
|
+
color: #007dff;
|
|
1355
1355
|
}
|
|
1356
1356
|
a.text-info:hover,
|
|
1357
1357
|
a.text-info:focus {
|
|
1358
|
-
color: #
|
|
1358
|
+
color: #0064cc;
|
|
1359
1359
|
}
|
|
1360
1360
|
.text-warning {
|
|
1361
|
-
color: #
|
|
1361
|
+
color: #e07807;
|
|
1362
1362
|
}
|
|
1363
1363
|
a.text-warning:hover,
|
|
1364
1364
|
a.text-warning:focus {
|
|
1365
|
-
color: #
|
|
1365
|
+
color: #af5e05;
|
|
1366
1366
|
}
|
|
1367
1367
|
.text-danger {
|
|
1368
|
-
color: #
|
|
1368
|
+
color: #e01f1f;
|
|
1369
1369
|
}
|
|
1370
1370
|
a.text-danger:hover,
|
|
1371
1371
|
a.text-danger:focus {
|
|
1372
|
-
color: #
|
|
1372
|
+
color: #b31919;
|
|
1373
1373
|
}
|
|
1374
1374
|
.bg-primary {
|
|
1375
1375
|
color: #fff;
|
|
1376
|
-
background-color: #
|
|
1376
|
+
background-color: #007dff;
|
|
1377
1377
|
}
|
|
1378
1378
|
a.bg-primary:hover,
|
|
1379
1379
|
a.bg-primary:focus {
|
|
1380
|
-
background-color: #
|
|
1380
|
+
background-color: #0064cc;
|
|
1381
1381
|
}
|
|
1382
1382
|
.bg-success {
|
|
1383
|
-
background-color: #
|
|
1383
|
+
background-color: #e8f6ea;
|
|
1384
1384
|
}
|
|
1385
1385
|
a.bg-success:hover,
|
|
1386
1386
|
a.bg-success:focus {
|
|
1387
|
-
background-color: #
|
|
1387
|
+
background-color: #c3e8c7;
|
|
1388
1388
|
}
|
|
1389
1389
|
.bg-info {
|
|
1390
|
-
background-color: #
|
|
1390
|
+
background-color: #e6f2ff;
|
|
1391
1391
|
}
|
|
1392
1392
|
a.bg-info:hover,
|
|
1393
1393
|
a.bg-info:focus {
|
|
1394
|
-
background-color: #
|
|
1394
|
+
background-color: #b3d8ff;
|
|
1395
1395
|
}
|
|
1396
1396
|
.bg-warning {
|
|
1397
|
-
background-color: #
|
|
1397
|
+
background-color: #fcf2e6;
|
|
1398
1398
|
}
|
|
1399
1399
|
a.bg-warning:hover,
|
|
1400
1400
|
a.bg-warning:focus {
|
|
1401
|
-
background-color: #
|
|
1401
|
+
background-color: #f6d9b9;
|
|
1402
1402
|
}
|
|
1403
1403
|
.bg-danger {
|
|
1404
|
-
background-color: #
|
|
1404
|
+
background-color: #fce9e9;
|
|
1405
1405
|
}
|
|
1406
1406
|
a.bg-danger:hover,
|
|
1407
1407
|
a.bg-danger:focus {
|
|
1408
|
-
background-color: #
|
|
1408
|
+
background-color: #f6bcbc;
|
|
1409
1409
|
}
|
|
1410
1410
|
.page-header {
|
|
1411
|
-
padding-bottom:
|
|
1412
|
-
margin:
|
|
1413
|
-
border-bottom: 1px solid #
|
|
1411
|
+
padding-bottom: 11px;
|
|
1412
|
+
margin: 48px 0 24px;
|
|
1413
|
+
border-bottom: 1px solid #d8d8d8;
|
|
1414
1414
|
}
|
|
1415
1415
|
ul,
|
|
1416
1416
|
ol {
|
|
1417
1417
|
margin-top: 0;
|
|
1418
|
-
margin-bottom:
|
|
1418
|
+
margin-bottom: 12px;
|
|
1419
1419
|
}
|
|
1420
1420
|
ul ul,
|
|
1421
1421
|
ol ul,
|
|
@@ -1439,11 +1439,11 @@ ol ol {
|
|
|
1439
1439
|
}
|
|
1440
1440
|
dl {
|
|
1441
1441
|
margin-top: 0;
|
|
1442
|
-
margin-bottom:
|
|
1442
|
+
margin-bottom: 24px;
|
|
1443
1443
|
}
|
|
1444
1444
|
dt,
|
|
1445
1445
|
dd {
|
|
1446
|
-
line-height: 1.
|
|
1446
|
+
line-height: 1.71428572;
|
|
1447
1447
|
}
|
|
1448
1448
|
dt {
|
|
1449
1449
|
font-weight: 700;
|
|
@@ -1474,10 +1474,10 @@ abbr[data-original-title] {
|
|
|
1474
1474
|
text-transform: uppercase;
|
|
1475
1475
|
}
|
|
1476
1476
|
blockquote {
|
|
1477
|
-
padding:
|
|
1478
|
-
margin: 0 0
|
|
1479
|
-
font-size:
|
|
1480
|
-
border-left: 5px solid #
|
|
1477
|
+
padding: 12px 24px;
|
|
1478
|
+
margin: 0 0 24px;
|
|
1479
|
+
font-size: 14px;
|
|
1480
|
+
border-left: 5px solid #d8d8d8;
|
|
1481
1481
|
}
|
|
1482
1482
|
blockquote p:last-child,
|
|
1483
1483
|
blockquote ul:last-child,
|
|
@@ -1489,8 +1489,8 @@ blockquote small,
|
|
|
1489
1489
|
blockquote .small {
|
|
1490
1490
|
display: block;
|
|
1491
1491
|
font-size: 80%;
|
|
1492
|
-
line-height: 1.
|
|
1493
|
-
color: #
|
|
1492
|
+
line-height: 1.71428572;
|
|
1493
|
+
color: #6f6f6f;
|
|
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 #d8d8d8;
|
|
1506
1506
|
border-left: 0;
|
|
1507
1507
|
}
|
|
1508
1508
|
.blockquote-reverse footer:before,
|
|
@@ -1522,29 +1522,29 @@ blockquote.pull-right .small:after {
|
|
|
1522
1522
|
content: "\00A0 \2014";
|
|
1523
1523
|
}
|
|
1524
1524
|
address {
|
|
1525
|
-
margin-bottom:
|
|
1525
|
+
margin-bottom: 24px;
|
|
1526
1526
|
font-style: normal;
|
|
1527
|
-
line-height: 1.
|
|
1527
|
+
line-height: 1.71428572;
|
|
1528
1528
|
}
|
|
1529
1529
|
code,
|
|
1530
1530
|
kbd,
|
|
1531
1531
|
pre,
|
|
1532
1532
|
samp {
|
|
1533
|
-
font-family:
|
|
1533
|
+
font-family: "Ubuntu Mono", monospace;
|
|
1534
1534
|
}
|
|
1535
1535
|
code {
|
|
1536
1536
|
padding: 2px 4px;
|
|
1537
1537
|
font-size: 90%;
|
|
1538
|
-
color: #
|
|
1539
|
-
background-color: #
|
|
1540
|
-
border-radius:
|
|
1538
|
+
color: #505d68;
|
|
1539
|
+
background-color: #f4f4f4;
|
|
1540
|
+
border-radius: 6px;
|
|
1541
1541
|
}
|
|
1542
1542
|
kbd {
|
|
1543
1543
|
padding: 2px 4px;
|
|
1544
1544
|
font-size: 90%;
|
|
1545
|
-
color: #
|
|
1546
|
-
background-color: #
|
|
1547
|
-
border-radius:
|
|
1545
|
+
color: #505d68;
|
|
1546
|
+
background-color: #f4f4f4;
|
|
1547
|
+
border-radius: 4px;
|
|
1548
1548
|
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
|
|
1549
1549
|
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
|
|
1550
1550
|
}
|
|
@@ -1557,16 +1557,16 @@ kbd kbd {
|
|
|
1557
1557
|
}
|
|
1558
1558
|
pre {
|
|
1559
1559
|
display: block;
|
|
1560
|
-
padding:
|
|
1561
|
-
margin: 0 0
|
|
1560
|
+
padding: 11.5px;
|
|
1561
|
+
margin: 0 0 12px;
|
|
1562
1562
|
font-size: 13px;
|
|
1563
|
-
line-height: 1.
|
|
1564
|
-
color: #
|
|
1563
|
+
line-height: 1.71428572;
|
|
1564
|
+
color: #505d68;
|
|
1565
1565
|
word-break: break-all;
|
|
1566
1566
|
word-wrap: break-word;
|
|
1567
|
-
background-color: #
|
|
1568
|
-
border: 1px solid #
|
|
1569
|
-
border-radius:
|
|
1567
|
+
background-color: #f4f4f4;
|
|
1568
|
+
border: 1px solid #d8d8d8;
|
|
1569
|
+
border-radius: 6px;
|
|
1570
1570
|
}
|
|
1571
1571
|
pre code {
|
|
1572
1572
|
padding: 0;
|
|
@@ -1581,35 +1581,35 @@ pre code {
|
|
|
1581
1581
|
overflow-y: scroll;
|
|
1582
1582
|
}
|
|
1583
1583
|
.container {
|
|
1584
|
-
padding-right:
|
|
1585
|
-
padding-left:
|
|
1584
|
+
padding-right: 20px;
|
|
1585
|
+
padding-left: 20px;
|
|
1586
1586
|
margin-right: auto;
|
|
1587
1587
|
margin-left: auto;
|
|
1588
1588
|
}
|
|
1589
1589
|
@media (min-width: 768px) {
|
|
1590
1590
|
.container {
|
|
1591
|
-
width:
|
|
1591
|
+
width: 760px;
|
|
1592
1592
|
}
|
|
1593
1593
|
}
|
|
1594
1594
|
@media (min-width: 992px) {
|
|
1595
1595
|
.container {
|
|
1596
|
-
width:
|
|
1596
|
+
width: 980px;
|
|
1597
1597
|
}
|
|
1598
1598
|
}
|
|
1599
1599
|
@media (min-width: 1200px) {
|
|
1600
1600
|
.container {
|
|
1601
|
-
width:
|
|
1601
|
+
width: 1180px;
|
|
1602
1602
|
}
|
|
1603
1603
|
}
|
|
1604
1604
|
.container-fluid {
|
|
1605
|
-
padding-right:
|
|
1606
|
-
padding-left:
|
|
1605
|
+
padding-right: 20px;
|
|
1606
|
+
padding-left: 20px;
|
|
1607
1607
|
margin-right: auto;
|
|
1608
1608
|
margin-left: auto;
|
|
1609
1609
|
}
|
|
1610
1610
|
.row {
|
|
1611
|
-
margin-right: -
|
|
1612
|
-
margin-left: -
|
|
1611
|
+
margin-right: -20px;
|
|
1612
|
+
margin-left: -20px;
|
|
1613
1613
|
}
|
|
1614
1614
|
.row-no-gutters {
|
|
1615
1615
|
margin-right: 0;
|
|
@@ -1669,8 +1669,8 @@ pre code {
|
|
|
1669
1669
|
.col-lg-12 {
|
|
1670
1670
|
position: relative;
|
|
1671
1671
|
min-height: 1px;
|
|
1672
|
-
padding-right:
|
|
1673
|
-
padding-left:
|
|
1672
|
+
padding-right: 20px;
|
|
1673
|
+
padding-left: 20px;
|
|
1674
1674
|
}
|
|
1675
1675
|
.col-xs-1,
|
|
1676
1676
|
.col-xs-2,
|
|
@@ -2347,7 +2347,7 @@ pre code {
|
|
|
2347
2347
|
}
|
|
2348
2348
|
}
|
|
2349
2349
|
table {
|
|
2350
|
-
background-color:
|
|
2350
|
+
background-color: #ffffff;
|
|
2351
2351
|
}
|
|
2352
2352
|
table col[class*="col-"] {
|
|
2353
2353
|
position: static;
|
|
@@ -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: 7px;
|
|
2365
|
+
padding-bottom: 7px;
|
|
2366
|
+
color: #6f6f6f;
|
|
2367
2367
|
text-align: left;
|
|
2368
2368
|
}
|
|
2369
2369
|
th {
|
|
@@ -2372,7 +2372,7 @@ th {
|
|
|
2372
2372
|
.table {
|
|
2373
2373
|
width: 100%;
|
|
2374
2374
|
max-width: 100%;
|
|
2375
|
-
margin-bottom:
|
|
2375
|
+
margin-bottom: 24px;
|
|
2376
2376
|
}
|
|
2377
2377
|
.table > thead > tr > th,
|
|
2378
2378
|
.table > tbody > tr > 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:
|
|
2384
|
-
line-height: 1.
|
|
2383
|
+
padding: 7px;
|
|
2384
|
+
line-height: 1.71428572;
|
|
2385
2385
|
vertical-align: top;
|
|
2386
|
-
border-top: 1px solid #
|
|
2386
|
+
border-top: 1px solid #d8d8d8;
|
|
2387
2387
|
}
|
|
2388
2388
|
.table > thead > tr > th {
|
|
2389
2389
|
vertical-align: bottom;
|
|
2390
|
-
border-bottom: 2px solid #
|
|
2390
|
+
border-bottom: 2px solid #d8d8d8;
|
|
2391
2391
|
}
|
|
2392
2392
|
.table > caption + thead > tr:first-child > th,
|
|
2393
2393
|
.table > colgroup + thead > tr:first-child > th,
|
|
@@ -2398,10 +2398,10 @@ th {
|
|
|
2398
2398
|
border-top: 0;
|
|
2399
2399
|
}
|
|
2400
2400
|
.table > tbody + tbody {
|
|
2401
|
-
border-top: 2px solid #
|
|
2401
|
+
border-top: 2px solid #d8d8d8;
|
|
2402
2402
|
}
|
|
2403
2403
|
.table .table {
|
|
2404
|
-
background-color: #
|
|
2404
|
+
background-color: #ffffff;
|
|
2405
2405
|
}
|
|
2406
2406
|
.table-condensed > thead > tr > th,
|
|
2407
2407
|
.table-condensed > tbody > tr > th,
|
|
@@ -2409,10 +2409,10 @@ th {
|
|
|
2409
2409
|
.table-condensed > thead > tr > td,
|
|
2410
2410
|
.table-condensed > tbody > tr > td,
|
|
2411
2411
|
.table-condensed > tfoot > tr > td {
|
|
2412
|
-
padding:
|
|
2412
|
+
padding: 4px;
|
|
2413
2413
|
}
|
|
2414
2414
|
.table-bordered {
|
|
2415
|
-
border: 1px solid #
|
|
2415
|
+
border: 1px solid #d8d8d8;
|
|
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 #d8d8d8;
|
|
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: #d8d8d8;
|
|
2431
2431
|
}
|
|
2432
2432
|
.table-hover > tbody > tr:hover {
|
|
2433
|
-
background-color:
|
|
2433
|
+
background-color: rgba(0, 125, 255, 0.1);
|
|
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: rgba(0, 125, 255, 0.1);
|
|
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: rgba(0, 112, 230, 0.1);
|
|
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: #e8f6ea;
|
|
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: #d6efd8;
|
|
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: #e6f2ff;
|
|
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: #cce5ff;
|
|
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: #fcf2e6;
|
|
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: #f9e5d0;
|
|
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: #fce9e9;
|
|
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: #f9d2d2;
|
|
2539
2539
|
}
|
|
2540
2540
|
.table-responsive {
|
|
2541
2541
|
min-height: 0.01%;
|
|
@@ -2544,10 +2544,10 @@ th {
|
|
|
2544
2544
|
@media screen and (max-width: 767px) {
|
|
2545
2545
|
.table-responsive {
|
|
2546
2546
|
width: 100%;
|
|
2547
|
-
margin-bottom:
|
|
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 #d8d8d8;
|
|
2551
2551
|
}
|
|
2552
2552
|
.table-responsive > .table {
|
|
2553
2553
|
margin-bottom: 0;
|
|
@@ -2596,12 +2596,12 @@ legend {
|
|
|
2596
2596
|
display: block;
|
|
2597
2597
|
width: 100%;
|
|
2598
2598
|
padding: 0;
|
|
2599
|
-
margin-bottom:
|
|
2599
|
+
margin-bottom: 24px;
|
|
2600
2600
|
font-size: 21px;
|
|
2601
2601
|
line-height: inherit;
|
|
2602
|
-
color: #
|
|
2602
|
+
color: #505d68;
|
|
2603
2603
|
border: 0;
|
|
2604
|
-
border-bottom: 1px solid #
|
|
2604
|
+
border-bottom: 1px solid #999999;
|
|
2605
2605
|
}
|
|
2606
2606
|
label {
|
|
2607
2607
|
display: inline-block;
|
|
@@ -2650,23 +2650,23 @@ input[type="checkbox"]:focus {
|
|
|
2650
2650
|
}
|
|
2651
2651
|
output {
|
|
2652
2652
|
display: block;
|
|
2653
|
-
padding-top:
|
|
2653
|
+
padding-top: 8px;
|
|
2654
2654
|
font-size: 14px;
|
|
2655
|
-
line-height: 1.
|
|
2656
|
-
color: #
|
|
2655
|
+
line-height: 1.71428572;
|
|
2656
|
+
color: #1a1a1a;
|
|
2657
2657
|
}
|
|
2658
2658
|
.form-control {
|
|
2659
2659
|
display: block;
|
|
2660
2660
|
width: 100%;
|
|
2661
|
-
height:
|
|
2662
|
-
padding:
|
|
2661
|
+
height: 40px;
|
|
2662
|
+
padding: 7px 19px;
|
|
2663
2663
|
font-size: 14px;
|
|
2664
|
-
line-height: 1.
|
|
2665
|
-
color: #
|
|
2666
|
-
background-color: #
|
|
2664
|
+
line-height: 1.71428572;
|
|
2665
|
+
color: #1a1a1a;
|
|
2666
|
+
background-color: #ffffff;
|
|
2667
2667
|
background-image: none;
|
|
2668
|
-
border: 1px solid #
|
|
2669
|
-
border-radius:
|
|
2668
|
+
border: 1px solid #d8d8d8;
|
|
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);
|
|
2672
2672
|
-webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
|
@@ -2677,20 +2677,20 @@ output {
|
|
|
2677
2677
|
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
|
|
2678
2678
|
}
|
|
2679
2679
|
.form-control:focus {
|
|
2680
|
-
border-color: #
|
|
2680
|
+
border-color: #007dff;
|
|
2681
2681
|
outline: 0;
|
|
2682
|
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(
|
|
2683
|
-
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(
|
|
2682
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(0, 125, 255, 0.6);
|
|
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: #999999;
|
|
2687
2687
|
opacity: 1;
|
|
2688
2688
|
}
|
|
2689
2689
|
.form-control:-ms-input-placeholder {
|
|
2690
|
-
color: #
|
|
2690
|
+
color: #999999;
|
|
2691
2691
|
}
|
|
2692
2692
|
.form-control::-webkit-input-placeholder {
|
|
2693
|
-
color: #
|
|
2693
|
+
color: #999999;
|
|
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: #999999;
|
|
2703
2703
|
opacity: 1;
|
|
2704
2704
|
}
|
|
2705
2705
|
.form-control[disabled],
|
|
@@ -2714,7 +2714,7 @@ textarea.form-control {
|
|
|
2714
2714
|
input[type="time"].form-control,
|
|
2715
2715
|
input[type="datetime-local"].form-control,
|
|
2716
2716
|
input[type="month"].form-control {
|
|
2717
|
-
line-height:
|
|
2717
|
+
line-height: 40px;
|
|
2718
2718
|
}
|
|
2719
2719
|
input[type="date"].input-sm,
|
|
2720
2720
|
input[type="time"].input-sm,
|
|
@@ -2724,7 +2724,7 @@ textarea.form-control {
|
|
|
2724
2724
|
.input-group-sm input[type="time"],
|
|
2725
2725
|
.input-group-sm input[type="datetime-local"],
|
|
2726
2726
|
.input-group-sm input[type="month"] {
|
|
2727
|
-
line-height:
|
|
2727
|
+
line-height: 34px;
|
|
2728
2728
|
}
|
|
2729
2729
|
input[type="date"].input-lg,
|
|
2730
2730
|
input[type="time"].input-lg,
|
|
@@ -2734,11 +2734,11 @@ textarea.form-control {
|
|
|
2734
2734
|
.input-group-lg input[type="time"],
|
|
2735
2735
|
.input-group-lg input[type="datetime-local"],
|
|
2736
2736
|
.input-group-lg input[type="month"] {
|
|
2737
|
-
line-height:
|
|
2737
|
+
line-height: 40px;
|
|
2738
2738
|
}
|
|
2739
2739
|
}
|
|
2740
2740
|
.form-group {
|
|
2741
|
-
margin-bottom:
|
|
2741
|
+
margin-bottom: 10px;
|
|
2742
2742
|
}
|
|
2743
2743
|
.radio,
|
|
2744
2744
|
.checkbox {
|
|
@@ -2755,7 +2755,7 @@ fieldset[disabled] .checkbox label {
|
|
|
2755
2755
|
}
|
|
2756
2756
|
.radio label,
|
|
2757
2757
|
.checkbox label {
|
|
2758
|
-
min-height:
|
|
2758
|
+
min-height: 24px;
|
|
2759
2759
|
padding-left: 20px;
|
|
2760
2760
|
margin-bottom: 0;
|
|
2761
2761
|
font-weight: 400;
|
|
@@ -2795,9 +2795,9 @@ fieldset[disabled] .checkbox-inline {
|
|
|
2795
2795
|
margin-left: 10px;
|
|
2796
2796
|
}
|
|
2797
2797
|
.form-control-static {
|
|
2798
|
-
min-height:
|
|
2799
|
-
padding-top:
|
|
2800
|
-
padding-bottom:
|
|
2798
|
+
min-height: 38px;
|
|
2799
|
+
padding-top: 8px;
|
|
2800
|
+
padding-bottom: 8px;
|
|
2801
2801
|
margin-bottom: 0;
|
|
2802
2802
|
}
|
|
2803
2803
|
.form-control-static.input-lg,
|
|
@@ -2806,84 +2806,84 @@ fieldset[disabled] .checkbox-inline {
|
|
|
2806
2806
|
padding-left: 0;
|
|
2807
2807
|
}
|
|
2808
2808
|
.input-sm {
|
|
2809
|
-
height:
|
|
2810
|
-
padding: 5px
|
|
2809
|
+
height: 34px;
|
|
2810
|
+
padding: 5px 5px;
|
|
2811
2811
|
font-size: 12px;
|
|
2812
|
-
line-height:
|
|
2813
|
-
border-radius:
|
|
2812
|
+
line-height: 2;
|
|
2813
|
+
border-radius: 6px;
|
|
2814
2814
|
}
|
|
2815
2815
|
select.input-sm {
|
|
2816
|
-
height:
|
|
2817
|
-
line-height:
|
|
2816
|
+
height: 34px;
|
|
2817
|
+
line-height: 34px;
|
|
2818
2818
|
}
|
|
2819
2819
|
textarea.input-sm,
|
|
2820
2820
|
select[multiple].input-sm {
|
|
2821
2821
|
height: auto;
|
|
2822
2822
|
}
|
|
2823
2823
|
.form-group-sm .form-control {
|
|
2824
|
-
height:
|
|
2825
|
-
padding: 5px
|
|
2824
|
+
height: 34px;
|
|
2825
|
+
padding: 5px 5px;
|
|
2826
2826
|
font-size: 12px;
|
|
2827
|
-
line-height:
|
|
2828
|
-
border-radius:
|
|
2827
|
+
line-height: 2;
|
|
2828
|
+
border-radius: 6px;
|
|
2829
2829
|
}
|
|
2830
2830
|
.form-group-sm select.form-control {
|
|
2831
|
-
height:
|
|
2832
|
-
line-height:
|
|
2831
|
+
height: 34px;
|
|
2832
|
+
line-height: 34px;
|
|
2833
2833
|
}
|
|
2834
2834
|
.form-group-sm textarea.form-control,
|
|
2835
2835
|
.form-group-sm select[multiple].form-control {
|
|
2836
2836
|
height: auto;
|
|
2837
2837
|
}
|
|
2838
2838
|
.form-group-sm .form-control-static {
|
|
2839
|
-
height:
|
|
2840
|
-
min-height:
|
|
2841
|
-
padding: 6px
|
|
2839
|
+
height: 34px;
|
|
2840
|
+
min-height: 36px;
|
|
2841
|
+
padding: 6px 5px;
|
|
2842
2842
|
font-size: 12px;
|
|
2843
|
-
line-height:
|
|
2843
|
+
line-height: 2;
|
|
2844
2844
|
}
|
|
2845
2845
|
.input-lg {
|
|
2846
|
-
height:
|
|
2847
|
-
padding:
|
|
2848
|
-
font-size:
|
|
2849
|
-
line-height: 1.
|
|
2850
|
-
border-radius:
|
|
2846
|
+
height: 40px;
|
|
2847
|
+
padding: 7px 19px;
|
|
2848
|
+
font-size: 16px;
|
|
2849
|
+
line-height: 1.5;
|
|
2850
|
+
border-radius: 10px;
|
|
2851
2851
|
}
|
|
2852
2852
|
select.input-lg {
|
|
2853
|
-
height:
|
|
2854
|
-
line-height:
|
|
2853
|
+
height: 40px;
|
|
2854
|
+
line-height: 40px;
|
|
2855
2855
|
}
|
|
2856
2856
|
textarea.input-lg,
|
|
2857
2857
|
select[multiple].input-lg {
|
|
2858
2858
|
height: auto;
|
|
2859
2859
|
}
|
|
2860
2860
|
.form-group-lg .form-control {
|
|
2861
|
-
height:
|
|
2862
|
-
padding:
|
|
2863
|
-
font-size:
|
|
2864
|
-
line-height: 1.
|
|
2865
|
-
border-radius:
|
|
2861
|
+
height: 40px;
|
|
2862
|
+
padding: 7px 19px;
|
|
2863
|
+
font-size: 16px;
|
|
2864
|
+
line-height: 1.5;
|
|
2865
|
+
border-radius: 10px;
|
|
2866
2866
|
}
|
|
2867
2867
|
.form-group-lg select.form-control {
|
|
2868
|
-
height:
|
|
2869
|
-
line-height:
|
|
2868
|
+
height: 40px;
|
|
2869
|
+
line-height: 40px;
|
|
2870
2870
|
}
|
|
2871
2871
|
.form-group-lg textarea.form-control,
|
|
2872
2872
|
.form-group-lg select[multiple].form-control {
|
|
2873
2873
|
height: auto;
|
|
2874
2874
|
}
|
|
2875
2875
|
.form-group-lg .form-control-static {
|
|
2876
|
-
height:
|
|
2877
|
-
min-height:
|
|
2878
|
-
padding:
|
|
2879
|
-
font-size:
|
|
2880
|
-
line-height: 1.
|
|
2876
|
+
height: 40px;
|
|
2877
|
+
min-height: 40px;
|
|
2878
|
+
padding: 8px 19px;
|
|
2879
|
+
font-size: 16px;
|
|
2880
|
+
line-height: 1.5;
|
|
2881
2881
|
}
|
|
2882
2882
|
.has-feedback {
|
|
2883
2883
|
position: relative;
|
|
2884
2884
|
}
|
|
2885
2885
|
.has-feedback .form-control {
|
|
2886
|
-
padding-right:
|
|
2886
|
+
padding-right: 50px;
|
|
2887
2887
|
}
|
|
2888
2888
|
.form-control-feedback {
|
|
2889
2889
|
position: absolute;
|
|
@@ -2891,25 +2891,25 @@ select[multiple].input-lg {
|
|
|
2891
2891
|
right: 0;
|
|
2892
2892
|
z-index: 2;
|
|
2893
2893
|
display: block;
|
|
2894
|
-
width:
|
|
2895
|
-
height:
|
|
2896
|
-
line-height:
|
|
2894
|
+
width: 40px;
|
|
2895
|
+
height: 40px;
|
|
2896
|
+
line-height: 40px;
|
|
2897
2897
|
text-align: center;
|
|
2898
2898
|
pointer-events: none;
|
|
2899
2899
|
}
|
|
2900
2900
|
.input-lg + .form-control-feedback,
|
|
2901
2901
|
.input-group-lg + .form-control-feedback,
|
|
2902
2902
|
.form-group-lg .form-control + .form-control-feedback {
|
|
2903
|
-
width:
|
|
2904
|
-
height:
|
|
2905
|
-
line-height:
|
|
2903
|
+
width: 40px;
|
|
2904
|
+
height: 40px;
|
|
2905
|
+
line-height: 40px;
|
|
2906
2906
|
}
|
|
2907
2907
|
.input-sm + .form-control-feedback,
|
|
2908
2908
|
.input-group-sm + .form-control-feedback,
|
|
2909
2909
|
.form-group-sm .form-control + .form-control-feedback {
|
|
2910
|
-
width:
|
|
2911
|
-
height:
|
|
2912
|
-
line-height:
|
|
2910
|
+
width: 34px;
|
|
2911
|
+
height: 34px;
|
|
2912
|
+
line-height: 34px;
|
|
2913
2913
|
}
|
|
2914
2914
|
.has-success .help-block,
|
|
2915
2915
|
.has-success .control-label,
|
|
@@ -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: #098a15;
|
|
2925
2925
|
}
|
|
2926
2926
|
.has-success .form-control {
|
|
2927
|
-
border-color: #
|
|
2927
|
+
border-color: #098a15;
|
|
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: #065a0e;
|
|
2933
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #0fea24;
|
|
2934
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #0fea24;
|
|
2935
2935
|
}
|
|
2936
2936
|
.has-success .input-group-addon {
|
|
2937
|
-
color: #
|
|
2938
|
-
background-color: #
|
|
2939
|
-
border-color: #
|
|
2937
|
+
color: #098a15;
|
|
2938
|
+
background-color: #e8f6ea;
|
|
2939
|
+
border-color: #098a15;
|
|
2940
2940
|
}
|
|
2941
2941
|
.has-success .form-control-feedback {
|
|
2942
|
-
color: #
|
|
2942
|
+
color: #098a15;
|
|
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: #e07807;
|
|
2955
2955
|
}
|
|
2956
2956
|
.has-warning .form-control {
|
|
2957
|
-
border-color: #
|
|
2957
|
+
border-color: #e07807;
|
|
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: #af5e05;
|
|
2963
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #faaa53;
|
|
2964
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #faaa53;
|
|
2965
2965
|
}
|
|
2966
2966
|
.has-warning .input-group-addon {
|
|
2967
|
-
color: #
|
|
2968
|
-
background-color: #
|
|
2969
|
-
border-color: #
|
|
2967
|
+
color: #e07807;
|
|
2968
|
+
background-color: #fcf2e6;
|
|
2969
|
+
border-color: #e07807;
|
|
2970
2970
|
}
|
|
2971
2971
|
.has-warning .form-control-feedback {
|
|
2972
|
-
color: #
|
|
2972
|
+
color: #e07807;
|
|
2973
2973
|
}
|
|
2974
2974
|
.has-error .help-block,
|
|
2975
2975
|
.has-error .control-label,
|
|
@@ -2981,28 +2981,28 @@ select[multiple].input-lg {
|
|
|
2981
2981
|
.has-error.checkbox label,
|
|
2982
2982
|
.has-error.radio-inline label,
|
|
2983
2983
|
.has-error.checkbox-inline label {
|
|
2984
|
-
color: #
|
|
2984
|
+
color: #e01f1f;
|
|
2985
2985
|
}
|
|
2986
2986
|
.has-error .form-control {
|
|
2987
|
-
border-color: #
|
|
2987
|
+
border-color: #e01f1f;
|
|
2988
2988
|
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
|
2989
2989
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
|
2990
2990
|
}
|
|
2991
2991
|
.has-error .form-control:focus {
|
|
2992
|
-
border-color: #
|
|
2993
|
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #
|
|
2994
|
-
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #
|
|
2992
|
+
border-color: #b31919;
|
|
2993
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ec7979;
|
|
2994
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ec7979;
|
|
2995
2995
|
}
|
|
2996
2996
|
.has-error .input-group-addon {
|
|
2997
|
-
color: #
|
|
2998
|
-
background-color: #
|
|
2999
|
-
border-color: #
|
|
2997
|
+
color: #e01f1f;
|
|
2998
|
+
background-color: #fce9e9;
|
|
2999
|
+
border-color: #e01f1f;
|
|
3000
3000
|
}
|
|
3001
3001
|
.has-error .form-control-feedback {
|
|
3002
|
-
color: #
|
|
3002
|
+
color: #e01f1f;
|
|
3003
3003
|
}
|
|
3004
3004
|
.has-feedback label ~ .form-control-feedback {
|
|
3005
|
-
top:
|
|
3005
|
+
top: 29px;
|
|
3006
3006
|
}
|
|
3007
3007
|
.has-feedback label.sr-only ~ .form-control-feedback {
|
|
3008
3008
|
top: 0;
|
|
@@ -3011,7 +3011,7 @@ select[multiple].input-lg {
|
|
|
3011
3011
|
display: block;
|
|
3012
3012
|
margin-top: 5px;
|
|
3013
3013
|
margin-bottom: 10px;
|
|
3014
|
-
color: #
|
|
3014
|
+
color: #5a5a5a;
|
|
3015
3015
|
}
|
|
3016
3016
|
@media (min-width: 768px) {
|
|
3017
3017
|
.form-inline .form-group {
|
|
@@ -3067,32 +3067,32 @@ select[multiple].input-lg {
|
|
|
3067
3067
|
.form-horizontal .checkbox,
|
|
3068
3068
|
.form-horizontal .radio-inline,
|
|
3069
3069
|
.form-horizontal .checkbox-inline {
|
|
3070
|
-
padding-top:
|
|
3070
|
+
padding-top: 8px;
|
|
3071
3071
|
margin-top: 0;
|
|
3072
3072
|
margin-bottom: 0;
|
|
3073
3073
|
}
|
|
3074
3074
|
.form-horizontal .radio,
|
|
3075
3075
|
.form-horizontal .checkbox {
|
|
3076
|
-
min-height:
|
|
3076
|
+
min-height: 32px;
|
|
3077
3077
|
}
|
|
3078
3078
|
.form-horizontal .form-group {
|
|
3079
|
-
margin-right: -
|
|
3080
|
-
margin-left: -
|
|
3079
|
+
margin-right: -20px;
|
|
3080
|
+
margin-left: -20px;
|
|
3081
3081
|
}
|
|
3082
3082
|
@media (min-width: 768px) {
|
|
3083
3083
|
.form-horizontal .control-label {
|
|
3084
|
-
padding-top:
|
|
3084
|
+
padding-top: 8px;
|
|
3085
3085
|
margin-bottom: 0;
|
|
3086
3086
|
text-align: right;
|
|
3087
3087
|
}
|
|
3088
3088
|
}
|
|
3089
3089
|
.form-horizontal .has-feedback .form-control-feedback {
|
|
3090
|
-
right:
|
|
3090
|
+
right: 20px;
|
|
3091
3091
|
}
|
|
3092
3092
|
@media (min-width: 768px) {
|
|
3093
3093
|
.form-horizontal .form-group-lg .control-label {
|
|
3094
|
-
padding-top:
|
|
3095
|
-
font-size:
|
|
3094
|
+
padding-top: 8px;
|
|
3095
|
+
font-size: 16px;
|
|
3096
3096
|
}
|
|
3097
3097
|
}
|
|
3098
3098
|
@media (min-width: 768px) {
|
|
@@ -3104,7 +3104,7 @@ select[multiple].input-lg {
|
|
|
3104
3104
|
.btn {
|
|
3105
3105
|
display: inline-block;
|
|
3106
3106
|
margin-bottom: 0;
|
|
3107
|
-
font-weight:
|
|
3107
|
+
font-weight: 400;
|
|
3108
3108
|
text-align: center;
|
|
3109
3109
|
white-space: nowrap;
|
|
3110
3110
|
vertical-align: middle;
|
|
@@ -3113,10 +3113,10 @@ select[multiple].input-lg {
|
|
|
3113
3113
|
cursor: pointer;
|
|
3114
3114
|
background-image: none;
|
|
3115
3115
|
border: 1px solid transparent;
|
|
3116
|
-
padding:
|
|
3116
|
+
padding: 7px 19px;
|
|
3117
3117
|
font-size: 14px;
|
|
3118
|
-
line-height: 1.
|
|
3119
|
-
border-radius:
|
|
3118
|
+
line-height: 1.71428572;
|
|
3119
|
+
border-radius: 10px;
|
|
3120
3120
|
-webkit-user-select: none;
|
|
3121
3121
|
-moz-user-select: none;
|
|
3122
3122
|
-ms-user-select: none;
|
|
@@ -3134,7 +3134,7 @@ select[multiple].input-lg {
|
|
|
3134
3134
|
.btn:hover,
|
|
3135
3135
|
.btn:focus,
|
|
3136
3136
|
.btn.focus {
|
|
3137
|
-
color: #
|
|
3137
|
+
color: #007dff;
|
|
3138
3138
|
text-decoration: none;
|
|
3139
3139
|
}
|
|
3140
3140
|
.btn:active,
|
|
@@ -3158,28 +3158,28 @@ fieldset[disabled] a.btn {
|
|
|
3158
3158
|
pointer-events: none;
|
|
3159
3159
|
}
|
|
3160
3160
|
.btn-default {
|
|
3161
|
-
color: #
|
|
3162
|
-
background-color: #
|
|
3163
|
-
border-color: #
|
|
3161
|
+
color: #007dff;
|
|
3162
|
+
background-color: #ffffff;
|
|
3163
|
+
border-color: #007dff;
|
|
3164
3164
|
}
|
|
3165
3165
|
.btn-default:focus,
|
|
3166
3166
|
.btn-default.focus {
|
|
3167
|
-
color: #
|
|
3167
|
+
color: #007dff;
|
|
3168
3168
|
background-color: #e6e6e6;
|
|
3169
|
-
border-color: #
|
|
3169
|
+
border-color: #003e80;
|
|
3170
3170
|
}
|
|
3171
3171
|
.btn-default:hover {
|
|
3172
|
-
color: #
|
|
3172
|
+
color: #007dff;
|
|
3173
3173
|
background-color: #e6e6e6;
|
|
3174
|
-
border-color: #
|
|
3174
|
+
border-color: #005fc2;
|
|
3175
3175
|
}
|
|
3176
3176
|
.btn-default:active,
|
|
3177
3177
|
.btn-default.active,
|
|
3178
3178
|
.open > .dropdown-toggle.btn-default {
|
|
3179
|
-
color: #
|
|
3179
|
+
color: #007dff;
|
|
3180
3180
|
background-color: #e6e6e6;
|
|
3181
3181
|
background-image: none;
|
|
3182
|
-
border-color: #
|
|
3182
|
+
border-color: #005fc2;
|
|
3183
3183
|
}
|
|
3184
3184
|
.btn-default:active:hover,
|
|
3185
3185
|
.btn-default.active:hover,
|
|
@@ -3190,9 +3190,9 @@ fieldset[disabled] a.btn {
|
|
|
3190
3190
|
.btn-default:active.focus,
|
|
3191
3191
|
.btn-default.active.focus,
|
|
3192
3192
|
.open > .dropdown-toggle.btn-default.focus {
|
|
3193
|
-
color: #
|
|
3193
|
+
color: #007dff;
|
|
3194
3194
|
background-color: #d4d4d4;
|
|
3195
|
-
border-color: #
|
|
3195
|
+
border-color: #003e80;
|
|
3196
3196
|
}
|
|
3197
3197
|
.btn-default.disabled:hover,
|
|
3198
3198
|
.btn-default[disabled]:hover,
|
|
@@ -3203,36 +3203,36 @@ 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: #
|
|
3207
|
-
border-color: #
|
|
3206
|
+
background-color: #ffffff;
|
|
3207
|
+
border-color: #007dff;
|
|
3208
3208
|
}
|
|
3209
3209
|
.btn-default .badge {
|
|
3210
|
-
color: #
|
|
3211
|
-
background-color: #
|
|
3210
|
+
color: #ffffff;
|
|
3211
|
+
background-color: #007dff;
|
|
3212
3212
|
}
|
|
3213
3213
|
.btn-primary {
|
|
3214
|
-
color: #
|
|
3215
|
-
background-color: #
|
|
3216
|
-
border-color:
|
|
3214
|
+
color: #ffffff;
|
|
3215
|
+
background-color: #e07807;
|
|
3216
|
+
border-color: transparent;
|
|
3217
3217
|
}
|
|
3218
3218
|
.btn-primary:focus,
|
|
3219
3219
|
.btn-primary.focus {
|
|
3220
|
-
color: #
|
|
3221
|
-
background-color: #
|
|
3222
|
-
border-color:
|
|
3220
|
+
color: #ffffff;
|
|
3221
|
+
background-color: #af5e05;
|
|
3222
|
+
border-color: rgba(0, 0, 0, 0);
|
|
3223
3223
|
}
|
|
3224
3224
|
.btn-primary:hover {
|
|
3225
|
-
color: #
|
|
3226
|
-
background-color: #
|
|
3227
|
-
border-color:
|
|
3225
|
+
color: #ffffff;
|
|
3226
|
+
background-color: #af5e05;
|
|
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
|
-
color: #
|
|
3233
|
-
background-color: #
|
|
3232
|
+
color: #ffffff;
|
|
3233
|
+
background-color: #af5e05;
|
|
3234
3234
|
background-image: none;
|
|
3235
|
-
border-color:
|
|
3235
|
+
border-color: rgba(0, 0, 0, 0);
|
|
3236
3236
|
}
|
|
3237
3237
|
.btn-primary:active:hover,
|
|
3238
3238
|
.btn-primary.active:hover,
|
|
@@ -3243,9 +3243,9 @@ fieldset[disabled] .btn-default.focus {
|
|
|
3243
3243
|
.btn-primary:active.focus,
|
|
3244
3244
|
.btn-primary.active.focus,
|
|
3245
3245
|
.open > .dropdown-toggle.btn-primary.focus {
|
|
3246
|
-
color: #
|
|
3247
|
-
background-color: #
|
|
3248
|
-
border-color:
|
|
3246
|
+
color: #ffffff;
|
|
3247
|
+
background-color: #8c4b04;
|
|
3248
|
+
border-color: rgba(0, 0, 0, 0);
|
|
3249
3249
|
}
|
|
3250
3250
|
.btn-primary.disabled:hover,
|
|
3251
3251
|
.btn-primary[disabled]:hover,
|
|
@@ -3256,36 +3256,36 @@ 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: #
|
|
3260
|
-
border-color:
|
|
3259
|
+
background-color: #e07807;
|
|
3260
|
+
border-color: transparent;
|
|
3261
3261
|
}
|
|
3262
3262
|
.btn-primary .badge {
|
|
3263
|
-
color: #
|
|
3264
|
-
background-color: #
|
|
3263
|
+
color: #e07807;
|
|
3264
|
+
background-color: #ffffff;
|
|
3265
3265
|
}
|
|
3266
3266
|
.btn-success {
|
|
3267
3267
|
color: #fff;
|
|
3268
|
-
background-color: #
|
|
3269
|
-
border-color:
|
|
3268
|
+
background-color: #098a15;
|
|
3269
|
+
border-color: transparent;
|
|
3270
3270
|
}
|
|
3271
3271
|
.btn-success:focus,
|
|
3272
3272
|
.btn-success.focus {
|
|
3273
3273
|
color: #fff;
|
|
3274
|
-
background-color: #
|
|
3275
|
-
border-color:
|
|
3274
|
+
background-color: #065a0e;
|
|
3275
|
+
border-color: rgba(0, 0, 0, 0);
|
|
3276
3276
|
}
|
|
3277
3277
|
.btn-success:hover {
|
|
3278
3278
|
color: #fff;
|
|
3279
|
-
background-color: #
|
|
3280
|
-
border-color:
|
|
3279
|
+
background-color: #065a0e;
|
|
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
3285
|
color: #fff;
|
|
3286
|
-
background-color: #
|
|
3286
|
+
background-color: #065a0e;
|
|
3287
3287
|
background-image: none;
|
|
3288
|
-
border-color:
|
|
3288
|
+
border-color: rgba(0, 0, 0, 0);
|
|
3289
3289
|
}
|
|
3290
3290
|
.btn-success:active:hover,
|
|
3291
3291
|
.btn-success.active:hover,
|
|
@@ -3297,8 +3297,8 @@ fieldset[disabled] .btn-primary.focus {
|
|
|
3297
3297
|
.btn-success.active.focus,
|
|
3298
3298
|
.open > .dropdown-toggle.btn-success.focus {
|
|
3299
3299
|
color: #fff;
|
|
3300
|
-
background-color: #
|
|
3301
|
-
border-color:
|
|
3300
|
+
background-color: #043909;
|
|
3301
|
+
border-color: rgba(0, 0, 0, 0);
|
|
3302
3302
|
}
|
|
3303
3303
|
.btn-success.disabled:hover,
|
|
3304
3304
|
.btn-success[disabled]:hover,
|
|
@@ -3309,36 +3309,36 @@ 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: #
|
|
3313
|
-
border-color:
|
|
3312
|
+
background-color: #098a15;
|
|
3313
|
+
border-color: transparent;
|
|
3314
3314
|
}
|
|
3315
3315
|
.btn-success .badge {
|
|
3316
|
-
color: #
|
|
3316
|
+
color: #098a15;
|
|
3317
3317
|
background-color: #fff;
|
|
3318
3318
|
}
|
|
3319
3319
|
.btn-info {
|
|
3320
|
-
color: #
|
|
3321
|
-
background-color: #
|
|
3322
|
-
border-color:
|
|
3320
|
+
color: #ffffff;
|
|
3321
|
+
background-color: #007dff;
|
|
3322
|
+
border-color: transparent;
|
|
3323
3323
|
}
|
|
3324
3324
|
.btn-info:focus,
|
|
3325
3325
|
.btn-info.focus {
|
|
3326
|
-
color: #
|
|
3327
|
-
background-color: #
|
|
3328
|
-
border-color:
|
|
3326
|
+
color: #ffffff;
|
|
3327
|
+
background-color: #0064cc;
|
|
3328
|
+
border-color: rgba(0, 0, 0, 0);
|
|
3329
3329
|
}
|
|
3330
3330
|
.btn-info:hover {
|
|
3331
|
-
color: #
|
|
3332
|
-
background-color: #
|
|
3333
|
-
border-color:
|
|
3331
|
+
color: #ffffff;
|
|
3332
|
+
background-color: #0064cc;
|
|
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
|
-
color: #
|
|
3339
|
-
background-color: #
|
|
3338
|
+
color: #ffffff;
|
|
3339
|
+
background-color: #0064cc;
|
|
3340
3340
|
background-image: none;
|
|
3341
|
-
border-color:
|
|
3341
|
+
border-color: rgba(0, 0, 0, 0);
|
|
3342
3342
|
}
|
|
3343
3343
|
.btn-info:active:hover,
|
|
3344
3344
|
.btn-info.active:hover,
|
|
@@ -3349,9 +3349,9 @@ fieldset[disabled] .btn-success.focus {
|
|
|
3349
3349
|
.btn-info:active.focus,
|
|
3350
3350
|
.btn-info.active.focus,
|
|
3351
3351
|
.open > .dropdown-toggle.btn-info.focus {
|
|
3352
|
-
color: #
|
|
3353
|
-
background-color: #
|
|
3354
|
-
border-color:
|
|
3352
|
+
color: #ffffff;
|
|
3353
|
+
background-color: #0052a8;
|
|
3354
|
+
border-color: rgba(0, 0, 0, 0);
|
|
3355
3355
|
}
|
|
3356
3356
|
.btn-info.disabled:hover,
|
|
3357
3357
|
.btn-info[disabled]:hover,
|
|
@@ -3362,36 +3362,36 @@ 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: #
|
|
3366
|
-
border-color:
|
|
3365
|
+
background-color: #007dff;
|
|
3366
|
+
border-color: transparent;
|
|
3367
3367
|
}
|
|
3368
3368
|
.btn-info .badge {
|
|
3369
|
-
color: #
|
|
3370
|
-
background-color: #
|
|
3369
|
+
color: #007dff;
|
|
3370
|
+
background-color: #ffffff;
|
|
3371
3371
|
}
|
|
3372
3372
|
.btn-warning {
|
|
3373
|
-
color: #
|
|
3374
|
-
background-color: #
|
|
3375
|
-
border-color:
|
|
3373
|
+
color: #ffffff;
|
|
3374
|
+
background-color: #e07807;
|
|
3375
|
+
border-color: transparent;
|
|
3376
3376
|
}
|
|
3377
3377
|
.btn-warning:focus,
|
|
3378
3378
|
.btn-warning.focus {
|
|
3379
|
-
color: #
|
|
3380
|
-
background-color: #
|
|
3381
|
-
border-color:
|
|
3379
|
+
color: #ffffff;
|
|
3380
|
+
background-color: #af5e05;
|
|
3381
|
+
border-color: rgba(0, 0, 0, 0);
|
|
3382
3382
|
}
|
|
3383
3383
|
.btn-warning:hover {
|
|
3384
|
-
color: #
|
|
3385
|
-
background-color: #
|
|
3386
|
-
border-color:
|
|
3384
|
+
color: #ffffff;
|
|
3385
|
+
background-color: #af5e05;
|
|
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
|
-
color: #
|
|
3392
|
-
background-color: #
|
|
3391
|
+
color: #ffffff;
|
|
3392
|
+
background-color: #af5e05;
|
|
3393
3393
|
background-image: none;
|
|
3394
|
-
border-color:
|
|
3394
|
+
border-color: rgba(0, 0, 0, 0);
|
|
3395
3395
|
}
|
|
3396
3396
|
.btn-warning:active:hover,
|
|
3397
3397
|
.btn-warning.active:hover,
|
|
@@ -3402,9 +3402,9 @@ fieldset[disabled] .btn-info.focus {
|
|
|
3402
3402
|
.btn-warning:active.focus,
|
|
3403
3403
|
.btn-warning.active.focus,
|
|
3404
3404
|
.open > .dropdown-toggle.btn-warning.focus {
|
|
3405
|
-
color: #
|
|
3406
|
-
background-color: #
|
|
3407
|
-
border-color:
|
|
3405
|
+
color: #ffffff;
|
|
3406
|
+
background-color: #8c4b04;
|
|
3407
|
+
border-color: rgba(0, 0, 0, 0);
|
|
3408
3408
|
}
|
|
3409
3409
|
.btn-warning.disabled:hover,
|
|
3410
3410
|
.btn-warning[disabled]:hover,
|
|
@@ -3415,36 +3415,36 @@ 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: #
|
|
3419
|
-
border-color:
|
|
3418
|
+
background-color: #e07807;
|
|
3419
|
+
border-color: transparent;
|
|
3420
3420
|
}
|
|
3421
3421
|
.btn-warning .badge {
|
|
3422
|
-
color: #
|
|
3423
|
-
background-color: #
|
|
3422
|
+
color: #e07807;
|
|
3423
|
+
background-color: #ffffff;
|
|
3424
3424
|
}
|
|
3425
3425
|
.btn-danger {
|
|
3426
|
-
color: #
|
|
3427
|
-
background-color: #
|
|
3428
|
-
border-color:
|
|
3426
|
+
color: #ffffff;
|
|
3427
|
+
background-color: #e01f1f;
|
|
3428
|
+
border-color: transparent;
|
|
3429
3429
|
}
|
|
3430
3430
|
.btn-danger:focus,
|
|
3431
3431
|
.btn-danger.focus {
|
|
3432
|
-
color: #
|
|
3433
|
-
background-color: #
|
|
3434
|
-
border-color:
|
|
3432
|
+
color: #ffffff;
|
|
3433
|
+
background-color: #b31919;
|
|
3434
|
+
border-color: rgba(0, 0, 0, 0);
|
|
3435
3435
|
}
|
|
3436
3436
|
.btn-danger:hover {
|
|
3437
|
-
color: #
|
|
3438
|
-
background-color: #
|
|
3439
|
-
border-color:
|
|
3437
|
+
color: #ffffff;
|
|
3438
|
+
background-color: #b31919;
|
|
3439
|
+
border-color: rgba(0, 0, 0, 0);
|
|
3440
3440
|
}
|
|
3441
3441
|
.btn-danger:active,
|
|
3442
3442
|
.btn-danger.active,
|
|
3443
3443
|
.open > .dropdown-toggle.btn-danger {
|
|
3444
|
-
color: #
|
|
3445
|
-
background-color: #
|
|
3444
|
+
color: #ffffff;
|
|
3445
|
+
background-color: #b31919;
|
|
3446
3446
|
background-image: none;
|
|
3447
|
-
border-color:
|
|
3447
|
+
border-color: rgba(0, 0, 0, 0);
|
|
3448
3448
|
}
|
|
3449
3449
|
.btn-danger:active:hover,
|
|
3450
3450
|
.btn-danger.active:hover,
|
|
@@ -3455,9 +3455,9 @@ fieldset[disabled] .btn-warning.focus {
|
|
|
3455
3455
|
.btn-danger:active.focus,
|
|
3456
3456
|
.btn-danger.active.focus,
|
|
3457
3457
|
.open > .dropdown-toggle.btn-danger.focus {
|
|
3458
|
-
color: #
|
|
3459
|
-
background-color: #
|
|
3460
|
-
border-color:
|
|
3458
|
+
color: #ffffff;
|
|
3459
|
+
background-color: #941414;
|
|
3460
|
+
border-color: rgba(0, 0, 0, 0);
|
|
3461
3461
|
}
|
|
3462
3462
|
.btn-danger.disabled:hover,
|
|
3463
3463
|
.btn-danger[disabled]:hover,
|
|
@@ -3468,16 +3468,16 @@ fieldset[disabled] .btn-danger:focus,
|
|
|
3468
3468
|
.btn-danger.disabled.focus,
|
|
3469
3469
|
.btn-danger[disabled].focus,
|
|
3470
3470
|
fieldset[disabled] .btn-danger.focus {
|
|
3471
|
-
background-color: #
|
|
3472
|
-
border-color:
|
|
3471
|
+
background-color: #e01f1f;
|
|
3472
|
+
border-color: transparent;
|
|
3473
3473
|
}
|
|
3474
3474
|
.btn-danger .badge {
|
|
3475
|
-
color: #
|
|
3476
|
-
background-color: #
|
|
3475
|
+
color: #e01f1f;
|
|
3476
|
+
background-color: #ffffff;
|
|
3477
3477
|
}
|
|
3478
3478
|
.btn-link {
|
|
3479
3479
|
font-weight: 400;
|
|
3480
|
-
color: #
|
|
3480
|
+
color: #005EBF;
|
|
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: #005EBF;
|
|
3501
3501
|
text-decoration: underline;
|
|
3502
3502
|
background-color: transparent;
|
|
3503
3503
|
}
|
|
@@ -3505,29 +3505,29 @@ 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: #999999;
|
|
3509
3509
|
text-decoration: none;
|
|
3510
3510
|
}
|
|
3511
3511
|
.btn-lg,
|
|
3512
3512
|
.btn-group-lg > .btn {
|
|
3513
|
-
padding:
|
|
3514
|
-
font-size:
|
|
3515
|
-
line-height: 1.
|
|
3516
|
-
border-radius:
|
|
3513
|
+
padding: 7px 19px;
|
|
3514
|
+
font-size: 16px;
|
|
3515
|
+
line-height: 1.5;
|
|
3516
|
+
border-radius: 10px;
|
|
3517
3517
|
}
|
|
3518
3518
|
.btn-sm,
|
|
3519
3519
|
.btn-group-sm > .btn {
|
|
3520
|
-
padding: 5px
|
|
3520
|
+
padding: 5px 5px;
|
|
3521
3521
|
font-size: 12px;
|
|
3522
|
-
line-height:
|
|
3523
|
-
border-radius:
|
|
3522
|
+
line-height: 2;
|
|
3523
|
+
border-radius: 6px;
|
|
3524
3524
|
}
|
|
3525
3525
|
.btn-xs,
|
|
3526
3526
|
.btn-group-xs > .btn {
|
|
3527
|
-
padding:
|
|
3527
|
+
padding: 0 4px;
|
|
3528
3528
|
font-size: 12px;
|
|
3529
|
-
line-height:
|
|
3530
|
-
border-radius:
|
|
3529
|
+
line-height: 2;
|
|
3530
|
+
border-radius: 6px;
|
|
3531
3531
|
}
|
|
3532
3532
|
.btn-block {
|
|
3533
3533
|
display: block;
|
|
@@ -3582,10 +3582,10 @@ tbody.collapse.in {
|
|
|
3582
3582
|
height: 0;
|
|
3583
3583
|
margin-left: 2px;
|
|
3584
3584
|
vertical-align: middle;
|
|
3585
|
-
border-top:
|
|
3586
|
-
border-top:
|
|
3587
|
-
border-right:
|
|
3588
|
-
border-left:
|
|
3585
|
+
border-top: 6px dashed;
|
|
3586
|
+
border-top: 6px solid \9;
|
|
3587
|
+
border-right: 6px solid transparent;
|
|
3588
|
+
border-left: 6px solid transparent;
|
|
3589
3589
|
}
|
|
3590
3590
|
.dropup,
|
|
3591
3591
|
.dropdown {
|
|
@@ -3607,11 +3607,10 @@ tbody.collapse.in {
|
|
|
3607
3607
|
font-size: 14px;
|
|
3608
3608
|
text-align: left;
|
|
3609
3609
|
list-style: none;
|
|
3610
|
-
background-color: #
|
|
3610
|
+
background-color: #ffffff;
|
|
3611
3611
|
background-clip: padding-box;
|
|
3612
|
-
border: 1px solid #
|
|
3613
|
-
border:
|
|
3614
|
-
border-radius: 4px;
|
|
3612
|
+
border: 1px solid #ffffff;
|
|
3613
|
+
border-radius: 6px;
|
|
3615
3614
|
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
|
3616
3615
|
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
|
3617
3616
|
}
|
|
@@ -3621,37 +3620,37 @@ tbody.collapse.in {
|
|
|
3621
3620
|
}
|
|
3622
3621
|
.dropdown-menu .divider {
|
|
3623
3622
|
height: 1px;
|
|
3624
|
-
margin:
|
|
3623
|
+
margin: 11px 0;
|
|
3625
3624
|
overflow: hidden;
|
|
3626
|
-
background-color: #
|
|
3625
|
+
background-color: #d8d8d8;
|
|
3627
3626
|
}
|
|
3628
3627
|
.dropdown-menu > li > a {
|
|
3629
3628
|
display: block;
|
|
3630
3629
|
padding: 3px 20px;
|
|
3631
3630
|
clear: both;
|
|
3632
3631
|
font-weight: 400;
|
|
3633
|
-
line-height: 1.
|
|
3634
|
-
color: #
|
|
3632
|
+
line-height: 1.71428572;
|
|
3633
|
+
color: #1a1a1a;
|
|
3635
3634
|
white-space: nowrap;
|
|
3636
3635
|
}
|
|
3637
3636
|
.dropdown-menu > li > a:hover,
|
|
3638
3637
|
.dropdown-menu > li > a:focus {
|
|
3639
|
-
color: #
|
|
3638
|
+
color: #1a1a1a;
|
|
3640
3639
|
text-decoration: none;
|
|
3641
|
-
background-color:
|
|
3640
|
+
background-color: rgba(0, 125, 255, 0.1);
|
|
3642
3641
|
}
|
|
3643
3642
|
.dropdown-menu > .active > a,
|
|
3644
3643
|
.dropdown-menu > .active > a:hover,
|
|
3645
3644
|
.dropdown-menu > .active > a:focus {
|
|
3646
|
-
color: #
|
|
3645
|
+
color: #007dff;
|
|
3647
3646
|
text-decoration: none;
|
|
3648
|
-
background-color:
|
|
3647
|
+
background-color: rgba(0, 125, 255, 0.1);
|
|
3649
3648
|
outline: 0;
|
|
3650
3649
|
}
|
|
3651
3650
|
.dropdown-menu > .disabled > a,
|
|
3652
3651
|
.dropdown-menu > .disabled > a:hover,
|
|
3653
3652
|
.dropdown-menu > .disabled > a:focus {
|
|
3654
|
-
color: #
|
|
3653
|
+
color: #999999;
|
|
3655
3654
|
}
|
|
3656
3655
|
.dropdown-menu > .disabled > a:hover,
|
|
3657
3656
|
.dropdown-menu > .disabled > a:focus {
|
|
@@ -3679,8 +3678,8 @@ tbody.collapse.in {
|
|
|
3679
3678
|
display: block;
|
|
3680
3679
|
padding: 3px 20px;
|
|
3681
3680
|
font-size: 12px;
|
|
3682
|
-
line-height: 1.
|
|
3683
|
-
color: #
|
|
3681
|
+
line-height: 1.71428572;
|
|
3682
|
+
color: #505d68;
|
|
3684
3683
|
white-space: nowrap;
|
|
3685
3684
|
}
|
|
3686
3685
|
.dropdown-backdrop {
|
|
@@ -3699,8 +3698,8 @@ tbody.collapse.in {
|
|
|
3699
3698
|
.navbar-fixed-bottom .dropdown .caret {
|
|
3700
3699
|
content: "";
|
|
3701
3700
|
border-top: 0;
|
|
3702
|
-
border-bottom:
|
|
3703
|
-
border-bottom:
|
|
3701
|
+
border-bottom: 6px dashed;
|
|
3702
|
+
border-bottom: 6px solid \9;
|
|
3704
3703
|
}
|
|
3705
3704
|
.dropup .dropdown-menu,
|
|
3706
3705
|
.navbar-fixed-bottom .dropdown .dropdown-menu {
|
|
@@ -3812,11 +3811,11 @@ tbody.collapse.in {
|
|
|
3812
3811
|
margin-left: 0;
|
|
3813
3812
|
}
|
|
3814
3813
|
.btn-lg .caret {
|
|
3815
|
-
border-width:
|
|
3814
|
+
border-width: 6px 6px 0;
|
|
3816
3815
|
border-bottom-width: 0;
|
|
3817
3816
|
}
|
|
3818
3817
|
.dropup .btn-lg .caret {
|
|
3819
|
-
border-width: 0
|
|
3818
|
+
border-width: 0 6px 6px;
|
|
3820
3819
|
}
|
|
3821
3820
|
.btn-group-vertical > .btn,
|
|
3822
3821
|
.btn-group-vertical > .btn-group,
|
|
@@ -3840,16 +3839,16 @@ tbody.collapse.in {
|
|
|
3840
3839
|
border-radius: 0;
|
|
3841
3840
|
}
|
|
3842
3841
|
.btn-group-vertical > .btn:first-child:not(:last-child) {
|
|
3843
|
-
border-top-left-radius:
|
|
3844
|
-
border-top-right-radius:
|
|
3842
|
+
border-top-left-radius: 10px;
|
|
3843
|
+
border-top-right-radius: 10px;
|
|
3845
3844
|
border-bottom-right-radius: 0;
|
|
3846
3845
|
border-bottom-left-radius: 0;
|
|
3847
3846
|
}
|
|
3848
3847
|
.btn-group-vertical > .btn:last-child:not(:first-child) {
|
|
3849
3848
|
border-top-left-radius: 0;
|
|
3850
3849
|
border-top-right-radius: 0;
|
|
3851
|
-
border-bottom-right-radius:
|
|
3852
|
-
border-bottom-left-radius:
|
|
3850
|
+
border-bottom-right-radius: 10px;
|
|
3851
|
+
border-bottom-left-radius: 10px;
|
|
3853
3852
|
}
|
|
3854
3853
|
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
|
|
3855
3854
|
border-radius: 0;
|
|
@@ -3912,17 +3911,17 @@ tbody.collapse.in {
|
|
|
3912
3911
|
.input-group-lg > .form-control,
|
|
3913
3912
|
.input-group-lg > .input-group-addon,
|
|
3914
3913
|
.input-group-lg > .input-group-btn > .btn {
|
|
3915
|
-
height:
|
|
3916
|
-
padding:
|
|
3917
|
-
font-size:
|
|
3918
|
-
line-height: 1.
|
|
3919
|
-
border-radius:
|
|
3914
|
+
height: 40px;
|
|
3915
|
+
padding: 7px 19px;
|
|
3916
|
+
font-size: 16px;
|
|
3917
|
+
line-height: 1.5;
|
|
3918
|
+
border-radius: 10px;
|
|
3920
3919
|
}
|
|
3921
3920
|
select.input-group-lg > .form-control,
|
|
3922
3921
|
select.input-group-lg > .input-group-addon,
|
|
3923
3922
|
select.input-group-lg > .input-group-btn > .btn {
|
|
3924
|
-
height:
|
|
3925
|
-
line-height:
|
|
3923
|
+
height: 40px;
|
|
3924
|
+
line-height: 40px;
|
|
3926
3925
|
}
|
|
3927
3926
|
textarea.input-group-lg > .form-control,
|
|
3928
3927
|
textarea.input-group-lg > .input-group-addon,
|
|
@@ -3935,17 +3934,17 @@ select[multiple].input-group-lg > .input-group-btn > .btn {
|
|
|
3935
3934
|
.input-group-sm > .form-control,
|
|
3936
3935
|
.input-group-sm > .input-group-addon,
|
|
3937
3936
|
.input-group-sm > .input-group-btn > .btn {
|
|
3938
|
-
height:
|
|
3939
|
-
padding: 5px
|
|
3937
|
+
height: 34px;
|
|
3938
|
+
padding: 5px 5px;
|
|
3940
3939
|
font-size: 12px;
|
|
3941
|
-
line-height:
|
|
3942
|
-
border-radius:
|
|
3940
|
+
line-height: 2;
|
|
3941
|
+
border-radius: 6px;
|
|
3943
3942
|
}
|
|
3944
3943
|
select.input-group-sm > .form-control,
|
|
3945
3944
|
select.input-group-sm > .input-group-addon,
|
|
3946
3945
|
select.input-group-sm > .input-group-btn > .btn {
|
|
3947
|
-
height:
|
|
3948
|
-
line-height:
|
|
3946
|
+
height: 34px;
|
|
3947
|
+
line-height: 34px;
|
|
3949
3948
|
}
|
|
3950
3949
|
textarea.input-group-sm > .form-control,
|
|
3951
3950
|
textarea.input-group-sm > .input-group-addon,
|
|
@@ -3972,25 +3971,25 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
|
3972
3971
|
vertical-align: middle;
|
|
3973
3972
|
}
|
|
3974
3973
|
.input-group-addon {
|
|
3975
|
-
padding:
|
|
3974
|
+
padding: 7px 19px;
|
|
3976
3975
|
font-size: 14px;
|
|
3977
3976
|
font-weight: 400;
|
|
3978
3977
|
line-height: 1;
|
|
3979
|
-
color: #
|
|
3978
|
+
color: #1a1a1a;
|
|
3980
3979
|
text-align: center;
|
|
3981
|
-
background-color: #
|
|
3982
|
-
border: 1px solid #
|
|
3983
|
-
border-radius:
|
|
3980
|
+
background-color: #ffffff;
|
|
3981
|
+
border: 1px solid #d8d8d8;
|
|
3982
|
+
border-radius: 10px;
|
|
3984
3983
|
}
|
|
3985
3984
|
.input-group-addon.input-sm {
|
|
3986
|
-
padding: 5px
|
|
3985
|
+
padding: 5px 5px;
|
|
3987
3986
|
font-size: 12px;
|
|
3988
|
-
border-radius:
|
|
3987
|
+
border-radius: 6px;
|
|
3989
3988
|
}
|
|
3990
3989
|
.input-group-addon.input-lg {
|
|
3991
|
-
padding:
|
|
3992
|
-
font-size:
|
|
3993
|
-
border-radius:
|
|
3990
|
+
padding: 7px 19px;
|
|
3991
|
+
font-size: 16px;
|
|
3992
|
+
border-radius: 10px;
|
|
3994
3993
|
}
|
|
3995
3994
|
.input-group-addon input[type="radio"],
|
|
3996
3995
|
.input-group-addon input[type="checkbox"] {
|
|
@@ -4059,19 +4058,19 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
|
4059
4058
|
.nav > li > a {
|
|
4060
4059
|
position: relative;
|
|
4061
4060
|
display: block;
|
|
4062
|
-
padding:
|
|
4061
|
+
padding: 8px 20px;
|
|
4063
4062
|
}
|
|
4064
4063
|
.nav > li > a:hover,
|
|
4065
4064
|
.nav > li > a:focus {
|
|
4066
4065
|
text-decoration: none;
|
|
4067
|
-
background-color:
|
|
4066
|
+
background-color: rgba(0, 125, 255, 0.1);
|
|
4068
4067
|
}
|
|
4069
4068
|
.nav > li.disabled > a {
|
|
4070
|
-
color: #
|
|
4069
|
+
color: #999999;
|
|
4071
4070
|
}
|
|
4072
4071
|
.nav > li.disabled > a:hover,
|
|
4073
4072
|
.nav > li.disabled > a:focus {
|
|
4074
|
-
color: #
|
|
4073
|
+
color: #999999;
|
|
4075
4074
|
text-decoration: none;
|
|
4076
4075
|
cursor: not-allowed;
|
|
4077
4076
|
background-color: transparent;
|
|
@@ -4079,12 +4078,12 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
|
4079
4078
|
.nav .open > a,
|
|
4080
4079
|
.nav .open > a:hover,
|
|
4081
4080
|
.nav .open > a:focus {
|
|
4082
|
-
background-color:
|
|
4083
|
-
border-color: #
|
|
4081
|
+
background-color: rgba(0, 125, 255, 0.1);
|
|
4082
|
+
border-color: #005EBF;
|
|
4084
4083
|
}
|
|
4085
4084
|
.nav .nav-divider {
|
|
4086
4085
|
height: 1px;
|
|
4087
|
-
margin:
|
|
4086
|
+
margin: 11px 0;
|
|
4088
4087
|
overflow: hidden;
|
|
4089
4088
|
background-color: #e5e5e5;
|
|
4090
4089
|
}
|
|
@@ -4092,7 +4091,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
|
4092
4091
|
max-width: none;
|
|
4093
4092
|
}
|
|
4094
4093
|
.nav-tabs {
|
|
4095
|
-
border-bottom: 1px solid #
|
|
4094
|
+
border-bottom: 1px solid #d8d8d8;
|
|
4096
4095
|
}
|
|
4097
4096
|
.nav-tabs > li {
|
|
4098
4097
|
float: left;
|
|
@@ -4100,20 +4099,20 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
|
4100
4099
|
}
|
|
4101
4100
|
.nav-tabs > li > a {
|
|
4102
4101
|
margin-right: 2px;
|
|
4103
|
-
line-height: 1.
|
|
4102
|
+
line-height: 1.71428572;
|
|
4104
4103
|
border: 1px solid transparent;
|
|
4105
|
-
border-radius:
|
|
4104
|
+
border-radius: 6px 6px 0 0;
|
|
4106
4105
|
}
|
|
4107
4106
|
.nav-tabs > li > a:hover {
|
|
4108
|
-
border-color: #
|
|
4107
|
+
border-color: #d8d8d8 #d8d8d8 #d8d8d8;
|
|
4109
4108
|
}
|
|
4110
4109
|
.nav-tabs > li.active > a,
|
|
4111
4110
|
.nav-tabs > li.active > a:hover,
|
|
4112
4111
|
.nav-tabs > li.active > a:focus {
|
|
4113
|
-
color: #
|
|
4112
|
+
color: #007dff;
|
|
4114
4113
|
cursor: default;
|
|
4115
|
-
background-color: #
|
|
4116
|
-
border: 1px solid #
|
|
4114
|
+
background-color: #ffffff;
|
|
4115
|
+
border: 1px solid #d8d8d8;
|
|
4117
4116
|
border-bottom-color: transparent;
|
|
4118
4117
|
}
|
|
4119
4118
|
.nav-tabs.nav-justified {
|
|
@@ -4142,29 +4141,29 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
|
4142
4141
|
}
|
|
4143
4142
|
.nav-tabs.nav-justified > li > a {
|
|
4144
4143
|
margin-right: 0;
|
|
4145
|
-
border-radius:
|
|
4144
|
+
border-radius: 6px;
|
|
4146
4145
|
}
|
|
4147
4146
|
.nav-tabs.nav-justified > .active > a,
|
|
4148
4147
|
.nav-tabs.nav-justified > .active > a:hover,
|
|
4149
4148
|
.nav-tabs.nav-justified > .active > a:focus {
|
|
4150
|
-
border: 1px solid #
|
|
4149
|
+
border: 1px solid #d8d8d8;
|
|
4151
4150
|
}
|
|
4152
4151
|
@media (min-width: 768px) {
|
|
4153
4152
|
.nav-tabs.nav-justified > li > a {
|
|
4154
|
-
border-bottom: 1px solid #
|
|
4155
|
-
border-radius:
|
|
4153
|
+
border-bottom: 1px solid #d8d8d8;
|
|
4154
|
+
border-radius: 6px 6px 0 0;
|
|
4156
4155
|
}
|
|
4157
4156
|
.nav-tabs.nav-justified > .active > a,
|
|
4158
4157
|
.nav-tabs.nav-justified > .active > a:hover,
|
|
4159
4158
|
.nav-tabs.nav-justified > .active > a:focus {
|
|
4160
|
-
border-bottom-color: #
|
|
4159
|
+
border-bottom-color: #d8d8d8;
|
|
4161
4160
|
}
|
|
4162
4161
|
}
|
|
4163
4162
|
.nav-pills > li {
|
|
4164
4163
|
float: left;
|
|
4165
4164
|
}
|
|
4166
4165
|
.nav-pills > li > a {
|
|
4167
|
-
border-radius:
|
|
4166
|
+
border-radius: 10px;
|
|
4168
4167
|
}
|
|
4169
4168
|
.nav-pills > li + li {
|
|
4170
4169
|
margin-left: 2px;
|
|
@@ -4172,8 +4171,8 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
|
4172
4171
|
.nav-pills > li.active > a,
|
|
4173
4172
|
.nav-pills > li.active > a:hover,
|
|
4174
4173
|
.nav-pills > li.active > a:focus {
|
|
4175
|
-
color: #
|
|
4176
|
-
background-color:
|
|
4174
|
+
color: #007dff;
|
|
4175
|
+
background-color: rgba(0, 125, 255, 0.1);
|
|
4177
4176
|
}
|
|
4178
4177
|
.nav-stacked > li {
|
|
4179
4178
|
float: none;
|
|
@@ -4210,22 +4209,22 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
|
4210
4209
|
}
|
|
4211
4210
|
.nav-tabs-justified > li > a {
|
|
4212
4211
|
margin-right: 0;
|
|
4213
|
-
border-radius:
|
|
4212
|
+
border-radius: 6px;
|
|
4214
4213
|
}
|
|
4215
4214
|
.nav-tabs-justified > .active > a,
|
|
4216
4215
|
.nav-tabs-justified > .active > a:hover,
|
|
4217
4216
|
.nav-tabs-justified > .active > a:focus {
|
|
4218
|
-
border: 1px solid #
|
|
4217
|
+
border: 1px solid #d8d8d8;
|
|
4219
4218
|
}
|
|
4220
4219
|
@media (min-width: 768px) {
|
|
4221
4220
|
.nav-tabs-justified > li > a {
|
|
4222
|
-
border-bottom: 1px solid #
|
|
4223
|
-
border-radius:
|
|
4221
|
+
border-bottom: 1px solid #d8d8d8;
|
|
4222
|
+
border-radius: 6px 6px 0 0;
|
|
4224
4223
|
}
|
|
4225
4224
|
.nav-tabs-justified > .active > a,
|
|
4226
4225
|
.nav-tabs-justified > .active > a:hover,
|
|
4227
4226
|
.nav-tabs-justified > .active > a:focus {
|
|
4228
|
-
border-bottom-color: #
|
|
4227
|
+
border-bottom-color: #d8d8d8;
|
|
4229
4228
|
}
|
|
4230
4229
|
}
|
|
4231
4230
|
.tab-content > .tab-pane {
|
|
@@ -4241,13 +4240,13 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
|
4241
4240
|
}
|
|
4242
4241
|
.navbar {
|
|
4243
4242
|
position: relative;
|
|
4244
|
-
min-height:
|
|
4243
|
+
min-height: 48px;
|
|
4245
4244
|
margin-bottom: 20px;
|
|
4246
4245
|
border: 1px solid transparent;
|
|
4247
4246
|
}
|
|
4248
4247
|
@media (min-width: 768px) {
|
|
4249
4248
|
.navbar {
|
|
4250
|
-
border-radius:
|
|
4249
|
+
border-radius: 10px;
|
|
4251
4250
|
}
|
|
4252
4251
|
}
|
|
4253
4252
|
@media (min-width: 768px) {
|
|
@@ -4256,8 +4255,8 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
|
4256
4255
|
}
|
|
4257
4256
|
}
|
|
4258
4257
|
.navbar-collapse {
|
|
4259
|
-
padding-right:
|
|
4260
|
-
padding-left:
|
|
4258
|
+
padding-right: 20px;
|
|
4259
|
+
padding-left: 20px;
|
|
4261
4260
|
overflow-x: visible;
|
|
4262
4261
|
border-top: 1px solid transparent;
|
|
4263
4262
|
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
|
|
@@ -4326,8 +4325,8 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
|
4326
4325
|
.container-fluid > .navbar-header,
|
|
4327
4326
|
.container > .navbar-collapse,
|
|
4328
4327
|
.container-fluid > .navbar-collapse {
|
|
4329
|
-
margin-right: -
|
|
4330
|
-
margin-left: -
|
|
4328
|
+
margin-right: -20px;
|
|
4329
|
+
margin-left: -20px;
|
|
4331
4330
|
}
|
|
4332
4331
|
@media (min-width: 768px) {
|
|
4333
4332
|
.container > .navbar-header,
|
|
@@ -4349,10 +4348,10 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
|
4349
4348
|
}
|
|
4350
4349
|
.navbar-brand {
|
|
4351
4350
|
float: left;
|
|
4352
|
-
height:
|
|
4353
|
-
padding:
|
|
4354
|
-
font-size:
|
|
4355
|
-
line-height:
|
|
4351
|
+
height: 48px;
|
|
4352
|
+
padding: 12px 20px;
|
|
4353
|
+
font-size: 16px;
|
|
4354
|
+
line-height: 24px;
|
|
4356
4355
|
}
|
|
4357
4356
|
.navbar-brand:hover,
|
|
4358
4357
|
.navbar-brand:focus {
|
|
@@ -4364,20 +4363,20 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
|
4364
4363
|
@media (min-width: 768px) {
|
|
4365
4364
|
.navbar > .container .navbar-brand,
|
|
4366
4365
|
.navbar > .container-fluid .navbar-brand {
|
|
4367
|
-
margin-left: -
|
|
4366
|
+
margin-left: -20px;
|
|
4368
4367
|
}
|
|
4369
4368
|
}
|
|
4370
4369
|
.navbar-toggle {
|
|
4371
4370
|
position: relative;
|
|
4372
4371
|
float: right;
|
|
4373
4372
|
padding: 9px 10px;
|
|
4374
|
-
margin-right:
|
|
4375
|
-
margin-top:
|
|
4376
|
-
margin-bottom:
|
|
4373
|
+
margin-right: 20px;
|
|
4374
|
+
margin-top: 7px;
|
|
4375
|
+
margin-bottom: 7px;
|
|
4377
4376
|
background-color: transparent;
|
|
4378
4377
|
background-image: none;
|
|
4379
4378
|
border: 1px solid transparent;
|
|
4380
|
-
border-radius:
|
|
4379
|
+
border-radius: 6px;
|
|
4381
4380
|
}
|
|
4382
4381
|
.navbar-toggle:focus {
|
|
4383
4382
|
outline: 0;
|
|
@@ -4397,12 +4396,12 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
|
4397
4396
|
}
|
|
4398
4397
|
}
|
|
4399
4398
|
.navbar-nav {
|
|
4400
|
-
margin:
|
|
4399
|
+
margin: 6px -20px;
|
|
4401
4400
|
}
|
|
4402
4401
|
.navbar-nav > li > a {
|
|
4403
4402
|
padding-top: 10px;
|
|
4404
4403
|
padding-bottom: 10px;
|
|
4405
|
-
line-height:
|
|
4404
|
+
line-height: 24px;
|
|
4406
4405
|
}
|
|
4407
4406
|
@media (max-width: 767px) {
|
|
4408
4407
|
.navbar-nav .open .dropdown-menu {
|
|
@@ -4420,7 +4419,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
|
4420
4419
|
padding: 5px 15px 5px 25px;
|
|
4421
4420
|
}
|
|
4422
4421
|
.navbar-nav .open .dropdown-menu > li > a {
|
|
4423
|
-
line-height:
|
|
4422
|
+
line-height: 24px;
|
|
4424
4423
|
}
|
|
4425
4424
|
.navbar-nav .open .dropdown-menu > li > a:hover,
|
|
4426
4425
|
.navbar-nav .open .dropdown-menu > li > a:focus {
|
|
@@ -4436,20 +4435,20 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
|
4436
4435
|
float: left;
|
|
4437
4436
|
}
|
|
4438
4437
|
.navbar-nav > li > a {
|
|
4439
|
-
padding-top:
|
|
4440
|
-
padding-bottom:
|
|
4438
|
+
padding-top: 12px;
|
|
4439
|
+
padding-bottom: 12px;
|
|
4441
4440
|
}
|
|
4442
4441
|
}
|
|
4443
4442
|
.navbar-form {
|
|
4444
|
-
padding: 10px
|
|
4445
|
-
margin-right: -
|
|
4446
|
-
margin-left: -
|
|
4443
|
+
padding: 10px 20px;
|
|
4444
|
+
margin-right: -20px;
|
|
4445
|
+
margin-left: -20px;
|
|
4447
4446
|
border-top: 1px solid transparent;
|
|
4448
4447
|
border-bottom: 1px solid transparent;
|
|
4449
4448
|
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
|
|
4450
4449
|
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
|
|
4451
|
-
margin-top:
|
|
4452
|
-
margin-bottom:
|
|
4450
|
+
margin-top: 4px;
|
|
4451
|
+
margin-bottom: 4px;
|
|
4453
4452
|
}
|
|
4454
4453
|
@media (min-width: 768px) {
|
|
4455
4454
|
.navbar-form .form-group {
|
|
@@ -4528,32 +4527,32 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
|
4528
4527
|
}
|
|
4529
4528
|
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
|
|
4530
4529
|
margin-bottom: 0;
|
|
4531
|
-
border-top-left-radius:
|
|
4532
|
-
border-top-right-radius:
|
|
4530
|
+
border-top-left-radius: 10px;
|
|
4531
|
+
border-top-right-radius: 10px;
|
|
4533
4532
|
border-bottom-right-radius: 0;
|
|
4534
4533
|
border-bottom-left-radius: 0;
|
|
4535
4534
|
}
|
|
4536
4535
|
.navbar-btn {
|
|
4537
|
-
margin-top:
|
|
4538
|
-
margin-bottom:
|
|
4536
|
+
margin-top: 4px;
|
|
4537
|
+
margin-bottom: 4px;
|
|
4539
4538
|
}
|
|
4540
4539
|
.navbar-btn.btn-sm {
|
|
4541
|
-
margin-top:
|
|
4542
|
-
margin-bottom:
|
|
4540
|
+
margin-top: 7px;
|
|
4541
|
+
margin-bottom: 7px;
|
|
4543
4542
|
}
|
|
4544
4543
|
.navbar-btn.btn-xs {
|
|
4545
|
-
margin-top:
|
|
4546
|
-
margin-bottom:
|
|
4544
|
+
margin-top: 13px;
|
|
4545
|
+
margin-bottom: 13px;
|
|
4547
4546
|
}
|
|
4548
4547
|
.navbar-text {
|
|
4549
|
-
margin-top:
|
|
4550
|
-
margin-bottom:
|
|
4548
|
+
margin-top: 12px;
|
|
4549
|
+
margin-bottom: 12px;
|
|
4551
4550
|
}
|
|
4552
4551
|
@media (min-width: 768px) {
|
|
4553
4552
|
.navbar-text {
|
|
4554
4553
|
float: left;
|
|
4555
|
-
margin-right:
|
|
4556
|
-
margin-left:
|
|
4554
|
+
margin-right: 20px;
|
|
4555
|
+
margin-left: 20px;
|
|
4557
4556
|
}
|
|
4558
4557
|
}
|
|
4559
4558
|
@media (min-width: 768px) {
|
|
@@ -4562,233 +4561,233 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
|
4562
4561
|
}
|
|
4563
4562
|
.navbar-right {
|
|
4564
4563
|
float: right !important;
|
|
4565
|
-
margin-right: -
|
|
4564
|
+
margin-right: -20px;
|
|
4566
4565
|
}
|
|
4567
4566
|
.navbar-right ~ .navbar-right {
|
|
4568
4567
|
margin-right: 0;
|
|
4569
4568
|
}
|
|
4570
4569
|
}
|
|
4571
4570
|
.navbar-default {
|
|
4572
|
-
background-color: #
|
|
4573
|
-
border-color: #
|
|
4571
|
+
background-color: #f4f4f4;
|
|
4572
|
+
border-color: #f4f4f4;
|
|
4574
4573
|
}
|
|
4575
4574
|
.navbar-default .navbar-brand {
|
|
4576
|
-
color: #
|
|
4575
|
+
color: #6f6f6f;
|
|
4577
4576
|
}
|
|
4578
4577
|
.navbar-default .navbar-brand:hover,
|
|
4579
4578
|
.navbar-default .navbar-brand:focus {
|
|
4580
|
-
color: #
|
|
4579
|
+
color: #007dff;
|
|
4581
4580
|
background-color: transparent;
|
|
4582
4581
|
}
|
|
4583
4582
|
.navbar-default .navbar-text {
|
|
4584
|
-
color: #
|
|
4583
|
+
color: #1a1a1a;
|
|
4585
4584
|
}
|
|
4586
4585
|
.navbar-default .navbar-nav > li > a {
|
|
4587
|
-
color: #
|
|
4586
|
+
color: #6f6f6f;
|
|
4588
4587
|
}
|
|
4589
4588
|
.navbar-default .navbar-nav > li > a:hover,
|
|
4590
4589
|
.navbar-default .navbar-nav > li > a:focus {
|
|
4591
|
-
color: #
|
|
4590
|
+
color: #007dff;
|
|
4592
4591
|
background-color: transparent;
|
|
4593
4592
|
}
|
|
4594
4593
|
.navbar-default .navbar-nav > .active > a,
|
|
4595
4594
|
.navbar-default .navbar-nav > .active > a:hover,
|
|
4596
4595
|
.navbar-default .navbar-nav > .active > a:focus {
|
|
4597
|
-
color: #
|
|
4598
|
-
background-color:
|
|
4596
|
+
color: #007dff;
|
|
4597
|
+
background-color: transparent;
|
|
4599
4598
|
}
|
|
4600
4599
|
.navbar-default .navbar-nav > .disabled > a,
|
|
4601
4600
|
.navbar-default .navbar-nav > .disabled > a:hover,
|
|
4602
4601
|
.navbar-default .navbar-nav > .disabled > a:focus {
|
|
4603
|
-
color: #
|
|
4602
|
+
color: #999999;
|
|
4604
4603
|
background-color: transparent;
|
|
4605
4604
|
}
|
|
4606
4605
|
.navbar-default .navbar-nav > .open > a,
|
|
4607
4606
|
.navbar-default .navbar-nav > .open > a:hover,
|
|
4608
4607
|
.navbar-default .navbar-nav > .open > a:focus {
|
|
4609
|
-
color: #
|
|
4610
|
-
background-color:
|
|
4608
|
+
color: #007dff;
|
|
4609
|
+
background-color: transparent;
|
|
4611
4610
|
}
|
|
4612
4611
|
@media (max-width: 767px) {
|
|
4613
4612
|
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
|
|
4614
|
-
color: #
|
|
4613
|
+
color: #6f6f6f;
|
|
4615
4614
|
}
|
|
4616
4615
|
.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
|
|
4617
4616
|
.navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
|
|
4618
|
-
color: #
|
|
4617
|
+
color: #007dff;
|
|
4619
4618
|
background-color: transparent;
|
|
4620
4619
|
}
|
|
4621
4620
|
.navbar-default .navbar-nav .open .dropdown-menu > .active > a,
|
|
4622
4621
|
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
|
|
4623
4622
|
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
|
|
4624
|
-
color: #
|
|
4625
|
-
background-color:
|
|
4623
|
+
color: #007dff;
|
|
4624
|
+
background-color: transparent;
|
|
4626
4625
|
}
|
|
4627
4626
|
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
|
|
4628
4627
|
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
|
|
4629
4628
|
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
|
|
4630
|
-
color: #
|
|
4629
|
+
color: #999999;
|
|
4631
4630
|
background-color: transparent;
|
|
4632
4631
|
}
|
|
4633
4632
|
}
|
|
4634
4633
|
.navbar-default .navbar-toggle {
|
|
4635
|
-
border-color:
|
|
4634
|
+
border-color: transparent;
|
|
4636
4635
|
}
|
|
4637
4636
|
.navbar-default .navbar-toggle:hover,
|
|
4638
4637
|
.navbar-default .navbar-toggle:focus {
|
|
4639
|
-
background-color:
|
|
4638
|
+
background-color: transparent;
|
|
4640
4639
|
}
|
|
4641
4640
|
.navbar-default .navbar-toggle .icon-bar {
|
|
4642
|
-
background-color:
|
|
4641
|
+
background-color: transparent;
|
|
4643
4642
|
}
|
|
4644
4643
|
.navbar-default .navbar-collapse,
|
|
4645
4644
|
.navbar-default .navbar-form {
|
|
4646
|
-
border-color: #
|
|
4645
|
+
border-color: #f4f4f4;
|
|
4647
4646
|
}
|
|
4648
4647
|
.navbar-default .navbar-link {
|
|
4649
|
-
color: #
|
|
4648
|
+
color: #6f6f6f;
|
|
4650
4649
|
}
|
|
4651
4650
|
.navbar-default .navbar-link:hover {
|
|
4652
|
-
color: #
|
|
4651
|
+
color: #007dff;
|
|
4653
4652
|
}
|
|
4654
4653
|
.navbar-default .btn-link {
|
|
4655
|
-
color: #
|
|
4654
|
+
color: #6f6f6f;
|
|
4656
4655
|
}
|
|
4657
4656
|
.navbar-default .btn-link:hover,
|
|
4658
4657
|
.navbar-default .btn-link:focus {
|
|
4659
|
-
color: #
|
|
4658
|
+
color: #007dff;
|
|
4660
4659
|
}
|
|
4661
4660
|
.navbar-default .btn-link[disabled]:hover,
|
|
4662
4661
|
fieldset[disabled] .navbar-default .btn-link:hover,
|
|
4663
4662
|
.navbar-default .btn-link[disabled]:focus,
|
|
4664
4663
|
fieldset[disabled] .navbar-default .btn-link:focus {
|
|
4665
|
-
color: #
|
|
4664
|
+
color: #999999;
|
|
4666
4665
|
}
|
|
4667
4666
|
.navbar-inverse {
|
|
4668
|
-
background-color: #
|
|
4669
|
-
border-color: #
|
|
4667
|
+
background-color: #121a25;
|
|
4668
|
+
border-color: #121a25;
|
|
4670
4669
|
}
|
|
4671
4670
|
.navbar-inverse .navbar-brand {
|
|
4672
|
-
color: #
|
|
4671
|
+
color: #505d68;
|
|
4673
4672
|
}
|
|
4674
4673
|
.navbar-inverse .navbar-brand:hover,
|
|
4675
4674
|
.navbar-inverse .navbar-brand:focus {
|
|
4676
|
-
color: #
|
|
4675
|
+
color: #e07807;
|
|
4677
4676
|
background-color: transparent;
|
|
4678
4677
|
}
|
|
4679
4678
|
.navbar-inverse .navbar-text {
|
|
4680
|
-
color: #
|
|
4679
|
+
color: #ffffff;
|
|
4681
4680
|
}
|
|
4682
4681
|
.navbar-inverse .navbar-nav > li > a {
|
|
4683
|
-
color: #
|
|
4682
|
+
color: #505d68;
|
|
4684
4683
|
}
|
|
4685
4684
|
.navbar-inverse .navbar-nav > li > a:hover,
|
|
4686
4685
|
.navbar-inverse .navbar-nav > li > a:focus {
|
|
4687
|
-
color: #
|
|
4686
|
+
color: #e07807;
|
|
4688
4687
|
background-color: transparent;
|
|
4689
4688
|
}
|
|
4690
4689
|
.navbar-inverse .navbar-nav > .active > a,
|
|
4691
4690
|
.navbar-inverse .navbar-nav > .active > a:hover,
|
|
4692
4691
|
.navbar-inverse .navbar-nav > .active > a:focus {
|
|
4693
|
-
color: #
|
|
4694
|
-
background-color: #
|
|
4692
|
+
color: #e07807;
|
|
4693
|
+
background-color: #151e2a;
|
|
4695
4694
|
}
|
|
4696
4695
|
.navbar-inverse .navbar-nav > .disabled > a,
|
|
4697
4696
|
.navbar-inverse .navbar-nav > .disabled > a:hover,
|
|
4698
4697
|
.navbar-inverse .navbar-nav > .disabled > a:focus {
|
|
4699
|
-
color: #
|
|
4698
|
+
color: #505d68;
|
|
4700
4699
|
background-color: transparent;
|
|
4701
4700
|
}
|
|
4702
4701
|
.navbar-inverse .navbar-nav > .open > a,
|
|
4703
4702
|
.navbar-inverse .navbar-nav > .open > a:hover,
|
|
4704
4703
|
.navbar-inverse .navbar-nav > .open > a:focus {
|
|
4705
|
-
color: #
|
|
4706
|
-
background-color: #
|
|
4704
|
+
color: #e07807;
|
|
4705
|
+
background-color: #151e2a;
|
|
4707
4706
|
}
|
|
4708
4707
|
@media (max-width: 767px) {
|
|
4709
4708
|
.navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
|
|
4710
|
-
border-color: #
|
|
4709
|
+
border-color: #121a25;
|
|
4711
4710
|
}
|
|
4712
4711
|
.navbar-inverse .navbar-nav .open .dropdown-menu .divider {
|
|
4713
|
-
background-color: #
|
|
4712
|
+
background-color: #121a25;
|
|
4714
4713
|
}
|
|
4715
4714
|
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
|
|
4716
|
-
color: #
|
|
4715
|
+
color: #505d68;
|
|
4717
4716
|
}
|
|
4718
4717
|
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
|
|
4719
4718
|
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
|
|
4720
|
-
color: #
|
|
4719
|
+
color: #e07807;
|
|
4721
4720
|
background-color: transparent;
|
|
4722
4721
|
}
|
|
4723
4722
|
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
|
|
4724
4723
|
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
|
|
4725
4724
|
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
|
|
4726
|
-
color: #
|
|
4727
|
-
background-color: #
|
|
4725
|
+
color: #e07807;
|
|
4726
|
+
background-color: #151e2a;
|
|
4728
4727
|
}
|
|
4729
4728
|
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
|
|
4730
4729
|
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
|
|
4731
4730
|
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
|
|
4732
|
-
color: #
|
|
4731
|
+
color: #505d68;
|
|
4733
4732
|
background-color: transparent;
|
|
4734
4733
|
}
|
|
4735
4734
|
}
|
|
4736
4735
|
.navbar-inverse .navbar-toggle {
|
|
4737
|
-
border-color: #
|
|
4736
|
+
border-color: #151e2a;
|
|
4738
4737
|
}
|
|
4739
4738
|
.navbar-inverse .navbar-toggle:hover,
|
|
4740
4739
|
.navbar-inverse .navbar-toggle:focus {
|
|
4741
|
-
background-color: #
|
|
4740
|
+
background-color: #151e2a;
|
|
4742
4741
|
}
|
|
4743
4742
|
.navbar-inverse .navbar-toggle .icon-bar {
|
|
4744
|
-
background-color: #
|
|
4743
|
+
background-color: #151e2a;
|
|
4745
4744
|
}
|
|
4746
4745
|
.navbar-inverse .navbar-collapse,
|
|
4747
4746
|
.navbar-inverse .navbar-form {
|
|
4748
|
-
border-color: #
|
|
4747
|
+
border-color: #06090d;
|
|
4749
4748
|
}
|
|
4750
4749
|
.navbar-inverse .navbar-link {
|
|
4751
|
-
color: #
|
|
4750
|
+
color: #505d68;
|
|
4752
4751
|
}
|
|
4753
4752
|
.navbar-inverse .navbar-link:hover {
|
|
4754
|
-
color: #
|
|
4753
|
+
color: #e07807;
|
|
4755
4754
|
}
|
|
4756
4755
|
.navbar-inverse .btn-link {
|
|
4757
|
-
color: #
|
|
4756
|
+
color: #505d68;
|
|
4758
4757
|
}
|
|
4759
4758
|
.navbar-inverse .btn-link:hover,
|
|
4760
4759
|
.navbar-inverse .btn-link:focus {
|
|
4761
|
-
color: #
|
|
4760
|
+
color: #e07807;
|
|
4762
4761
|
}
|
|
4763
4762
|
.navbar-inverse .btn-link[disabled]:hover,
|
|
4764
4763
|
fieldset[disabled] .navbar-inverse .btn-link:hover,
|
|
4765
4764
|
.navbar-inverse .btn-link[disabled]:focus,
|
|
4766
4765
|
fieldset[disabled] .navbar-inverse .btn-link:focus {
|
|
4767
|
-
color: #
|
|
4766
|
+
color: #505d68;
|
|
4768
4767
|
}
|
|
4769
4768
|
.breadcrumb {
|
|
4770
|
-
padding: 8px
|
|
4771
|
-
margin-bottom:
|
|
4769
|
+
padding: 8px 20px;
|
|
4770
|
+
margin-bottom: 24px;
|
|
4772
4771
|
list-style: none;
|
|
4773
|
-
background-color: #
|
|
4774
|
-
border-radius:
|
|
4772
|
+
background-color: #f4f4f4;
|
|
4773
|
+
border-radius: 6px;
|
|
4775
4774
|
}
|
|
4776
4775
|
.breadcrumb > li {
|
|
4777
4776
|
display: inline-block;
|
|
4778
4777
|
}
|
|
4779
4778
|
.breadcrumb > li + li:before {
|
|
4780
4779
|
padding: 0 5px;
|
|
4781
|
-
color: #
|
|
4780
|
+
color: #999999;
|
|
4782
4781
|
content: "/\00a0";
|
|
4783
4782
|
}
|
|
4784
4783
|
.breadcrumb > .active {
|
|
4785
|
-
color: #
|
|
4784
|
+
color: #1a1a1a;
|
|
4786
4785
|
}
|
|
4787
4786
|
.pagination {
|
|
4788
4787
|
display: inline-block;
|
|
4789
4788
|
padding-left: 0;
|
|
4790
|
-
margin:
|
|
4791
|
-
border-radius:
|
|
4789
|
+
margin: 24px 0;
|
|
4790
|
+
border-radius: 6px;
|
|
4792
4791
|
}
|
|
4793
4792
|
.pagination > li {
|
|
4794
4793
|
display: inline;
|
|
@@ -4797,33 +4796,33 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
|
|
|
4797
4796
|
.pagination > li > span {
|
|
4798
4797
|
position: relative;
|
|
4799
4798
|
float: left;
|
|
4800
|
-
padding:
|
|
4799
|
+
padding: 7px 19px;
|
|
4801
4800
|
margin-left: -1px;
|
|
4802
|
-
line-height: 1.
|
|
4803
|
-
color: #
|
|
4801
|
+
line-height: 1.71428572;
|
|
4802
|
+
color: #505d68;
|
|
4804
4803
|
text-decoration: none;
|
|
4805
|
-
background-color: #
|
|
4806
|
-
border: 1px solid #
|
|
4804
|
+
background-color: #f4f4f4;
|
|
4805
|
+
border: 1px solid #d8d8d8;
|
|
4807
4806
|
}
|
|
4808
4807
|
.pagination > li > a:hover,
|
|
4809
4808
|
.pagination > li > span:hover,
|
|
4810
4809
|
.pagination > li > a:focus,
|
|
4811
4810
|
.pagination > li > span:focus {
|
|
4812
4811
|
z-index: 2;
|
|
4813
|
-
color: #
|
|
4814
|
-
background-color:
|
|
4815
|
-
border-color: #
|
|
4812
|
+
color: #007dff;
|
|
4813
|
+
background-color: rgba(0, 125, 255, 0.1);
|
|
4814
|
+
border-color: #d8d8d8;
|
|
4816
4815
|
}
|
|
4817
4816
|
.pagination > li:first-child > a,
|
|
4818
4817
|
.pagination > li:first-child > span {
|
|
4819
4818
|
margin-left: 0;
|
|
4820
|
-
border-top-left-radius:
|
|
4821
|
-
border-bottom-left-radius:
|
|
4819
|
+
border-top-left-radius: 6px;
|
|
4820
|
+
border-bottom-left-radius: 6px;
|
|
4822
4821
|
}
|
|
4823
4822
|
.pagination > li:last-child > a,
|
|
4824
4823
|
.pagination > li:last-child > span {
|
|
4825
|
-
border-top-right-radius:
|
|
4826
|
-
border-bottom-right-radius:
|
|
4824
|
+
border-top-right-radius: 6px;
|
|
4825
|
+
border-bottom-right-radius: 6px;
|
|
4827
4826
|
}
|
|
4828
4827
|
.pagination > .active > a,
|
|
4829
4828
|
.pagination > .active > span,
|
|
@@ -4832,10 +4831,10 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
|
|
|
4832
4831
|
.pagination > .active > a:focus,
|
|
4833
4832
|
.pagination > .active > span:focus {
|
|
4834
4833
|
z-index: 3;
|
|
4835
|
-
color: #
|
|
4834
|
+
color: #007dff;
|
|
4836
4835
|
cursor: default;
|
|
4837
|
-
background-color: #
|
|
4838
|
-
border-color: #
|
|
4836
|
+
background-color: #ffffff;
|
|
4837
|
+
border-color: #d8d8d8;
|
|
4839
4838
|
}
|
|
4840
4839
|
.pagination > .disabled > span,
|
|
4841
4840
|
.pagination > .disabled > span:hover,
|
|
@@ -4843,46 +4842,46 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
|
|
|
4843
4842
|
.pagination > .disabled > a,
|
|
4844
4843
|
.pagination > .disabled > a:hover,
|
|
4845
4844
|
.pagination > .disabled > a:focus {
|
|
4846
|
-
color: #
|
|
4845
|
+
color: #999999;
|
|
4847
4846
|
cursor: not-allowed;
|
|
4848
|
-
background-color: #
|
|
4849
|
-
border-color: #
|
|
4847
|
+
background-color: #d8d8d8;
|
|
4848
|
+
border-color: #d8d8d8;
|
|
4850
4849
|
}
|
|
4851
4850
|
.pagination-lg > li > a,
|
|
4852
4851
|
.pagination-lg > li > span {
|
|
4853
|
-
padding:
|
|
4854
|
-
font-size:
|
|
4855
|
-
line-height: 1.
|
|
4852
|
+
padding: 7px 19px;
|
|
4853
|
+
font-size: 16px;
|
|
4854
|
+
line-height: 1.5;
|
|
4856
4855
|
}
|
|
4857
4856
|
.pagination-lg > li:first-child > a,
|
|
4858
4857
|
.pagination-lg > li:first-child > span {
|
|
4859
|
-
border-top-left-radius:
|
|
4860
|
-
border-bottom-left-radius:
|
|
4858
|
+
border-top-left-radius: 10px;
|
|
4859
|
+
border-bottom-left-radius: 10px;
|
|
4861
4860
|
}
|
|
4862
4861
|
.pagination-lg > li:last-child > a,
|
|
4863
4862
|
.pagination-lg > li:last-child > span {
|
|
4864
|
-
border-top-right-radius:
|
|
4865
|
-
border-bottom-right-radius:
|
|
4863
|
+
border-top-right-radius: 10px;
|
|
4864
|
+
border-bottom-right-radius: 10px;
|
|
4866
4865
|
}
|
|
4867
4866
|
.pagination-sm > li > a,
|
|
4868
4867
|
.pagination-sm > li > span {
|
|
4869
|
-
padding: 5px
|
|
4868
|
+
padding: 5px 5px;
|
|
4870
4869
|
font-size: 12px;
|
|
4871
|
-
line-height:
|
|
4870
|
+
line-height: 2;
|
|
4872
4871
|
}
|
|
4873
4872
|
.pagination-sm > li:first-child > a,
|
|
4874
4873
|
.pagination-sm > li:first-child > span {
|
|
4875
|
-
border-top-left-radius:
|
|
4876
|
-
border-bottom-left-radius:
|
|
4874
|
+
border-top-left-radius: 4px;
|
|
4875
|
+
border-bottom-left-radius: 4px;
|
|
4877
4876
|
}
|
|
4878
4877
|
.pagination-sm > li:last-child > a,
|
|
4879
4878
|
.pagination-sm > li:last-child > span {
|
|
4880
|
-
border-top-right-radius:
|
|
4881
|
-
border-bottom-right-radius:
|
|
4879
|
+
border-top-right-radius: 4px;
|
|
4880
|
+
border-bottom-right-radius: 4px;
|
|
4882
4881
|
}
|
|
4883
4882
|
.pager {
|
|
4884
4883
|
padding-left: 0;
|
|
4885
|
-
margin:
|
|
4884
|
+
margin: 24px 0;
|
|
4886
4885
|
text-align: center;
|
|
4887
4886
|
list-style: none;
|
|
4888
4887
|
}
|
|
@@ -4893,14 +4892,14 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
|
|
|
4893
4892
|
.pager li > span {
|
|
4894
4893
|
display: inline-block;
|
|
4895
4894
|
padding: 5px 14px;
|
|
4896
|
-
background-color: #
|
|
4897
|
-
border: 1px solid #
|
|
4898
|
-
border-radius:
|
|
4895
|
+
background-color: #f4f4f4;
|
|
4896
|
+
border: 1px solid #d8d8d8;
|
|
4897
|
+
border-radius: 10px;
|
|
4899
4898
|
}
|
|
4900
4899
|
.pager li > a:hover,
|
|
4901
4900
|
.pager li > a:focus {
|
|
4902
4901
|
text-decoration: none;
|
|
4903
|
-
background-color:
|
|
4902
|
+
background-color: rgba(0, 125, 255, 0.1);
|
|
4904
4903
|
}
|
|
4905
4904
|
.pager .next > a,
|
|
4906
4905
|
.pager .next > span {
|
|
@@ -4914,9 +4913,9 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
|
|
|
4914
4913
|
.pager .disabled > a:hover,
|
|
4915
4914
|
.pager .disabled > a:focus,
|
|
4916
4915
|
.pager .disabled > span {
|
|
4917
|
-
color: #
|
|
4916
|
+
color: #999999;
|
|
4918
4917
|
cursor: not-allowed;
|
|
4919
|
-
background-color: #
|
|
4918
|
+
background-color: #f4f4f4;
|
|
4920
4919
|
}
|
|
4921
4920
|
.label {
|
|
4922
4921
|
display: inline;
|
|
@@ -4924,7 +4923,7 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
|
|
|
4924
4923
|
font-size: 75%;
|
|
4925
4924
|
font-weight: 700;
|
|
4926
4925
|
line-height: 1;
|
|
4927
|
-
color: #
|
|
4926
|
+
color: #ffffff;
|
|
4928
4927
|
text-align: center;
|
|
4929
4928
|
white-space: nowrap;
|
|
4930
4929
|
vertical-align: baseline;
|
|
@@ -4932,7 +4931,7 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
|
|
|
4932
4931
|
}
|
|
4933
4932
|
a.label:hover,
|
|
4934
4933
|
a.label:focus {
|
|
4935
|
-
color: #
|
|
4934
|
+
color: #ffffff;
|
|
4936
4935
|
text-decoration: none;
|
|
4937
4936
|
cursor: pointer;
|
|
4938
4937
|
}
|
|
@@ -4944,59 +4943,59 @@ a.label:focus {
|
|
|
4944
4943
|
top: -1px;
|
|
4945
4944
|
}
|
|
4946
4945
|
.label-default {
|
|
4947
|
-
background-color: #
|
|
4946
|
+
background-color: #999999;
|
|
4948
4947
|
}
|
|
4949
4948
|
.label-default[href]:hover,
|
|
4950
4949
|
.label-default[href]:focus {
|
|
4951
|
-
background-color: #
|
|
4950
|
+
background-color: #808080;
|
|
4952
4951
|
}
|
|
4953
4952
|
.label-primary {
|
|
4954
|
-
background-color: #
|
|
4953
|
+
background-color: #007dff;
|
|
4955
4954
|
}
|
|
4956
4955
|
.label-primary[href]:hover,
|
|
4957
4956
|
.label-primary[href]:focus {
|
|
4958
|
-
background-color: #
|
|
4957
|
+
background-color: #0064cc;
|
|
4959
4958
|
}
|
|
4960
4959
|
.label-success {
|
|
4961
|
-
background-color: #
|
|
4960
|
+
background-color: #098a15;
|
|
4962
4961
|
}
|
|
4963
4962
|
.label-success[href]:hover,
|
|
4964
4963
|
.label-success[href]:focus {
|
|
4965
|
-
background-color: #
|
|
4964
|
+
background-color: #065a0e;
|
|
4966
4965
|
}
|
|
4967
4966
|
.label-info {
|
|
4968
|
-
background-color: #
|
|
4967
|
+
background-color: #007dff;
|
|
4969
4968
|
}
|
|
4970
4969
|
.label-info[href]:hover,
|
|
4971
4970
|
.label-info[href]:focus {
|
|
4972
|
-
background-color: #
|
|
4971
|
+
background-color: #0064cc;
|
|
4973
4972
|
}
|
|
4974
4973
|
.label-warning {
|
|
4975
|
-
background-color: #
|
|
4974
|
+
background-color: #e07807;
|
|
4976
4975
|
}
|
|
4977
4976
|
.label-warning[href]:hover,
|
|
4978
4977
|
.label-warning[href]:focus {
|
|
4979
|
-
background-color: #
|
|
4978
|
+
background-color: #af5e05;
|
|
4980
4979
|
}
|
|
4981
4980
|
.label-danger {
|
|
4982
|
-
background-color: #
|
|
4981
|
+
background-color: #e01f1f;
|
|
4983
4982
|
}
|
|
4984
4983
|
.label-danger[href]:hover,
|
|
4985
4984
|
.label-danger[href]:focus {
|
|
4986
|
-
background-color: #
|
|
4985
|
+
background-color: #b31919;
|
|
4987
4986
|
}
|
|
4988
4987
|
.badge {
|
|
4989
4988
|
display: inline-block;
|
|
4990
4989
|
min-width: 10px;
|
|
4991
4990
|
padding: 3px 7px;
|
|
4992
4991
|
font-size: 12px;
|
|
4993
|
-
font-weight:
|
|
4992
|
+
font-weight: 400;
|
|
4994
4993
|
line-height: 1;
|
|
4995
|
-
color: #
|
|
4994
|
+
color: #ffffff;
|
|
4996
4995
|
text-align: center;
|
|
4997
4996
|
white-space: nowrap;
|
|
4998
4997
|
vertical-align: middle;
|
|
4999
|
-
background-color: #
|
|
4998
|
+
background-color: #005EBF;
|
|
5000
4999
|
border-radius: 10px;
|
|
5001
5000
|
}
|
|
5002
5001
|
.badge:empty {
|
|
@@ -5019,8 +5018,8 @@ a.badge:focus {
|
|
|
5019
5018
|
}
|
|
5020
5019
|
.list-group-item.active > .badge,
|
|
5021
5020
|
.nav-pills > .active > a > .badge {
|
|
5022
|
-
color: #
|
|
5023
|
-
background-color: #
|
|
5021
|
+
color: #ffffff;
|
|
5022
|
+
background-color: #005EBF;
|
|
5024
5023
|
}
|
|
5025
5024
|
.list-group-item > .badge {
|
|
5026
5025
|
float: right;
|
|
@@ -5032,56 +5031,56 @@ a.badge:focus {
|
|
|
5032
5031
|
margin-left: 3px;
|
|
5033
5032
|
}
|
|
5034
5033
|
.jumbotron {
|
|
5035
|
-
padding-top:
|
|
5036
|
-
padding-bottom:
|
|
5037
|
-
margin-bottom:
|
|
5038
|
-
color:
|
|
5039
|
-
background-color:
|
|
5034
|
+
padding-top: 20px;
|
|
5035
|
+
padding-bottom: 20px;
|
|
5036
|
+
margin-bottom: 20px;
|
|
5037
|
+
color: #e07807;
|
|
5038
|
+
background-color: transparent;
|
|
5040
5039
|
}
|
|
5041
5040
|
.jumbotron h1,
|
|
5042
5041
|
.jumbotron .h1 {
|
|
5043
|
-
color:
|
|
5042
|
+
color: #e07807;
|
|
5044
5043
|
}
|
|
5045
5044
|
.jumbotron p {
|
|
5046
|
-
margin-bottom:
|
|
5047
|
-
font-size:
|
|
5045
|
+
margin-bottom: 10px;
|
|
5046
|
+
font-size: 32px;
|
|
5048
5047
|
font-weight: 200;
|
|
5049
5048
|
}
|
|
5050
5049
|
.jumbotron > hr {
|
|
5051
|
-
border-top-color:
|
|
5050
|
+
border-top-color: rgba(0, 0, 0, 0);
|
|
5052
5051
|
}
|
|
5053
5052
|
.container .jumbotron,
|
|
5054
5053
|
.container-fluid .jumbotron {
|
|
5055
|
-
padding-right:
|
|
5056
|
-
padding-left:
|
|
5057
|
-
border-radius:
|
|
5054
|
+
padding-right: 20px;
|
|
5055
|
+
padding-left: 20px;
|
|
5056
|
+
border-radius: 10px;
|
|
5058
5057
|
}
|
|
5059
5058
|
.jumbotron .container {
|
|
5060
5059
|
max-width: 100%;
|
|
5061
5060
|
}
|
|
5062
5061
|
@media screen and (min-width: 768px) {
|
|
5063
5062
|
.jumbotron {
|
|
5064
|
-
padding-top:
|
|
5065
|
-
padding-bottom:
|
|
5063
|
+
padding-top: 32px;
|
|
5064
|
+
padding-bottom: 32px;
|
|
5066
5065
|
}
|
|
5067
5066
|
.container .jumbotron,
|
|
5068
5067
|
.container-fluid .jumbotron {
|
|
5069
|
-
padding-right:
|
|
5070
|
-
padding-left:
|
|
5068
|
+
padding-right: 40px;
|
|
5069
|
+
padding-left: 40px;
|
|
5071
5070
|
}
|
|
5072
5071
|
.jumbotron h1,
|
|
5073
5072
|
.jumbotron .h1 {
|
|
5074
|
-
font-size:
|
|
5073
|
+
font-size: 72px;
|
|
5075
5074
|
}
|
|
5076
5075
|
}
|
|
5077
5076
|
.thumbnail {
|
|
5078
5077
|
display: block;
|
|
5079
|
-
padding:
|
|
5080
|
-
margin-bottom:
|
|
5081
|
-
line-height: 1.
|
|
5082
|
-
background-color: #
|
|
5083
|
-
border: 1px solid #
|
|
5084
|
-
border-radius:
|
|
5078
|
+
padding: 19px;
|
|
5079
|
+
margin-bottom: 24px;
|
|
5080
|
+
line-height: 1.71428572;
|
|
5081
|
+
background-color: #ffffff;
|
|
5082
|
+
border: 1px solid #d8d8d8;
|
|
5083
|
+
border-radius: 10px;
|
|
5085
5084
|
-webkit-transition: border 0.2s ease-in-out;
|
|
5086
5085
|
-o-transition: border 0.2s ease-in-out;
|
|
5087
5086
|
transition: border 0.2s ease-in-out;
|
|
@@ -5094,17 +5093,17 @@ a.badge:focus {
|
|
|
5094
5093
|
a.thumbnail:hover,
|
|
5095
5094
|
a.thumbnail:focus,
|
|
5096
5095
|
a.thumbnail.active {
|
|
5097
|
-
border-color: #
|
|
5096
|
+
border-color: #005EBF;
|
|
5098
5097
|
}
|
|
5099
5098
|
.thumbnail .caption {
|
|
5100
|
-
padding:
|
|
5101
|
-
color: #
|
|
5099
|
+
padding: 0;
|
|
5100
|
+
color: #1a1a1a;
|
|
5102
5101
|
}
|
|
5103
5102
|
.alert {
|
|
5104
|
-
padding:
|
|
5105
|
-
margin-bottom:
|
|
5103
|
+
padding: 20px;
|
|
5104
|
+
margin-bottom: 24px;
|
|
5106
5105
|
border: 1px solid transparent;
|
|
5107
|
-
border-radius:
|
|
5106
|
+
border-radius: 10px;
|
|
5108
5107
|
}
|
|
5109
5108
|
.alert h4 {
|
|
5110
5109
|
margin-top: 0;
|
|
@@ -5122,7 +5121,7 @@ a.thumbnail.active {
|
|
|
5122
5121
|
}
|
|
5123
5122
|
.alert-dismissable,
|
|
5124
5123
|
.alert-dismissible {
|
|
5125
|
-
padding-right:
|
|
5124
|
+
padding-right: 40px;
|
|
5126
5125
|
}
|
|
5127
5126
|
.alert-dismissable .close,
|
|
5128
5127
|
.alert-dismissible .close {
|
|
@@ -5132,48 +5131,48 @@ a.thumbnail.active {
|
|
|
5132
5131
|
color: inherit;
|
|
5133
5132
|
}
|
|
5134
5133
|
.alert-success {
|
|
5135
|
-
color: #
|
|
5136
|
-
background-color: #
|
|
5137
|
-
border-color: #
|
|
5134
|
+
color: #098a15;
|
|
5135
|
+
background-color: #e8f6ea;
|
|
5136
|
+
border-color: #e8f6ea;
|
|
5138
5137
|
}
|
|
5139
5138
|
.alert-success hr {
|
|
5140
|
-
border-top-color: #
|
|
5139
|
+
border-top-color: #d6efd8;
|
|
5141
5140
|
}
|
|
5142
5141
|
.alert-success .alert-link {
|
|
5143
|
-
color: #
|
|
5142
|
+
color: #065a0e;
|
|
5144
5143
|
}
|
|
5145
5144
|
.alert-info {
|
|
5146
|
-
color: #
|
|
5147
|
-
background-color: #
|
|
5148
|
-
border-color: #
|
|
5145
|
+
color: #007dff;
|
|
5146
|
+
background-color: #e6f2ff;
|
|
5147
|
+
border-color: #e6f2ff;
|
|
5149
5148
|
}
|
|
5150
5149
|
.alert-info hr {
|
|
5151
|
-
border-top-color: #
|
|
5150
|
+
border-top-color: #cce5ff;
|
|
5152
5151
|
}
|
|
5153
5152
|
.alert-info .alert-link {
|
|
5154
|
-
color: #
|
|
5153
|
+
color: #0064cc;
|
|
5155
5154
|
}
|
|
5156
5155
|
.alert-warning {
|
|
5157
|
-
color: #
|
|
5158
|
-
background-color: #
|
|
5159
|
-
border-color: #
|
|
5156
|
+
color: #e07807;
|
|
5157
|
+
background-color: #fcf2e6;
|
|
5158
|
+
border-color: #fcf2e6;
|
|
5160
5159
|
}
|
|
5161
5160
|
.alert-warning hr {
|
|
5162
|
-
border-top-color: #
|
|
5161
|
+
border-top-color: #f9e5d0;
|
|
5163
5162
|
}
|
|
5164
5163
|
.alert-warning .alert-link {
|
|
5165
|
-
color: #
|
|
5164
|
+
color: #af5e05;
|
|
5166
5165
|
}
|
|
5167
5166
|
.alert-danger {
|
|
5168
|
-
color: #
|
|
5169
|
-
background-color: #
|
|
5170
|
-
border-color: #
|
|
5167
|
+
color: #e01f1f;
|
|
5168
|
+
background-color: #fce9e9;
|
|
5169
|
+
border-color: #fce9e9;
|
|
5171
5170
|
}
|
|
5172
5171
|
.alert-danger hr {
|
|
5173
|
-
border-top-color: #
|
|
5172
|
+
border-top-color: #f9d2d2;
|
|
5174
5173
|
}
|
|
5175
5174
|
.alert-danger .alert-link {
|
|
5176
|
-
color: #
|
|
5175
|
+
color: #b31919;
|
|
5177
5176
|
}
|
|
5178
5177
|
@-webkit-keyframes progress-bar-stripes {
|
|
5179
5178
|
from {
|
|
@@ -5200,11 +5199,11 @@ a.thumbnail.active {
|
|
|
5200
5199
|
}
|
|
5201
5200
|
}
|
|
5202
5201
|
.progress {
|
|
5203
|
-
height:
|
|
5204
|
-
margin-bottom:
|
|
5202
|
+
height: 24px;
|
|
5203
|
+
margin-bottom: 24px;
|
|
5205
5204
|
overflow: hidden;
|
|
5206
|
-
background-color: #
|
|
5207
|
-
border-radius:
|
|
5205
|
+
background-color: #f4f4f4;
|
|
5206
|
+
border-radius: 10px;
|
|
5208
5207
|
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
5209
5208
|
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
5210
5209
|
}
|
|
@@ -5213,10 +5212,10 @@ a.thumbnail.active {
|
|
|
5213
5212
|
width: 0%;
|
|
5214
5213
|
height: 100%;
|
|
5215
5214
|
font-size: 12px;
|
|
5216
|
-
line-height:
|
|
5217
|
-
color: #
|
|
5215
|
+
line-height: 24px;
|
|
5216
|
+
color: #ffffff;
|
|
5218
5217
|
text-align: center;
|
|
5219
|
-
background-color: #
|
|
5218
|
+
background-color: #007dff;
|
|
5220
5219
|
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
|
|
5221
5220
|
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
|
|
5222
5221
|
-webkit-transition: width 0.6s ease;
|
|
@@ -5238,7 +5237,7 @@ a.thumbnail.active {
|
|
|
5238
5237
|
animation: progress-bar-stripes 2s linear infinite;
|
|
5239
5238
|
}
|
|
5240
5239
|
.progress-bar-success {
|
|
5241
|
-
background-color: #
|
|
5240
|
+
background-color: #098a15;
|
|
5242
5241
|
}
|
|
5243
5242
|
.progress-striped .progress-bar-success {
|
|
5244
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);
|
|
@@ -5246,7 +5245,7 @@ a.thumbnail.active {
|
|
|
5246
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);
|
|
5247
5246
|
}
|
|
5248
5247
|
.progress-bar-info {
|
|
5249
|
-
background-color: #
|
|
5248
|
+
background-color: #007dff;
|
|
5250
5249
|
}
|
|
5251
5250
|
.progress-striped .progress-bar-info {
|
|
5252
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);
|
|
@@ -5254,7 +5253,7 @@ a.thumbnail.active {
|
|
|
5254
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);
|
|
5255
5254
|
}
|
|
5256
5255
|
.progress-bar-warning {
|
|
5257
|
-
background-color: #
|
|
5256
|
+
background-color: #e07807;
|
|
5258
5257
|
}
|
|
5259
5258
|
.progress-striped .progress-bar-warning {
|
|
5260
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);
|
|
@@ -5262,7 +5261,7 @@ a.thumbnail.active {
|
|
|
5262
5261
|
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);
|
|
5263
5262
|
}
|
|
5264
5263
|
.progress-bar-danger {
|
|
5265
|
-
background-color: #
|
|
5264
|
+
background-color: #e01f1f;
|
|
5266
5265
|
}
|
|
5267
5266
|
.progress-striped .progress-bar-danger {
|
|
5268
5267
|
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,24 +5325,24 @@ a.thumbnail.active {
|
|
|
5326
5325
|
display: block;
|
|
5327
5326
|
padding: 10px 15px;
|
|
5328
5327
|
margin-bottom: -1px;
|
|
5329
|
-
background-color: #
|
|
5330
|
-
border: 1px solid #
|
|
5328
|
+
background-color: #ffffff;
|
|
5329
|
+
border: 1px solid #d8d8d8;
|
|
5331
5330
|
}
|
|
5332
5331
|
.list-group-item:first-child {
|
|
5333
|
-
border-top-left-radius:
|
|
5334
|
-
border-top-right-radius:
|
|
5332
|
+
border-top-left-radius: 10px;
|
|
5333
|
+
border-top-right-radius: 10px;
|
|
5335
5334
|
}
|
|
5336
5335
|
.list-group-item:last-child {
|
|
5337
5336
|
margin-bottom: 0;
|
|
5338
|
-
border-bottom-right-radius:
|
|
5339
|
-
border-bottom-left-radius:
|
|
5337
|
+
border-bottom-right-radius: 10px;
|
|
5338
|
+
border-bottom-left-radius: 10px;
|
|
5340
5339
|
}
|
|
5341
5340
|
.list-group-item.disabled,
|
|
5342
5341
|
.list-group-item.disabled:hover,
|
|
5343
5342
|
.list-group-item.disabled:focus {
|
|
5344
|
-
color: #
|
|
5343
|
+
color: #d8d8d8;
|
|
5345
5344
|
cursor: not-allowed;
|
|
5346
|
-
background-color: #
|
|
5345
|
+
background-color: #f4f4f4;
|
|
5347
5346
|
}
|
|
5348
5347
|
.list-group-item.disabled .list-group-item-heading,
|
|
5349
5348
|
.list-group-item.disabled:hover .list-group-item-heading,
|
|
@@ -5353,15 +5352,15 @@ a.thumbnail.active {
|
|
|
5353
5352
|
.list-group-item.disabled .list-group-item-text,
|
|
5354
5353
|
.list-group-item.disabled:hover .list-group-item-text,
|
|
5355
5354
|
.list-group-item.disabled:focus .list-group-item-text {
|
|
5356
|
-
color: #
|
|
5355
|
+
color: #d8d8d8;
|
|
5357
5356
|
}
|
|
5358
5357
|
.list-group-item.active,
|
|
5359
5358
|
.list-group-item.active:hover,
|
|
5360
5359
|
.list-group-item.active:focus {
|
|
5361
5360
|
z-index: 2;
|
|
5362
|
-
color: #
|
|
5363
|
-
background-color: #
|
|
5364
|
-
border-color: #
|
|
5361
|
+
color: #007dff;
|
|
5362
|
+
background-color: #ffffff;
|
|
5363
|
+
border-color: #d8d8d8;
|
|
5365
5364
|
}
|
|
5366
5365
|
.list-group-item.active .list-group-item-heading,
|
|
5367
5366
|
.list-group-item.active:hover .list-group-item-heading,
|
|
@@ -5377,35 +5376,35 @@ a.thumbnail.active {
|
|
|
5377
5376
|
.list-group-item.active .list-group-item-text,
|
|
5378
5377
|
.list-group-item.active:hover .list-group-item-text,
|
|
5379
5378
|
.list-group-item.active:focus .list-group-item-text {
|
|
5380
|
-
color: #
|
|
5379
|
+
color: #007dff;
|
|
5381
5380
|
}
|
|
5382
5381
|
a.list-group-item,
|
|
5383
5382
|
button.list-group-item {
|
|
5384
|
-
color: #
|
|
5383
|
+
color: #005EBF;
|
|
5385
5384
|
}
|
|
5386
5385
|
a.list-group-item .list-group-item-heading,
|
|
5387
5386
|
button.list-group-item .list-group-item-heading {
|
|
5388
|
-
color: #
|
|
5387
|
+
color: #005EBF;
|
|
5389
5388
|
}
|
|
5390
5389
|
a.list-group-item:hover,
|
|
5391
5390
|
button.list-group-item:hover,
|
|
5392
5391
|
a.list-group-item:focus,
|
|
5393
5392
|
button.list-group-item:focus {
|
|
5394
|
-
color: #
|
|
5393
|
+
color: #005EBF;
|
|
5395
5394
|
text-decoration: none;
|
|
5396
|
-
background-color:
|
|
5395
|
+
background-color: rgba(0, 125, 255, 0.1);
|
|
5397
5396
|
}
|
|
5398
5397
|
button.list-group-item {
|
|
5399
5398
|
width: 100%;
|
|
5400
5399
|
text-align: left;
|
|
5401
5400
|
}
|
|
5402
5401
|
.list-group-item-success {
|
|
5403
|
-
color: #
|
|
5404
|
-
background-color: #
|
|
5402
|
+
color: #098a15;
|
|
5403
|
+
background-color: #e8f6ea;
|
|
5405
5404
|
}
|
|
5406
5405
|
a.list-group-item-success,
|
|
5407
5406
|
button.list-group-item-success {
|
|
5408
|
-
color: #
|
|
5407
|
+
color: #098a15;
|
|
5409
5408
|
}
|
|
5410
5409
|
a.list-group-item-success .list-group-item-heading,
|
|
5411
5410
|
button.list-group-item-success .list-group-item-heading {
|
|
@@ -5415,8 +5414,8 @@ a.list-group-item-success:hover,
|
|
|
5415
5414
|
button.list-group-item-success:hover,
|
|
5416
5415
|
a.list-group-item-success:focus,
|
|
5417
5416
|
button.list-group-item-success:focus {
|
|
5418
|
-
color: #
|
|
5419
|
-
background-color: #
|
|
5417
|
+
color: #098a15;
|
|
5418
|
+
background-color: #d6efd8;
|
|
5420
5419
|
}
|
|
5421
5420
|
a.list-group-item-success.active,
|
|
5422
5421
|
button.list-group-item-success.active,
|
|
@@ -5425,16 +5424,16 @@ button.list-group-item-success.active:hover,
|
|
|
5425
5424
|
a.list-group-item-success.active:focus,
|
|
5426
5425
|
button.list-group-item-success.active:focus {
|
|
5427
5426
|
color: #fff;
|
|
5428
|
-
background-color: #
|
|
5429
|
-
border-color: #
|
|
5427
|
+
background-color: #098a15;
|
|
5428
|
+
border-color: #098a15;
|
|
5430
5429
|
}
|
|
5431
5430
|
.list-group-item-info {
|
|
5432
|
-
color: #
|
|
5433
|
-
background-color: #
|
|
5431
|
+
color: #007dff;
|
|
5432
|
+
background-color: #e6f2ff;
|
|
5434
5433
|
}
|
|
5435
5434
|
a.list-group-item-info,
|
|
5436
5435
|
button.list-group-item-info {
|
|
5437
|
-
color: #
|
|
5436
|
+
color: #007dff;
|
|
5438
5437
|
}
|
|
5439
5438
|
a.list-group-item-info .list-group-item-heading,
|
|
5440
5439
|
button.list-group-item-info .list-group-item-heading {
|
|
@@ -5444,8 +5443,8 @@ a.list-group-item-info:hover,
|
|
|
5444
5443
|
button.list-group-item-info:hover,
|
|
5445
5444
|
a.list-group-item-info:focus,
|
|
5446
5445
|
button.list-group-item-info:focus {
|
|
5447
|
-
color: #
|
|
5448
|
-
background-color: #
|
|
5446
|
+
color: #007dff;
|
|
5447
|
+
background-color: #cce5ff;
|
|
5449
5448
|
}
|
|
5450
5449
|
a.list-group-item-info.active,
|
|
5451
5450
|
button.list-group-item-info.active,
|
|
@@ -5454,16 +5453,16 @@ button.list-group-item-info.active:hover,
|
|
|
5454
5453
|
a.list-group-item-info.active:focus,
|
|
5455
5454
|
button.list-group-item-info.active:focus {
|
|
5456
5455
|
color: #fff;
|
|
5457
|
-
background-color: #
|
|
5458
|
-
border-color: #
|
|
5456
|
+
background-color: #007dff;
|
|
5457
|
+
border-color: #007dff;
|
|
5459
5458
|
}
|
|
5460
5459
|
.list-group-item-warning {
|
|
5461
|
-
color: #
|
|
5462
|
-
background-color: #
|
|
5460
|
+
color: #e07807;
|
|
5461
|
+
background-color: #fcf2e6;
|
|
5463
5462
|
}
|
|
5464
5463
|
a.list-group-item-warning,
|
|
5465
5464
|
button.list-group-item-warning {
|
|
5466
|
-
color: #
|
|
5465
|
+
color: #e07807;
|
|
5467
5466
|
}
|
|
5468
5467
|
a.list-group-item-warning .list-group-item-heading,
|
|
5469
5468
|
button.list-group-item-warning .list-group-item-heading {
|
|
@@ -5473,8 +5472,8 @@ a.list-group-item-warning:hover,
|
|
|
5473
5472
|
button.list-group-item-warning:hover,
|
|
5474
5473
|
a.list-group-item-warning:focus,
|
|
5475
5474
|
button.list-group-item-warning:focus {
|
|
5476
|
-
color: #
|
|
5477
|
-
background-color: #
|
|
5475
|
+
color: #e07807;
|
|
5476
|
+
background-color: #f9e5d0;
|
|
5478
5477
|
}
|
|
5479
5478
|
a.list-group-item-warning.active,
|
|
5480
5479
|
button.list-group-item-warning.active,
|
|
@@ -5483,16 +5482,16 @@ button.list-group-item-warning.active:hover,
|
|
|
5483
5482
|
a.list-group-item-warning.active:focus,
|
|
5484
5483
|
button.list-group-item-warning.active:focus {
|
|
5485
5484
|
color: #fff;
|
|
5486
|
-
background-color: #
|
|
5487
|
-
border-color: #
|
|
5485
|
+
background-color: #e07807;
|
|
5486
|
+
border-color: #e07807;
|
|
5488
5487
|
}
|
|
5489
5488
|
.list-group-item-danger {
|
|
5490
|
-
color: #
|
|
5491
|
-
background-color: #
|
|
5489
|
+
color: #e01f1f;
|
|
5490
|
+
background-color: #fce9e9;
|
|
5492
5491
|
}
|
|
5493
5492
|
a.list-group-item-danger,
|
|
5494
5493
|
button.list-group-item-danger {
|
|
5495
|
-
color: #
|
|
5494
|
+
color: #e01f1f;
|
|
5496
5495
|
}
|
|
5497
5496
|
a.list-group-item-danger .list-group-item-heading,
|
|
5498
5497
|
button.list-group-item-danger .list-group-item-heading {
|
|
@@ -5502,8 +5501,8 @@ a.list-group-item-danger:hover,
|
|
|
5502
5501
|
button.list-group-item-danger:hover,
|
|
5503
5502
|
a.list-group-item-danger:focus,
|
|
5504
5503
|
button.list-group-item-danger:focus {
|
|
5505
|
-
color: #
|
|
5506
|
-
background-color: #
|
|
5504
|
+
color: #e01f1f;
|
|
5505
|
+
background-color: #f9d2d2;
|
|
5507
5506
|
}
|
|
5508
5507
|
a.list-group-item-danger.active,
|
|
5509
5508
|
button.list-group-item-danger.active,
|
|
@@ -5512,8 +5511,8 @@ button.list-group-item-danger.active:hover,
|
|
|
5512
5511
|
a.list-group-item-danger.active:focus,
|
|
5513
5512
|
button.list-group-item-danger.active:focus {
|
|
5514
5513
|
color: #fff;
|
|
5515
|
-
background-color: #
|
|
5516
|
-
border-color: #
|
|
5514
|
+
background-color: #e01f1f;
|
|
5515
|
+
border-color: #e01f1f;
|
|
5517
5516
|
}
|
|
5518
5517
|
.list-group-item-heading {
|
|
5519
5518
|
margin-top: 0;
|
|
@@ -5524,21 +5523,21 @@ button.list-group-item-danger.active:focus {
|
|
|
5524
5523
|
line-height: 1.3;
|
|
5525
5524
|
}
|
|
5526
5525
|
.panel {
|
|
5527
|
-
margin-bottom:
|
|
5528
|
-
background-color: #
|
|
5526
|
+
margin-bottom: 24px;
|
|
5527
|
+
background-color: #ffffff;
|
|
5529
5528
|
border: 1px solid transparent;
|
|
5530
|
-
border-radius:
|
|
5529
|
+
border-radius: 10px;
|
|
5531
5530
|
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
|
|
5532
5531
|
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
|
|
5533
5532
|
}
|
|
5534
5533
|
.panel-body {
|
|
5535
|
-
padding:
|
|
5534
|
+
padding: 10px;
|
|
5536
5535
|
}
|
|
5537
5536
|
.panel-heading {
|
|
5538
|
-
padding: 10px
|
|
5537
|
+
padding: 10px;
|
|
5539
5538
|
border-bottom: 1px solid transparent;
|
|
5540
|
-
border-top-left-radius:
|
|
5541
|
-
border-top-right-radius:
|
|
5539
|
+
border-top-left-radius: 9px;
|
|
5540
|
+
border-top-right-radius: 9px;
|
|
5542
5541
|
}
|
|
5543
5542
|
.panel-heading > .dropdown .dropdown-toggle {
|
|
5544
5543
|
color: inherit;
|
|
@@ -5557,11 +5556,11 @@ button.list-group-item-danger.active:focus {
|
|
|
5557
5556
|
color: inherit;
|
|
5558
5557
|
}
|
|
5559
5558
|
.panel-footer {
|
|
5560
|
-
padding: 10px
|
|
5561
|
-
background-color: #
|
|
5562
|
-
border-top: 1px solid #
|
|
5563
|
-
border-bottom-right-radius:
|
|
5564
|
-
border-bottom-left-radius:
|
|
5559
|
+
padding: 10px;
|
|
5560
|
+
background-color: #ffffff;
|
|
5561
|
+
border-top: 1px solid #d8d8d8;
|
|
5562
|
+
border-bottom-right-radius: 9px;
|
|
5563
|
+
border-bottom-left-radius: 9px;
|
|
5565
5564
|
}
|
|
5566
5565
|
.panel > .list-group,
|
|
5567
5566
|
.panel > .panel-collapse > .list-group {
|
|
@@ -5575,14 +5574,14 @@ button.list-group-item-danger.active:focus {
|
|
|
5575
5574
|
.panel > .list-group:first-child .list-group-item:first-child,
|
|
5576
5575
|
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
|
|
5577
5576
|
border-top: 0;
|
|
5578
|
-
border-top-left-radius:
|
|
5579
|
-
border-top-right-radius:
|
|
5577
|
+
border-top-left-radius: 9px;
|
|
5578
|
+
border-top-right-radius: 9px;
|
|
5580
5579
|
}
|
|
5581
5580
|
.panel > .list-group:last-child .list-group-item:last-child,
|
|
5582
5581
|
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
|
|
5583
5582
|
border-bottom: 0;
|
|
5584
|
-
border-bottom-right-radius:
|
|
5585
|
-
border-bottom-left-radius:
|
|
5583
|
+
border-bottom-right-radius: 9px;
|
|
5584
|
+
border-bottom-left-radius: 9px;
|
|
5586
5585
|
}
|
|
5587
5586
|
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
|
|
5588
5587
|
border-top-left-radius: 0;
|
|
@@ -5602,20 +5601,20 @@ button.list-group-item-danger.active:focus {
|
|
|
5602
5601
|
.panel > .table caption,
|
|
5603
5602
|
.panel > .table-responsive > .table caption,
|
|
5604
5603
|
.panel > .panel-collapse > .table caption {
|
|
5605
|
-
padding-right:
|
|
5606
|
-
padding-left:
|
|
5604
|
+
padding-right: 10px;
|
|
5605
|
+
padding-left: 10px;
|
|
5607
5606
|
}
|
|
5608
5607
|
.panel > .table:first-child,
|
|
5609
5608
|
.panel > .table-responsive:first-child > .table:first-child {
|
|
5610
|
-
border-top-left-radius:
|
|
5611
|
-
border-top-right-radius:
|
|
5609
|
+
border-top-left-radius: 9px;
|
|
5610
|
+
border-top-right-radius: 9px;
|
|
5612
5611
|
}
|
|
5613
5612
|
.panel > .table:first-child > thead:first-child > tr:first-child,
|
|
5614
5613
|
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
|
|
5615
5614
|
.panel > .table:first-child > tbody:first-child > tr:first-child,
|
|
5616
5615
|
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
|
|
5617
|
-
border-top-left-radius:
|
|
5618
|
-
border-top-right-radius:
|
|
5616
|
+
border-top-left-radius: 9px;
|
|
5617
|
+
border-top-right-radius: 9px;
|
|
5619
5618
|
}
|
|
5620
5619
|
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
|
|
5621
5620
|
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
|
|
@@ -5625,7 +5624,7 @@ button.list-group-item-danger.active:focus {
|
|
|
5625
5624
|
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
|
|
5626
5625
|
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
|
|
5627
5626
|
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
|
|
5628
|
-
border-top-left-radius:
|
|
5627
|
+
border-top-left-radius: 9px;
|
|
5629
5628
|
}
|
|
5630
5629
|
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
|
|
5631
5630
|
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
|
|
@@ -5635,19 +5634,19 @@ button.list-group-item-danger.active:focus {
|
|
|
5635
5634
|
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
|
|
5636
5635
|
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
|
|
5637
5636
|
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
|
|
5638
|
-
border-top-right-radius:
|
|
5637
|
+
border-top-right-radius: 9px;
|
|
5639
5638
|
}
|
|
5640
5639
|
.panel > .table:last-child,
|
|
5641
5640
|
.panel > .table-responsive:last-child > .table:last-child {
|
|
5642
|
-
border-bottom-right-radius:
|
|
5643
|
-
border-bottom-left-radius:
|
|
5641
|
+
border-bottom-right-radius: 9px;
|
|
5642
|
+
border-bottom-left-radius: 9px;
|
|
5644
5643
|
}
|
|
5645
5644
|
.panel > .table:last-child > tbody:last-child > tr:last-child,
|
|
5646
5645
|
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
|
|
5647
5646
|
.panel > .table:last-child > tfoot:last-child > tr:last-child,
|
|
5648
5647
|
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
|
|
5649
|
-
border-bottom-right-radius:
|
|
5650
|
-
border-bottom-left-radius:
|
|
5648
|
+
border-bottom-right-radius: 9px;
|
|
5649
|
+
border-bottom-left-radius: 9px;
|
|
5651
5650
|
}
|
|
5652
5651
|
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
|
|
5653
5652
|
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
|
|
@@ -5657,7 +5656,7 @@ button.list-group-item-danger.active:focus {
|
|
|
5657
5656
|
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
|
|
5658
5657
|
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
|
|
5659
5658
|
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
|
|
5660
|
-
border-bottom-left-radius:
|
|
5659
|
+
border-bottom-left-radius: 9px;
|
|
5661
5660
|
}
|
|
5662
5661
|
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
|
|
5663
5662
|
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
|
|
@@ -5667,13 +5666,13 @@ button.list-group-item-danger.active:focus {
|
|
|
5667
5666
|
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
|
|
5668
5667
|
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
|
|
5669
5668
|
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
|
|
5670
|
-
border-bottom-right-radius:
|
|
5669
|
+
border-bottom-right-radius: 9px;
|
|
5671
5670
|
}
|
|
5672
5671
|
.panel > .panel-body + .table,
|
|
5673
5672
|
.panel > .panel-body + .table-responsive,
|
|
5674
5673
|
.panel > .table + .panel-body,
|
|
5675
5674
|
.panel > .table-responsive + .panel-body {
|
|
5676
|
-
border-top: 1px solid #
|
|
5675
|
+
border-top: 1px solid #d8d8d8;
|
|
5677
5676
|
}
|
|
5678
5677
|
.panel > .table > tbody:first-child > tr:first-child th,
|
|
5679
5678
|
.panel > .table > tbody:first-child > tr:first-child td {
|
|
@@ -5736,11 +5735,11 @@ button.list-group-item-danger.active:focus {
|
|
|
5736
5735
|
border: 0;
|
|
5737
5736
|
}
|
|
5738
5737
|
.panel-group {
|
|
5739
|
-
margin-bottom:
|
|
5738
|
+
margin-bottom: 24px;
|
|
5740
5739
|
}
|
|
5741
5740
|
.panel-group .panel {
|
|
5742
5741
|
margin-bottom: 0;
|
|
5743
|
-
border-radius:
|
|
5742
|
+
border-radius: 10px;
|
|
5744
5743
|
}
|
|
5745
5744
|
.panel-group .panel + .panel {
|
|
5746
5745
|
margin-top: 5px;
|
|
@@ -5750,121 +5749,121 @@ button.list-group-item-danger.active:focus {
|
|
|
5750
5749
|
}
|
|
5751
5750
|
.panel-group .panel-heading + .panel-collapse > .panel-body,
|
|
5752
5751
|
.panel-group .panel-heading + .panel-collapse > .list-group {
|
|
5753
|
-
border-top: 1px solid #
|
|
5752
|
+
border-top: 1px solid #d8d8d8;
|
|
5754
5753
|
}
|
|
5755
5754
|
.panel-group .panel-footer {
|
|
5756
5755
|
border-top: 0;
|
|
5757
5756
|
}
|
|
5758
5757
|
.panel-group .panel-footer + .panel-collapse .panel-body {
|
|
5759
|
-
border-bottom: 1px solid #
|
|
5758
|
+
border-bottom: 1px solid #d8d8d8;
|
|
5760
5759
|
}
|
|
5761
5760
|
.panel-default {
|
|
5762
|
-
border-color: #
|
|
5761
|
+
border-color: #d8d8d8;
|
|
5763
5762
|
}
|
|
5764
5763
|
.panel-default > .panel-heading {
|
|
5765
|
-
color: #
|
|
5766
|
-
background-color: #
|
|
5767
|
-
border-color: #
|
|
5764
|
+
color: #1a1a1a;
|
|
5765
|
+
background-color: #f4f4f4;
|
|
5766
|
+
border-color: #d8d8d8;
|
|
5768
5767
|
}
|
|
5769
5768
|
.panel-default > .panel-heading + .panel-collapse > .panel-body {
|
|
5770
|
-
border-top-color: #
|
|
5769
|
+
border-top-color: #d8d8d8;
|
|
5771
5770
|
}
|
|
5772
5771
|
.panel-default > .panel-heading .badge {
|
|
5773
|
-
color: #
|
|
5774
|
-
background-color: #
|
|
5772
|
+
color: #f4f4f4;
|
|
5773
|
+
background-color: #1a1a1a;
|
|
5775
5774
|
}
|
|
5776
5775
|
.panel-default > .panel-footer + .panel-collapse > .panel-body {
|
|
5777
|
-
border-bottom-color: #
|
|
5776
|
+
border-bottom-color: #d8d8d8;
|
|
5778
5777
|
}
|
|
5779
5778
|
.panel-primary {
|
|
5780
|
-
border-color: #
|
|
5779
|
+
border-color: #007dff;
|
|
5781
5780
|
}
|
|
5782
5781
|
.panel-primary > .panel-heading {
|
|
5783
|
-
color: #
|
|
5784
|
-
background-color: #
|
|
5785
|
-
border-color: #
|
|
5782
|
+
color: #ffffff;
|
|
5783
|
+
background-color: #007dff;
|
|
5784
|
+
border-color: #007dff;
|
|
5786
5785
|
}
|
|
5787
5786
|
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
|
|
5788
|
-
border-top-color: #
|
|
5787
|
+
border-top-color: #007dff;
|
|
5789
5788
|
}
|
|
5790
5789
|
.panel-primary > .panel-heading .badge {
|
|
5791
|
-
color: #
|
|
5792
|
-
background-color: #
|
|
5790
|
+
color: #007dff;
|
|
5791
|
+
background-color: #ffffff;
|
|
5793
5792
|
}
|
|
5794
5793
|
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
|
|
5795
|
-
border-bottom-color: #
|
|
5794
|
+
border-bottom-color: #007dff;
|
|
5796
5795
|
}
|
|
5797
5796
|
.panel-success {
|
|
5798
|
-
border-color: #
|
|
5797
|
+
border-color: #e8f6ea;
|
|
5799
5798
|
}
|
|
5800
5799
|
.panel-success > .panel-heading {
|
|
5801
|
-
color: #
|
|
5802
|
-
background-color: #
|
|
5803
|
-
border-color: #
|
|
5800
|
+
color: #098a15;
|
|
5801
|
+
background-color: #e8f6ea;
|
|
5802
|
+
border-color: #e8f6ea;
|
|
5804
5803
|
}
|
|
5805
5804
|
.panel-success > .panel-heading + .panel-collapse > .panel-body {
|
|
5806
|
-
border-top-color: #
|
|
5805
|
+
border-top-color: #e8f6ea;
|
|
5807
5806
|
}
|
|
5808
5807
|
.panel-success > .panel-heading .badge {
|
|
5809
|
-
color: #
|
|
5810
|
-
background-color: #
|
|
5808
|
+
color: #e8f6ea;
|
|
5809
|
+
background-color: #098a15;
|
|
5811
5810
|
}
|
|
5812
5811
|
.panel-success > .panel-footer + .panel-collapse > .panel-body {
|
|
5813
|
-
border-bottom-color: #
|
|
5812
|
+
border-bottom-color: #e8f6ea;
|
|
5814
5813
|
}
|
|
5815
5814
|
.panel-info {
|
|
5816
|
-
border-color: #
|
|
5815
|
+
border-color: #e6f2ff;
|
|
5817
5816
|
}
|
|
5818
5817
|
.panel-info > .panel-heading {
|
|
5819
|
-
color: #
|
|
5820
|
-
background-color: #
|
|
5821
|
-
border-color: #
|
|
5818
|
+
color: #007dff;
|
|
5819
|
+
background-color: #e6f2ff;
|
|
5820
|
+
border-color: #e6f2ff;
|
|
5822
5821
|
}
|
|
5823
5822
|
.panel-info > .panel-heading + .panel-collapse > .panel-body {
|
|
5824
|
-
border-top-color: #
|
|
5823
|
+
border-top-color: #e6f2ff;
|
|
5825
5824
|
}
|
|
5826
5825
|
.panel-info > .panel-heading .badge {
|
|
5827
|
-
color: #
|
|
5828
|
-
background-color: #
|
|
5826
|
+
color: #e6f2ff;
|
|
5827
|
+
background-color: #007dff;
|
|
5829
5828
|
}
|
|
5830
5829
|
.panel-info > .panel-footer + .panel-collapse > .panel-body {
|
|
5831
|
-
border-bottom-color: #
|
|
5830
|
+
border-bottom-color: #e6f2ff;
|
|
5832
5831
|
}
|
|
5833
5832
|
.panel-warning {
|
|
5834
|
-
border-color: #
|
|
5833
|
+
border-color: #fcf2e6;
|
|
5835
5834
|
}
|
|
5836
5835
|
.panel-warning > .panel-heading {
|
|
5837
|
-
color: #
|
|
5838
|
-
background-color: #
|
|
5839
|
-
border-color: #
|
|
5836
|
+
color: #e07807;
|
|
5837
|
+
background-color: #fcf2e6;
|
|
5838
|
+
border-color: #fcf2e6;
|
|
5840
5839
|
}
|
|
5841
5840
|
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
|
|
5842
|
-
border-top-color: #
|
|
5841
|
+
border-top-color: #fcf2e6;
|
|
5843
5842
|
}
|
|
5844
5843
|
.panel-warning > .panel-heading .badge {
|
|
5845
|
-
color: #
|
|
5846
|
-
background-color: #
|
|
5844
|
+
color: #fcf2e6;
|
|
5845
|
+
background-color: #e07807;
|
|
5847
5846
|
}
|
|
5848
5847
|
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
|
|
5849
|
-
border-bottom-color: #
|
|
5848
|
+
border-bottom-color: #fcf2e6;
|
|
5850
5849
|
}
|
|
5851
5850
|
.panel-danger {
|
|
5852
|
-
border-color: #
|
|
5851
|
+
border-color: #fce9e9;
|
|
5853
5852
|
}
|
|
5854
5853
|
.panel-danger > .panel-heading {
|
|
5855
|
-
color: #
|
|
5856
|
-
background-color: #
|
|
5857
|
-
border-color: #
|
|
5854
|
+
color: #e01f1f;
|
|
5855
|
+
background-color: #fce9e9;
|
|
5856
|
+
border-color: #fce9e9;
|
|
5858
5857
|
}
|
|
5859
5858
|
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
|
|
5860
|
-
border-top-color: #
|
|
5859
|
+
border-top-color: #fce9e9;
|
|
5861
5860
|
}
|
|
5862
5861
|
.panel-danger > .panel-heading .badge {
|
|
5863
|
-
color: #
|
|
5864
|
-
background-color: #
|
|
5862
|
+
color: #fce9e9;
|
|
5863
|
+
background-color: #e01f1f;
|
|
5865
5864
|
}
|
|
5866
5865
|
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
|
|
5867
|
-
border-bottom-color: #
|
|
5866
|
+
border-bottom-color: #fce9e9;
|
|
5868
5867
|
}
|
|
5869
5868
|
.embed-responsive {
|
|
5870
5869
|
position: relative;
|
|
@@ -5896,9 +5895,9 @@ button.list-group-item-danger.active:focus {
|
|
|
5896
5895
|
min-height: 20px;
|
|
5897
5896
|
padding: 19px;
|
|
5898
5897
|
margin-bottom: 20px;
|
|
5899
|
-
background-color: #
|
|
5900
|
-
border: 1px solid #
|
|
5901
|
-
border-radius:
|
|
5898
|
+
background-color: #f4f4f4;
|
|
5899
|
+
border: 1px solid #d8d8d8;
|
|
5900
|
+
border-radius: 6px;
|
|
5902
5901
|
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
|
|
5903
5902
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
|
|
5904
5903
|
}
|
|
@@ -5908,25 +5907,25 @@ button.list-group-item-danger.active:focus {
|
|
|
5908
5907
|
}
|
|
5909
5908
|
.well-lg {
|
|
5910
5909
|
padding: 24px;
|
|
5911
|
-
border-radius:
|
|
5910
|
+
border-radius: 10px;
|
|
5912
5911
|
}
|
|
5913
5912
|
.well-sm {
|
|
5914
5913
|
padding: 9px;
|
|
5915
|
-
border-radius:
|
|
5914
|
+
border-radius: 4px;
|
|
5916
5915
|
}
|
|
5917
5916
|
.close {
|
|
5918
5917
|
float: right;
|
|
5919
5918
|
font-size: 21px;
|
|
5920
|
-
font-weight:
|
|
5919
|
+
font-weight: 500;
|
|
5921
5920
|
line-height: 1;
|
|
5922
|
-
color: #
|
|
5923
|
-
text-shadow: 0 1px 0 #
|
|
5921
|
+
color: #1a1a1a;
|
|
5922
|
+
text-shadow: 0 1px 0 #ffffff;
|
|
5924
5923
|
filter: alpha(opacity=20);
|
|
5925
5924
|
opacity: 0.2;
|
|
5926
5925
|
}
|
|
5927
5926
|
.close:hover,
|
|
5928
5927
|
.close:focus {
|
|
5929
|
-
color: #
|
|
5928
|
+
color: #1a1a1a;
|
|
5930
5929
|
text-decoration: none;
|
|
5931
5930
|
cursor: pointer;
|
|
5932
5931
|
filter: alpha(opacity=50);
|
|
@@ -5984,11 +5983,10 @@ button.close {
|
|
|
5984
5983
|
}
|
|
5985
5984
|
.modal-content {
|
|
5986
5985
|
position: relative;
|
|
5987
|
-
background-color: #
|
|
5986
|
+
background-color: #ffffff;
|
|
5988
5987
|
background-clip: padding-box;
|
|
5989
|
-
border: 1px solid #
|
|
5990
|
-
border:
|
|
5991
|
-
border-radius: 6px;
|
|
5988
|
+
border: 1px solid #ffffff;
|
|
5989
|
+
border-radius: 10px;
|
|
5992
5990
|
-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
|
|
5993
5991
|
box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
|
|
5994
5992
|
outline: 0;
|
|
@@ -6000,35 +5998,35 @@ button.close {
|
|
|
6000
5998
|
bottom: 0;
|
|
6001
5999
|
left: 0;
|
|
6002
6000
|
z-index: 1040;
|
|
6003
|
-
background-color: #
|
|
6001
|
+
background-color: #000000;
|
|
6004
6002
|
}
|
|
6005
6003
|
.modal-backdrop.fade {
|
|
6006
6004
|
filter: alpha(opacity=0);
|
|
6007
6005
|
opacity: 0;
|
|
6008
6006
|
}
|
|
6009
6007
|
.modal-backdrop.in {
|
|
6010
|
-
filter: alpha(opacity=
|
|
6011
|
-
opacity: 0.
|
|
6008
|
+
filter: alpha(opacity=20);
|
|
6009
|
+
opacity: 0.2;
|
|
6012
6010
|
}
|
|
6013
6011
|
.modal-header {
|
|
6014
|
-
padding:
|
|
6015
|
-
border-bottom: 1px solid #
|
|
6012
|
+
padding: 20px;
|
|
6013
|
+
border-bottom: 1px solid #ffffff;
|
|
6016
6014
|
}
|
|
6017
6015
|
.modal-header .close {
|
|
6018
6016
|
margin-top: -2px;
|
|
6019
6017
|
}
|
|
6020
6018
|
.modal-title {
|
|
6021
6019
|
margin: 0;
|
|
6022
|
-
line-height: 1.
|
|
6020
|
+
line-height: 1.33333333;
|
|
6023
6021
|
}
|
|
6024
6022
|
.modal-body {
|
|
6025
6023
|
position: relative;
|
|
6026
|
-
padding:
|
|
6024
|
+
padding: 20px;
|
|
6027
6025
|
}
|
|
6028
6026
|
.modal-footer {
|
|
6029
|
-
padding:
|
|
6027
|
+
padding: 20px;
|
|
6030
6028
|
text-align: right;
|
|
6031
|
-
border-top: 1px solid #
|
|
6029
|
+
border-top: 1px solid #ffffff;
|
|
6032
6030
|
}
|
|
6033
6031
|
.modal-footer .btn + .btn {
|
|
6034
6032
|
margin-bottom: 0;
|
|
@@ -6049,7 +6047,7 @@ button.close {
|
|
|
6049
6047
|
}
|
|
6050
6048
|
@media (min-width: 768px) {
|
|
6051
6049
|
.modal-dialog {
|
|
6052
|
-
width:
|
|
6050
|
+
width: 532px;
|
|
6053
6051
|
margin: 30px auto;
|
|
6054
6052
|
}
|
|
6055
6053
|
.modal-content {
|
|
@@ -6057,22 +6055,22 @@ button.close {
|
|
|
6057
6055
|
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
|
|
6058
6056
|
}
|
|
6059
6057
|
.modal-sm {
|
|
6060
|
-
width:
|
|
6058
|
+
width: 399px;
|
|
6061
6059
|
}
|
|
6062
6060
|
}
|
|
6063
6061
|
@media (min-width: 992px) {
|
|
6064
6062
|
.modal-lg {
|
|
6065
|
-
width:
|
|
6063
|
+
width: 798px;
|
|
6066
6064
|
}
|
|
6067
6065
|
}
|
|
6068
6066
|
.tooltip {
|
|
6069
6067
|
position: absolute;
|
|
6070
6068
|
z-index: 1070;
|
|
6071
6069
|
display: block;
|
|
6072
|
-
font-family:
|
|
6070
|
+
font-family: Ubuntu, sans-serif;
|
|
6073
6071
|
font-style: normal;
|
|
6074
6072
|
font-weight: 400;
|
|
6075
|
-
line-height: 1.
|
|
6073
|
+
line-height: 1.71428572;
|
|
6076
6074
|
line-break: auto;
|
|
6077
6075
|
text-align: left;
|
|
6078
6076
|
text-align: start;
|
|
@@ -6089,88 +6087,88 @@ button.close {
|
|
|
6089
6087
|
opacity: 0;
|
|
6090
6088
|
}
|
|
6091
6089
|
.tooltip.in {
|
|
6092
|
-
filter: alpha(opacity=
|
|
6093
|
-
opacity:
|
|
6090
|
+
filter: alpha(opacity=100);
|
|
6091
|
+
opacity: 1;
|
|
6094
6092
|
}
|
|
6095
6093
|
.tooltip.top {
|
|
6096
|
-
padding:
|
|
6094
|
+
padding: 6px 0;
|
|
6097
6095
|
margin-top: -3px;
|
|
6098
6096
|
}
|
|
6099
6097
|
.tooltip.right {
|
|
6100
|
-
padding: 0
|
|
6098
|
+
padding: 0 6px;
|
|
6101
6099
|
margin-left: 3px;
|
|
6102
6100
|
}
|
|
6103
6101
|
.tooltip.bottom {
|
|
6104
|
-
padding:
|
|
6102
|
+
padding: 6px 0;
|
|
6105
6103
|
margin-top: 3px;
|
|
6106
6104
|
}
|
|
6107
6105
|
.tooltip.left {
|
|
6108
|
-
padding: 0
|
|
6106
|
+
padding: 0 6px;
|
|
6109
6107
|
margin-left: -3px;
|
|
6110
6108
|
}
|
|
6111
6109
|
.tooltip.top .tooltip-arrow {
|
|
6112
6110
|
bottom: 0;
|
|
6113
6111
|
left: 50%;
|
|
6114
|
-
margin-left: -
|
|
6115
|
-
border-width:
|
|
6116
|
-
border-top-color: #
|
|
6112
|
+
margin-left: -6px;
|
|
6113
|
+
border-width: 6px 6px 0;
|
|
6114
|
+
border-top-color: #1a1a1a;
|
|
6117
6115
|
}
|
|
6118
6116
|
.tooltip.top-left .tooltip-arrow {
|
|
6119
|
-
right:
|
|
6117
|
+
right: 6px;
|
|
6120
6118
|
bottom: 0;
|
|
6121
|
-
margin-bottom: -
|
|
6122
|
-
border-width:
|
|
6123
|
-
border-top-color: #
|
|
6119
|
+
margin-bottom: -6px;
|
|
6120
|
+
border-width: 6px 6px 0;
|
|
6121
|
+
border-top-color: #1a1a1a;
|
|
6124
6122
|
}
|
|
6125
6123
|
.tooltip.top-right .tooltip-arrow {
|
|
6126
6124
|
bottom: 0;
|
|
6127
|
-
left:
|
|
6128
|
-
margin-bottom: -
|
|
6129
|
-
border-width:
|
|
6130
|
-
border-top-color: #
|
|
6125
|
+
left: 6px;
|
|
6126
|
+
margin-bottom: -6px;
|
|
6127
|
+
border-width: 6px 6px 0;
|
|
6128
|
+
border-top-color: #1a1a1a;
|
|
6131
6129
|
}
|
|
6132
6130
|
.tooltip.right .tooltip-arrow {
|
|
6133
6131
|
top: 50%;
|
|
6134
6132
|
left: 0;
|
|
6135
|
-
margin-top: -
|
|
6136
|
-
border-width:
|
|
6137
|
-
border-right-color: #
|
|
6133
|
+
margin-top: -6px;
|
|
6134
|
+
border-width: 6px 6px 6px 0;
|
|
6135
|
+
border-right-color: #1a1a1a;
|
|
6138
6136
|
}
|
|
6139
6137
|
.tooltip.left .tooltip-arrow {
|
|
6140
6138
|
top: 50%;
|
|
6141
6139
|
right: 0;
|
|
6142
|
-
margin-top: -
|
|
6143
|
-
border-width:
|
|
6144
|
-
border-left-color: #
|
|
6140
|
+
margin-top: -6px;
|
|
6141
|
+
border-width: 6px 0 6px 6px;
|
|
6142
|
+
border-left-color: #1a1a1a;
|
|
6145
6143
|
}
|
|
6146
6144
|
.tooltip.bottom .tooltip-arrow {
|
|
6147
6145
|
top: 0;
|
|
6148
6146
|
left: 50%;
|
|
6149
|
-
margin-left: -
|
|
6150
|
-
border-width: 0
|
|
6151
|
-
border-bottom-color: #
|
|
6147
|
+
margin-left: -6px;
|
|
6148
|
+
border-width: 0 6px 6px;
|
|
6149
|
+
border-bottom-color: #1a1a1a;
|
|
6152
6150
|
}
|
|
6153
6151
|
.tooltip.bottom-left .tooltip-arrow {
|
|
6154
6152
|
top: 0;
|
|
6155
|
-
right:
|
|
6156
|
-
margin-top: -
|
|
6157
|
-
border-width: 0
|
|
6158
|
-
border-bottom-color: #
|
|
6153
|
+
right: 6px;
|
|
6154
|
+
margin-top: -6px;
|
|
6155
|
+
border-width: 0 6px 6px;
|
|
6156
|
+
border-bottom-color: #1a1a1a;
|
|
6159
6157
|
}
|
|
6160
6158
|
.tooltip.bottom-right .tooltip-arrow {
|
|
6161
6159
|
top: 0;
|
|
6162
|
-
left:
|
|
6163
|
-
margin-top: -
|
|
6164
|
-
border-width: 0
|
|
6165
|
-
border-bottom-color: #
|
|
6160
|
+
left: 6px;
|
|
6161
|
+
margin-top: -6px;
|
|
6162
|
+
border-width: 0 6px 6px;
|
|
6163
|
+
border-bottom-color: #1a1a1a;
|
|
6166
6164
|
}
|
|
6167
6165
|
.tooltip-inner {
|
|
6168
|
-
max-width:
|
|
6166
|
+
max-width: 270px;
|
|
6169
6167
|
padding: 3px 8px;
|
|
6170
|
-
color: #
|
|
6168
|
+
color: #ffffff;
|
|
6171
6169
|
text-align: center;
|
|
6172
|
-
background-color: #
|
|
6173
|
-
border-radius:
|
|
6170
|
+
background-color: #1a1a1a;
|
|
6171
|
+
border-radius: 6px;
|
|
6174
6172
|
}
|
|
6175
6173
|
.tooltip-arrow {
|
|
6176
6174
|
position: absolute;
|
|
@@ -6185,12 +6183,12 @@ button.close {
|
|
|
6185
6183
|
left: 0;
|
|
6186
6184
|
z-index: 1060;
|
|
6187
6185
|
display: none;
|
|
6188
|
-
max-width:
|
|
6186
|
+
max-width: 210px;
|
|
6189
6187
|
padding: 1px;
|
|
6190
|
-
font-family:
|
|
6188
|
+
font-family: Ubuntu, sans-serif;
|
|
6191
6189
|
font-style: normal;
|
|
6192
6190
|
font-weight: 400;
|
|
6193
|
-
line-height: 1.
|
|
6191
|
+
line-height: 1.71428572;
|
|
6194
6192
|
line-break: auto;
|
|
6195
6193
|
text-align: left;
|
|
6196
6194
|
text-align: start;
|
|
@@ -6203,28 +6201,27 @@ button.close {
|
|
|
6203
6201
|
word-wrap: normal;
|
|
6204
6202
|
white-space: normal;
|
|
6205
6203
|
font-size: 14px;
|
|
6206
|
-
background-color: #
|
|
6204
|
+
background-color: #ffffff;
|
|
6207
6205
|
background-clip: padding-box;
|
|
6208
|
-
border: 1px solid #
|
|
6209
|
-
border:
|
|
6210
|
-
border-radius: 6px;
|
|
6206
|
+
border: 1px solid #ffffff;
|
|
6207
|
+
border-radius: 10px;
|
|
6211
6208
|
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
|
6212
6209
|
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
|
6213
6210
|
}
|
|
6214
6211
|
.popover.top {
|
|
6215
|
-
margin-top: -
|
|
6212
|
+
margin-top: -6px;
|
|
6216
6213
|
}
|
|
6217
6214
|
.popover.right {
|
|
6218
|
-
margin-left:
|
|
6215
|
+
margin-left: 6px;
|
|
6219
6216
|
}
|
|
6220
6217
|
.popover.bottom {
|
|
6221
|
-
margin-top:
|
|
6218
|
+
margin-top: 6px;
|
|
6222
6219
|
}
|
|
6223
6220
|
.popover.left {
|
|
6224
|
-
margin-left: -
|
|
6221
|
+
margin-left: -6px;
|
|
6225
6222
|
}
|
|
6226
6223
|
.popover > .arrow {
|
|
6227
|
-
border-width:
|
|
6224
|
+
border-width: 7px;
|
|
6228
6225
|
}
|
|
6229
6226
|
.popover > .arrow,
|
|
6230
6227
|
.popover > .arrow:after {
|
|
@@ -6237,75 +6234,71 @@ button.close {
|
|
|
6237
6234
|
}
|
|
6238
6235
|
.popover > .arrow:after {
|
|
6239
6236
|
content: "";
|
|
6240
|
-
border-width:
|
|
6237
|
+
border-width: 6px;
|
|
6241
6238
|
}
|
|
6242
6239
|
.popover.top > .arrow {
|
|
6243
|
-
bottom: -
|
|
6240
|
+
bottom: -7px;
|
|
6244
6241
|
left: 50%;
|
|
6245
|
-
margin-left: -
|
|
6246
|
-
border-top-color: #
|
|
6247
|
-
border-top-color: rgba(0, 0, 0, 0.25);
|
|
6242
|
+
margin-left: -7px;
|
|
6243
|
+
border-top-color: #ffffff;
|
|
6248
6244
|
border-bottom-width: 0;
|
|
6249
6245
|
}
|
|
6250
6246
|
.popover.top > .arrow:after {
|
|
6251
6247
|
bottom: 1px;
|
|
6252
|
-
margin-left: -
|
|
6248
|
+
margin-left: -6px;
|
|
6253
6249
|
content: " ";
|
|
6254
|
-
border-top-color: #
|
|
6250
|
+
border-top-color: #ffffff;
|
|
6255
6251
|
border-bottom-width: 0;
|
|
6256
6252
|
}
|
|
6257
6253
|
.popover.right > .arrow {
|
|
6258
6254
|
top: 50%;
|
|
6259
|
-
left: -
|
|
6260
|
-
margin-top: -
|
|
6261
|
-
border-right-color: #
|
|
6262
|
-
border-right-color: rgba(0, 0, 0, 0.25);
|
|
6255
|
+
left: -7px;
|
|
6256
|
+
margin-top: -7px;
|
|
6257
|
+
border-right-color: #ffffff;
|
|
6263
6258
|
border-left-width: 0;
|
|
6264
6259
|
}
|
|
6265
6260
|
.popover.right > .arrow:after {
|
|
6266
|
-
bottom: -
|
|
6261
|
+
bottom: -6px;
|
|
6267
6262
|
left: 1px;
|
|
6268
6263
|
content: " ";
|
|
6269
|
-
border-right-color: #
|
|
6264
|
+
border-right-color: #ffffff;
|
|
6270
6265
|
border-left-width: 0;
|
|
6271
6266
|
}
|
|
6272
6267
|
.popover.bottom > .arrow {
|
|
6273
|
-
top: -
|
|
6268
|
+
top: -7px;
|
|
6274
6269
|
left: 50%;
|
|
6275
|
-
margin-left: -
|
|
6270
|
+
margin-left: -7px;
|
|
6276
6271
|
border-top-width: 0;
|
|
6277
|
-
border-bottom-color: #
|
|
6278
|
-
border-bottom-color: rgba(0, 0, 0, 0.25);
|
|
6272
|
+
border-bottom-color: #ffffff;
|
|
6279
6273
|
}
|
|
6280
6274
|
.popover.bottom > .arrow:after {
|
|
6281
6275
|
top: 1px;
|
|
6282
|
-
margin-left: -
|
|
6276
|
+
margin-left: -6px;
|
|
6283
6277
|
content: " ";
|
|
6284
6278
|
border-top-width: 0;
|
|
6285
|
-
border-bottom-color: #
|
|
6279
|
+
border-bottom-color: #ffffff;
|
|
6286
6280
|
}
|
|
6287
6281
|
.popover.left > .arrow {
|
|
6288
6282
|
top: 50%;
|
|
6289
|
-
right: -
|
|
6290
|
-
margin-top: -
|
|
6283
|
+
right: -7px;
|
|
6284
|
+
margin-top: -7px;
|
|
6291
6285
|
border-right-width: 0;
|
|
6292
|
-
border-left-color: #
|
|
6293
|
-
border-left-color: rgba(0, 0, 0, 0.25);
|
|
6286
|
+
border-left-color: #ffffff;
|
|
6294
6287
|
}
|
|
6295
6288
|
.popover.left > .arrow:after {
|
|
6296
6289
|
right: 1px;
|
|
6297
|
-
bottom: -
|
|
6290
|
+
bottom: -6px;
|
|
6298
6291
|
content: " ";
|
|
6299
6292
|
border-right-width: 0;
|
|
6300
|
-
border-left-color: #
|
|
6293
|
+
border-left-color: #ffffff;
|
|
6301
6294
|
}
|
|
6302
6295
|
.popover-title {
|
|
6303
6296
|
padding: 8px 14px;
|
|
6304
6297
|
margin: 0;
|
|
6305
6298
|
font-size: 14px;
|
|
6306
|
-
background-color:
|
|
6307
|
-
border-bottom: 1px solid
|
|
6308
|
-
border-radius:
|
|
6299
|
+
background-color: transparent;
|
|
6300
|
+
border-bottom: 1px solid rgba(0, 0, 0, 0);
|
|
6301
|
+
border-radius: 9px 9px 0 0;
|
|
6309
6302
|
}
|
|
6310
6303
|
.popover-content {
|
|
6311
6304
|
padding: 9px 14px;
|
|
@@ -6398,7 +6391,7 @@ button.close {
|
|
|
6398
6391
|
left: 0;
|
|
6399
6392
|
width: 15%;
|
|
6400
6393
|
font-size: 20px;
|
|
6401
|
-
color: #
|
|
6394
|
+
color: #ffffff;
|
|
6402
6395
|
text-align: center;
|
|
6403
6396
|
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
|
|
6404
6397
|
background-color: rgba(0, 0, 0, 0);
|
|
@@ -6425,7 +6418,7 @@ button.close {
|
|
|
6425
6418
|
}
|
|
6426
6419
|
.carousel-control:hover,
|
|
6427
6420
|
.carousel-control:focus {
|
|
6428
|
-
color: #
|
|
6421
|
+
color: #ffffff;
|
|
6429
6422
|
text-decoration: none;
|
|
6430
6423
|
outline: 0;
|
|
6431
6424
|
filter: alpha(opacity=90);
|
|
@@ -6484,14 +6477,14 @@ button.close {
|
|
|
6484
6477
|
cursor: pointer;
|
|
6485
6478
|
background-color: #000 \9;
|
|
6486
6479
|
background-color: rgba(0, 0, 0, 0);
|
|
6487
|
-
border: 1px solid #
|
|
6480
|
+
border: 1px solid #ffffff;
|
|
6488
6481
|
border-radius: 10px;
|
|
6489
6482
|
}
|
|
6490
6483
|
.carousel-indicators .active {
|
|
6491
6484
|
width: 12px;
|
|
6492
6485
|
height: 12px;
|
|
6493
6486
|
margin: 0;
|
|
6494
|
-
background-color: #
|
|
6487
|
+
background-color: #ffffff;
|
|
6495
6488
|
}
|
|
6496
6489
|
.carousel-caption {
|
|
6497
6490
|
position: absolute;
|
|
@@ -6501,7 +6494,7 @@ button.close {
|
|
|
6501
6494
|
z-index: 10;
|
|
6502
6495
|
padding-top: 20px;
|
|
6503
6496
|
padding-bottom: 20px;
|
|
6504
|
-
color: #
|
|
6497
|
+
color: #ffffff;
|
|
6505
6498
|
text-align: center;
|
|
6506
6499
|
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
|
|
6507
6500
|
}
|