From 40501485ecd3948fc0049ed08f606c152b56ecfe Mon Sep 17 00:00:00 2001 From: guardrex <1622880+guardrex@users.noreply.github.com> Date: Tue, 5 Aug 2025 11:22:49 -0400 Subject: [PATCH 01/11] Static files updates --- .openpublishing.redirection.json | 5 + aspnetcore/fundamentals/map-static-files.md | 206 ------- aspnetcore/fundamentals/static-files.md | 535 ++++++++++++++++- .../static-files/_static/add-header.png | Bin 63333 -> 0 bytes .../static-files/includes/static-files5.md | 137 +++++ .../static-files/includes/static-files6-7.md | 127 ++++ .../static-files/includes/static-files6.md | 546 ------------------ .../static-files/includes/static-files8.md | 177 +----- 8 files changed, 803 insertions(+), 930 deletions(-) delete mode 100644 aspnetcore/fundamentals/map-static-files.md delete mode 100644 aspnetcore/fundamentals/static-files/_static/add-header.png create mode 100644 aspnetcore/fundamentals/static-files/includes/static-files5.md create mode 100644 aspnetcore/fundamentals/static-files/includes/static-files6-7.md delete mode 100644 aspnetcore/fundamentals/static-files/includes/static-files6.md diff --git a/.openpublishing.redirection.json b/.openpublishing.redirection.json index 9cfe8ad57d4a..f9b6b79c4a28 100644 --- a/.openpublishing.redirection.json +++ b/.openpublishing.redirection.json @@ -1652,6 +1652,11 @@ { "source_path": "aspnetcore/fundamentals/handle-errors.md", "redirect_url": "/aspnet/core/fundamentals/error-handling-api", + "redirect_document_id": false + }, + { + "source_path": "aspnetcore/fundamentals/map-static-files.md", + "redirect_url": "/aspnet/core/fundamentals/static-files", "redirect_document_id": false } ] diff --git a/aspnetcore/fundamentals/map-static-files.md b/aspnetcore/fundamentals/map-static-files.md deleted file mode 100644 index 4e0bda0c9b9b..000000000000 --- a/aspnetcore/fundamentals/map-static-files.md +++ /dev/null @@ -1,206 +0,0 @@ ---- -title: Map static files in ASP.NET Core -author: guardrex -description: Learn how to serve and secure mapped static files and configure static file hosting middleware behaviors in an ASP.NET Core web app. -monikerRange: '>= aspnetcore-9.0' -ms.author: wpickett -ms.custom: mvc -ms.date: 07/23/2025 -uid: fundamentals/map-static-files ---- -# Map static files in ASP.NET Core - - - -Static files, such as HTML, CSS, images, and JavaScript, are assets an ASP.NET Core app serves directly to clients by default. - -For Blazor static files guidance, which adds to or supersedes the guidance in this article, see . - -### Map Static Assets routing endpoint conventions (`MapStaticAssets`) - -Creating performant web apps requires optimizing asset delivery to the browser. Possible optimizations with include: - -* Serve a given asset once until the file changes or the browser clears its cache. Set the [`ETag`](https://developer.mozilla.org/docs/Web/HTTP/Headers/ETag) and [Last-Modified](https://developer.mozilla.org/docs/Web/HTTP/Headers/Last-Modified) headers. -* Prevent the browser from using old or stale assets after an app is updated. Set the [`Last-Modified`](https://developer.mozilla.org/docs/Web/HTTP/Headers/Last-Modified) header. -* Set appropriate [caching headers](https://developer.mozilla.org/docs/Web/HTTP/Headers/Cache-Control) on the response. -* Use [Caching Middleware](xref:performance/caching/middleware). -* Serve [compressed](/aspnet/core/performance/response-compression) versions of the assets when possible. This optimization doesn't include minification. -* Use a [CDN](/microsoft-365/enterprise/content-delivery-networks?view=o365-worldwide&preserve-view=true) to serve the assets closer to the user. -* [Fingerprinting assets](https://wikipedia.org/wiki/Fingerprint_(computing)) to prevent reusing old versions of files. - -`MapStaticAssets`: - -* Integrates the information gathered about static web assets during the build and publish process with a runtime library that processes this information to optimize file serving to the browser. -* Are routing endpoint conventions that optimize the delivery of static assets in an app. It's designed to work with all UI frameworks, including Blazor, Razor Pages, and MVC. - -### `MapStaticAssets` versus `UseStaticFiles` - - is available in ASP.NET Core in .NET 9 or later. must be used in versions prior to .NET 9. - -`UseStaticFiles` serves static files, but it doesn't provide the same level of optimization as `MapStaticAssets`. `MapStaticAssets` is optimized for serving assets that the app has knowledge of at runtime. If the app serves assets from other locations, such as disk or embedded resources, `UseStaticFiles` should be used. - -Map Static Assets provides the following benefits that aren't available when calling `UseStaticFiles`: - -* Build-time compression for all the assets in the app, including JavaScript (JS) and stylesheets but excluding image and font assets that are already compressed. [Gzip](https://tools.ietf.org/html/rfc1952) (`Content-Encoding: gz`) compression is used during development. Gzip with [Brotli](https://tools.ietf.org/html/rfc7932) (`Content-Encoding: br`) compression is used during publish. -* [Fingerprinting](https://developer.mozilla.org/docs/Glossary/Fingerprinting) for all assets at build time with a [Base64](https://developer.mozilla.org/docs/Glossary/Base64)-encoded string of the [SHA-256](xref:System.Security.Cryptography.SHA256) hash of each file's content. This prevents reusing an old version of a file, even if the old file is cached. Fingerprinted assets are cached using the [`immutable` directive](https://developer.mozilla.org/docs/Web/HTTP/Headers/Cache-Control#directives), which results in the browser never requesting the asset again until it changes. For browsers that don't support the `immutable` directive, a [`max-age` directive](https://developer.mozilla.org/docs/Web/HTTP/Headers/Cache-Control#directives) is added. - * Even if an asset isn't fingerprinted, content based `ETags` are generated for each static asset using the fingerprint hash of the file as the `ETag` value. This ensures that the browser only downloads a file if its content changes (or the file is being downloaded for the first time). - * Internally, the framework maps physical assets to their fingerprints, which allows the app to: - * Find automatically-generated assets, such as Razor component scoped CSS for Blazor's [CSS isolation feature](xref:blazor/components/css-isolation) and JS assets described by [JS import maps](https://developer.mozilla.org/docs/Web/HTML/Element/script/type/importmap). - * Generate link tags in the `` content of the page to preload assets. -* During [Visual Studio Hot Reload](/visualstudio/debugger/hot-reload) development testing: - * Integrity information is removed from the assets to avoid issues when a file is changed while the app is running. - * Static assets aren't cached to ensure that the browser always retrieves current content. - -Map Static Assets doesn't provide features for minification or other file transformations. Minification is usually handled by custom code or [third-party tooling](xref:blazor/fundamentals/index#community-links-to-blazor-resources). - -The following features are supported with `UseStaticFiles` but not with `MapStaticAssets`: - -* [Serving files from disk or embedded resources, or other locations](xref:fundamentals/static-files#serve-files-from-multiple-locations) -* [Serve files outside of web root](xref:fundamentals/static-files#serve-files-outside-of-web-root) -* [Set HTTP response headers](xref:fundamentals/static-files#set-http-response-headers) -* [Directory browsing](xref:fundamentals/static-files#directory-browsing) -* [Serve default documents](xref:fundamentals/static-files#serve-default-documents) -* [`FileExtensionContentTypeProvider`](xref:fundamentals/static-files#fileextensioncontenttypeprovider) -* [Serve files from multiple locations](xref:fundamentals/static-files#serve-files-from-multiple-locations) - -### Serve files in web root - -In the app's `Program` file, sets the [content root](xref:fundamentals/index#content-root) to the current directory. Call method to enable serving static files. The parameterless overload results in serving the files from the app's [web root](xref:fundamentals/index#web-root). The default web root directory is `{CONTENT ROOT}/wwwroot`, where the `{CONTENT ROOT}` placeholder is the content root. - -```csharp -var builder = WebApplication.CreateBuilder(args); - -... - -app.MapStaticAssets(); -``` - -You can change the web root with the method. For more information, see the [Content root](xref:fundamentals/index#content-root) and [Web root](xref:fundamentals/index#web-root) sections of the *ASP.NET Core fundamentals overview* article. - -Static files are accessible via a path relative to the web root. For example, the Blazor Web App project template contains the `lib` folder within the `wwwroot` folder, which contains Bootstrap static assets. - -If an app placed its images in an `images` folder in `wwwroot`, the following markup references `wwwroot/images/favicon.png`: - -```html - -``` - -In Razor Pages and MVC apps (but not Blazor apps), the tilde character `~` points to the web root. In the following example, `~/images/icon.jpg` loads the icon image (`icon.jpg`) from the app's `wwwroot/images` folder: - -```cshtml -Icon image -``` - -The URL format for the preceding example is `https://{HOST}/images/{FILE NAME}`. The `{HOST}` placeholder is the host, and the `{FILE NAME}` placeholder is the file name. For the preceding example running at the app's localhost address on port 5001, the absolute URL is `https://localhost:5001/images/icon.jpg`. - -### Serve files outside of web root - -Consider the following directory hierarchy with static files residing outside of the app's [web root](xref:fundamentals/index#web-root) in a folder named `MyStaticFiles`: - -* `wwwroot` - * `css` - * `images` - * `js` -* `MyStaticFiles` - * `images` - * `red-rose.jpg` - -A request can access the `red-rose.jpg` file by configuring the Static File Middleware as follows: - -[!code-csharp[](~/fundamentals/static-files/samples/9.x/StaticFilesSample/Program.cs?name=snippet_rr&highlight=1,18-24)] - -In the preceding code, the `MyStaticFiles` directory hierarchy is exposed publicly via the `StaticFiles` URL segment. A request to `https://{HOST}/StaticFiles/images/red-rose.jpg`, where the `{HOST}` placeholder is the host, serves the `red-rose.jpg` file. - -The following markup references `MyStaticFiles/images/red-rose.jpg`: - -[!code-html[](~/fundamentals/static-files/samples/9.x/StaticFilesSample/Views/Home2/MyStaticFilesRR.cshtml?range=1)] - -To serve files from multiple locations, see [Serve files from multiple locations](xref:fundamentals/static-files#serve-files-from-multiple-locations). - -### Set HTTP response headers - -A object can be used to set HTTP response headers. In addition to configuring the middleware to serve static files from the [web root](xref:fundamentals/index#web-root), the following code sets the [`Cache-Control`](https://developer.mozilla.org/docs/Web/HTTP/Headers/Cache-Control) header: - -[!code-csharp[](~/fundamentals/static-files/samples/9.x/StaticFilesSample/Program.cs?name=snippet_rh&highlight=16-24)] - -The preceding code makes static files publicly available in the local cache for one week. - -## Static file authorization - -The ASP.NET Core templates call before calling . Most apps follow this pattern. When `MapStaticAssets` is called before the authorization middleware: - -* No authorization checks are performed on the static files. -* Static files served by the Static File Middleware, such as those under `wwwroot`, are publicly accessible. - -To serve static files based on authorization, see [Static file authorization](xref:fundamentals/static-files#static-file-authorization). - -## Serve files from multiple locations - -Consider the following Razor page which displays the `/MyStaticFiles/image3.png` file: - -[!code-cshtml[](~/fundamentals/static-files/samples/9.x/StaticFilesSample/Pages/Test.cshtml?highlight=5)] - -`UseStaticFiles` and `UseFileServer` default to the file provider pointing at `wwwroot`. Additional instances of `UseStaticFiles` and `UseFileServer` can be provided with other file providers to serve files from other locations. The following example calls `UseStaticFiles` twice to serve files from both `wwwroot` and `MyStaticFiles`: - -[!code-csharp[](~/fundamentals/static-files/samples/9.x/StaticFilesSample/Program.cs?name=snippet_mul)] - -Using the preceding code: - -* The `/MyStaticFiles/image3.png` file is displayed. -* [Image Tag Helpers](xref:mvc/views/tag-helpers/builtin-th/image-tag-helper) () aren't applied because Tag Helpers depend on . `WebRootFileProvider` hasn't been updated to include the `MyStaticFiles` folder. - -The following code updates the `WebRootFileProvider`, which enables the Image Tag Helper to provide a version: - -[!code-csharp[](~/fundamentals/static-files/samples/9.x/StaticFilesSample/Program.cs?name=snippet_mult2)] - -> [!NOTE] -> The preceding approach applies to Razor Pages and MVC apps. For guidance that applies to Blazor Web Apps, see . - -## Serve files outside wwwroot by updating `IWebHostEnvironment.WebRootPath` - -When is set to a folder other than `wwwroot`: - -* In the development environment, static assets found in both `wwwroot` and the updated `IWebHostEnvironment.WebRootPath` are served from `wwwroot`. -* In any environment other than development, duplicate static assets are served from the updated `IWebHostEnvironment.WebRootPath` folder. - -Consider a web app created with the empty web template: - -* Containing an `Index.html` file in `wwwroot` and `wwwroot-custom`. -* With the following updated `Program.cs` file that sets `WebRootPath = "wwwroot-custom"`: - - [!code-csharp[](~/fundamentals/static-files/samples/9.x/WebRoot/Program.cs?name=snippet1)] - -In the preceding code, requests to `/`: - -* In the development environment, return `wwwroot/Index.html`. -* In any environment other than development, return `wwwroot-custom/Index.html`. - -To ensure assets from `wwwroot-custom` are returned, use one of the following approaches: - -* Delete duplicate named assets in `wwwroot`. -* Set `"ASPNETCORE_ENVIRONMENT"` in `Properties/launchSettings.json` to any value other than `"Development"`. -* Completely disable static web assets by setting `false` in the project file. ***WARNING, disabling static web assets disables [Razor Class Libraries](xref:razor-pages/ui-class)***. -* Add the following XML to the project file: - - ```xml - - - - ``` - -The following code updates `IWebHostEnvironment.WebRootPath` to a non-Development value (Staging), guaranteeing duplicate content is returned from `wwwroot-custom` rather than `wwwroot`: - -[!code-csharp[](~/fundamentals/static-files/samples/9.x/WebRoot/Program.cs?name=snippet2&highlight=5)] - -When developing a server-side Blazor app and testing locally, see . - -## Additional resources - -* [View or download sample code](https://github.com/dotnet/AspNetCore.Docs/tree/main/aspnetcore/fundamentals/static-files/samples) ([how to download](xref:fundamentals/index#how-to-download-a-sample)) -* -* -* diff --git a/aspnetcore/fundamentals/static-files.md b/aspnetcore/fundamentals/static-files.md index 98e8919953c0..61750d8c5a07 100644 --- a/aspnetcore/fundamentals/static-files.md +++ b/aspnetcore/fundamentals/static-files.md @@ -1,17 +1,544 @@ --- title: Static files in ASP.NET Core author: wadepickett -description: Learn how to serve and secure static files and configure static file hosting middleware behaviors in an ASP.NET Core web app. +description: Learn how to serve and secure static files and configure Static Files Middleware behaviors in an ASP.NET Core web app. monikerRange: '>= aspnetcore-3.1' ms.author: wpickett ms.custom: mvc -ms.date: 03/18/2025 +ms.date: 08/06/2025 uid: fundamentals/static-files --- # Static files in ASP.NET Core [!INCLUDE[](~/includes/not-latest-version.md)] -[!INCLUDE[](~/fundamentals/static-files/includes/static-files8.md)] +Static files, also called static assets, are files an ASP.NET Core app that aren't dynamically generated and served directly to clients on request, such as HTML, CSS, image, and JavaScript files. -[!INCLUDE[](~/fundamentals/static-files/includes/static-files6.md)] +For Blazor static files guidance, which adds to or supersedes the guidance in this article, see . + +:::moniker range=">= aspnetcore-9.0" + +### Map Static Assets routing endpoint conventions (`MapStaticAssets`) + +Creating performant web apps requires optimizing asset delivery to the browser. Possible optimizations with include: + +* Serve a given asset once until the file changes or the browser clears its cache. Set the [`ETag`](https://developer.mozilla.org/docs/Web/HTTP/Headers/ETag) and [Last-Modified](https://developer.mozilla.org/docs/Web/HTTP/Headers/Last-Modified) headers. +* Prevent the browser from using old or stale assets after an app is updated. Set the [`Last-Modified`](https://developer.mozilla.org/docs/Web/HTTP/Headers/Last-Modified) header. +* Set appropriate [caching headers](https://developer.mozilla.org/docs/Web/HTTP/Headers/Cache-Control) on the response. +* Use [Caching Middleware](xref:performance/caching/middleware). +* Serve [compressed](/aspnet/core/performance/response-compression) versions of the assets when possible. This optimization doesn't include minification. +* Use a [CDN](/microsoft-365/enterprise/content-delivery-networks?view=o365-worldwide&preserve-view=true) to serve the assets closer to the user. +* [Fingerprinting assets](https://wikipedia.org/wiki/Fingerprint_(computing)) to prevent reusing old versions of files. + +`MapStaticAssets`: + +* Integrates the information gathered about static web assets during the build and publish process with a runtime library that processes this information to optimize file serving to the browser. +* Are routing endpoint conventions that optimize the delivery of static assets in an app. It's designed to work with all UI frameworks, including Blazor, Razor Pages, and MVC. + +### `MapStaticAssets` versus `UseStaticFiles` + + is available in ASP.NET Core in .NET 9 or later. must be used in versions prior to .NET 9. + +`UseStaticFiles` serves static files, but it doesn't provide the same level of optimization as `MapStaticAssets`. `MapStaticAssets` is optimized for serving assets that the app has knowledge of at runtime. If the app serves assets from other locations, such as disk or embedded resources, `UseStaticFiles` should be used. + +Map Static Assets provides the following benefits that aren't available when calling `UseStaticFiles`: + +* Build-time compression for all the assets in the app, including JavaScript (JS) and stylesheets but excluding image and font assets that are already compressed. [Gzip](https://tools.ietf.org/html/rfc1952) (`Content-Encoding: gz`) compression is used during development. Gzip with [Brotli](https://tools.ietf.org/html/rfc7932) (`Content-Encoding: br`) compression is used during publish. +* [Fingerprinting](https://developer.mozilla.org/docs/Glossary/Fingerprinting) for all assets at build time with a [Base64](https://developer.mozilla.org/docs/Glossary/Base64)-encoded string of the [SHA-256](xref:System.Security.Cryptography.SHA256) hash of each file's content. This prevents reusing an old version of a file, even if the old file is cached. Fingerprinted assets are cached using the [`immutable` directive](https://developer.mozilla.org/docs/Web/HTTP/Headers/Cache-Control#directives), which results in the browser never requesting the asset again until it changes. For browsers that don't support the `immutable` directive, a [`max-age` directive](https://developer.mozilla.org/docs/Web/HTTP/Headers/Cache-Control#directives) is added. + * Even if an asset isn't fingerprinted, content based `ETags` are generated for each static asset using the fingerprint hash of the file as the `ETag` value. This ensures that the browser only downloads a file if its content changes (or the file is being downloaded for the first time). + * Internally, the framework maps physical assets to their fingerprints, which allows the app to: + * Find automatically-generated assets, such as Razor component scoped CSS for Blazor's [CSS isolation feature](xref:blazor/components/css-isolation) and JS assets described by [JS import maps](https://developer.mozilla.org/docs/Web/HTML/Element/script/type/importmap). + * Generate link tags in the `` content of the page to preload assets. +* During [Visual Studio Hot Reload](/visualstudio/debugger/hot-reload) development testing: + * Integrity information is removed from the assets to avoid issues when a file is changed while the app is running. + * Static assets aren't cached to ensure that the browser always retrieves current content. + +Map Static Assets doesn't provide features for minification or other file transformations. Minification is usually handled by custom code or [third-party tooling](xref:blazor/fundamentals/index#community-links-to-blazor-resources). + +The following features are supported with `UseStaticFiles` but not with `MapStaticAssets`: + +* [Serve files outside of the web root directory](#serve-files-outside-of-the-web-root-directory) +* [Set HTTP response headers](#set-http-response-headers) + + + +* [Serving files from disk or embedded resources, or other locations](#serve-files-from-multiple-locations) + +* [Directory browsing](#directory-browsing) +* [Serve default documents](#serve-default-documents) +* [`FileExtensionContentTypeProvider`](#fileextensioncontenttypeprovider) +* [Serve files from multiple locations](#serve-files-from-multiple-locations) + +:::moniker-end + +### Serve files in the web root directory + +By default, static files are stored within the project's [web root](xref:fundamentals/index#web-root) directory. The default directory is `{CONTENT ROOT}/wwwroot`, where the `{CONTENT ROOT}` placeholder is the app's [content root](xref:fundamentals/index#content-root). Use the method if you want to change the web root. For more information, see . + +:::moniker range=">= aspnetcore-6.0" + +The method sets the content root to the current directory: + +```csharp +var builder = WebApplication.CreateBuilder(args); +``` + +:::moniker-end + +:::moniker range="< aspnetcore-6.0" + +The method sets the content root to the current directory: + +```csharp +Host.CreateDefaultBuilder(args) +``` + +:::moniker-end + +:::moniker range=">= aspnetcore-9.0" + +Call in the app's request processing pipeline to enable serving static files from the app's [web root](xref:fundamentals/index#web-root): + +```csharp +app.MapStaticAssets(); +``` + +:::moniker-end + +:::moniker range="< aspnetcore-9.0" + +Call in the app's request processing pipeline to enable serving static files from the app's [web root](xref:fundamentals/index#web-root): + +```csharp +app.UseStaticFiles(); +``` + +:::moniker-end + +Static files are accessible via a path relative to the [web root](xref:fundamentals/index#web-root). + +To access an image at `wwwroot/images/favicon.png`: + +* URL format: `https://{HOST}/images/{FILE NAME}` + * The `{HOST}` placeholder is the host. + * The `{FILE NAME}` placeholder is the file name. +* Examples + * Absolute URL: `https://localhost:5001/images/favicon.png` + * Root relative URL: `images/favicon.png` + +In a Blazor app, `images/favicon.png` loads the icon image (`favicon.png`) from the app's `wwwroot/images` folder: + +```razor + +``` + +In Razor Pages and MVC apps, the tilde character `~` points to the web root. In the following example, `~/images/favicon.png` loads the icon image (`favicon.png`) from the app's `wwwroot/images` folder: + +```cshtml + +``` + +### Serve files outside of the web root directory + +Consider the following directory hierarchy with static files residing outside of the app's [web root](xref:fundamentals/index#web-root) in a folder named `ExtraStaticFiles`: + +* `wwwroot` + * `css` + * `images` + * `js` +* `ExtraStaticFiles` + * `images` + * `red-rose.jpg` + +A request can access `red-rose.jpg` by configuring a new instance of Static File Middleware: + +```csharp +using Microsoft.Extensions.FileProviders; + +... + +app.UseStaticFiles(new StaticFileOptions +{ + FileProvider = new PhysicalFileProvider( + Path.Combine(builder.Environment.ContentRootPath, "ExtraStaticFiles")), + RequestPath = "/static-files" +}); +``` + +In the preceding code, the `ExtraStaticFiles` directory hierarchy is exposed publicly via the `StaticFiles` URL segment. A request to `https://{HOST}/StaticFiles/images/red-rose.jpg`, where the `{HOST}` placeholder is the host, serves the `red-rose.jpg` file. + +The following markup references `ExtraStaticFiles/images/red-rose.jpg`: + +```html +A red rose +``` + +For the preceding example, tilde-slash notation is supported in Razor Pages and MVC views (`src="~/StaticFiles/images/red-rose.jpg"`), not for Razor components in Blazor apps. + +### Set HTTP response headers + +Use to set HTTP response headers. In addition to configuring Static File Middleware to serve static files, the following code sets the [`Cache-Control` header](https://developer.mozilla.org/docs/Web/HTTP/Headers/Cache-Control) to 604,800 seconds (one week): + +```csharp +using Microsoft.AspNetCore.Http; + +... + +app.UseStaticFiles(new StaticFileOptions +{ + OnPrepareResponse = ctx => + { + ctx.Context.Response.Headers.Append( + "Cache-Control", "public, max-age=604800"); + } +}); +``` + +## Static file authorization + +:::moniker range=">= aspnetcore-9.0" + +The ASP.NET Core templates call before calling . Most apps follow this pattern. When `MapStaticAssets` is called before the authorization middleware: + +:::moniker-end + +:::moniker range="< aspnetcore-9.0" + +The ASP.NET Core templates call before calling . Most apps follow this pattern. When the Static File Middleware is called before the authorization middleware: + +:::moniker-end + +* No authorization checks are performed on the static files. +* Static files served by the Static File Middleware, such as those under `wwwroot`, are publicly accessible. + +The ASP.NET Core templates call before calling . Most apps follow this pattern. When the Static File Middleware is called before the authorization middleware: + +* No authorization checks are performed on the static files. +* Static files served by the Static File Middleware, such as those under `wwwroot`, are publicly accessible. + +To serve static files based on authorization: + +* Store them outside of `wwwroot`. +* Call `UseStaticFiles`, specifying a path, after calling `UseAuthorization`. +* Set the [fallback authorization policy](xref:Microsoft.AspNetCore.Authorization.AuthorizationOptions.FallbackPolicy). + +:::moniker range=">= aspnetcore-6.0" + +```csharp +using Microsoft.AspNetCore.Authorization; +using Microsoft.Extensions.FileProviders; +... + +var builder = WebApplication.CreateBuilder(args); + +... + +builder.Services.AddAuthorization(options => +{ + options.FallbackPolicy = new AuthorizationPolicyBuilder() + .RequireAuthenticatedUser() + .Build(); +}); + +... + +app.UseHttpsRedirection(); +app.UseStaticFiles(); + +app.UseRouting(); + +app.UseAuthentication(); +app.UseAuthorization(); + +app.UseStaticFiles(new StaticFileOptions +{ + FileProvider = new PhysicalFileProvider( + Path.Combine(builder.Environment.ContentRootPath, "MyStaticFiles")), + RequestPath = "/StaticFiles" +}); + +... +``` + +:::moniker-end + +:::moniker range="< aspnetcore-6.0" + +In `Startup.ConfigureServices`: + +```csharp +services.AddAuthorization(options => +{ + options.FallbackPolicy = new AuthorizationPolicyBuilder() + .RequireAuthenticatedUser() + .Build(); +}); +``` + +In `Startup.Configure`: + +```csharp +app.UseAuthentication(); +app.UseAuthorization(); + +app.UseStaticFiles(new StaticFileOptions +{ + FileProvider = new PhysicalFileProvider( + Path.Combine(env.ContentRootPath, "ExtraStaticFiles")), + RequestPath = "/static-files" +}); +``` + +:::moniker-end + +In the preceding code, the fallback authorization policy requires ***all*** users to be authenticated. Endpoints such as controllers, Razor Pages, etc that specify their own authorization requirements don't use the fallback authorization policy. For example, Razor Pages, controllers, or action methods with `[AllowAnonymous]` or `[Authorize(PolicyName="MyPolicy")]` use the applied authorization attribute rather than the fallback authorization policy. + + adds to the current instance, which enforces that the current user is authenticated. + +Static assets under `wwwroot` are publicly accessible because the default Static File Middleware (`app.UseStaticFiles();`) is called before `UseAuthentication`. Static assets in the *ExtraStaticFiles* folder require authentication. + +An alternative approach to serve files based on authorization is to: + +* Store them outside of `wwwroot` and any directory accessible to the Static File Middleware. +* Serve them via an action method to which authorization is applied and return a object: + +From a Razor page (`Pages/BannerImage.cshtml.cs`): + +```csharp +public class BannerImageModel : PageModel +{ + private readonly IWebHostEnvironment _env; + + public BannerImageModel(IWebHostEnvironment env) => _env = env; + + public PhysicalFileResult OnGet() + { + var filePath = Path.Combine( + _env.ContentRootPath, "ExtraStaticFiles", "images", "red-rose.jpg"); + + return PhysicalFile(filePath, "image/jpeg"); + } +} +``` + +From a controller (`Controllers/HomeController.cs`): + +```csharp +[Authorize] +public IActionResult BannerImage() +{ + var filePath = Path.Combine( + _env.ContentRootPath, "ExtraStaticFiles", "images", "red-rose.jpg"); + + return PhysicalFile(filePath, "image/jpeg"); +} +``` + +The preceding approach requires a page or endpoint per file. + +:::moniker range=">= aspnetcore-8.0" + +The following code returns files for authenticated users: + +```csharp +builder.Services.AddAuthorization(o => +{ + o.AddPolicy("AuthenticatedUsers", b => b.RequireAuthenticatedUser()); +}); + +... + +app.MapGet("/files/{fileName}", IResult (string fileName) => +{ + var filePath = GetOrCreateFilePath(fileName); + + if (File.Exists(filePath)) + { + return TypedResults.PhysicalFile(filePath, fileName); + } + + return TypedResults.NotFound("No file found with the supplied file name"); +}) +.WithName("GetFileByName") +.RequireAuthorization("AuthenticatedUsers"); +``` + +The following code uploads files for authenticated users: + +```csharp +builder.Services.AddAuthorization(o => +{ + o.AddPolicy("AdminsOnly", b => b.RequireRole("admin")); +}); + +... + +// IFormFile uses memory buffer for uploading. For handling large +// files, use streaming instead. See the *File uploads* article +// in the ASP.NET Core documentation: +// https://learn.microsoft.com/aspnet/core/mvc/models/file-uploads +app.MapPost("/files", async (IFormFile file, LinkGenerator linker, + HttpContext context) => +{ + // Don't rely on the value in 'file.FileName', as it's only metadata that can + // be manipulated by the end-user. Consider the 'Utilities.IsFileValid' method + // that takes an 'IFormFile' and validates its signature within the + // 'AllowedFileSignatures'. + + var fileSaveName = Guid.NewGuid().ToString("N") + + Path.GetExtension(file.FileName); + await SaveFileWithCustomFileName(file, fileSaveName); + + context.Response.Headers.Append("Location", linker.GetPathByName(context, + "GetFileByName", new { fileName = fileSaveName})); + + return TypedResults.Ok("File Uploaded Successfully!"); +}) +.RequireAuthorization("AdminsOnly"); +``` + +:::moniker-end + +:::moniker range=">= aspnetcore-6.0" + +## Serve files outside wwwroot by updating `IWebHostEnvironment.WebRootPath` + +When is set to a folder other than `wwwroot`, the following default behaviors are exhibited: + +* In the development environment, static assets are served from `wwwroot` if assets with the same name are in both `wwwroot` and a different folder assigned to `IWebHostEnvironment.WebRootPath`. +* In any environment other than development, duplicate static assets are served from the `IWebHostEnvironment.WebRootPath` folder. + +Consider a web app created from the empty web template: + +* Containing an `Index.html` file in `wwwroot` and `wwwroot-custom`. +* With the following updated `Program.cs` file that sets `WebRootPath = "wwwroot-custom"`: + +```csharp +var builder = WebApplication.CreateBuilder(new WebApplicationOptions +{ + Args = args, + // Look for static files in "wwwroot-custom" + WebRootPath = "wwwroot-custom" +}); + +var app = builder.Build(); + +app.UseDefaultFiles(); +app.MapStaticAssets(); + +app.Run(); +``` + +By default, requests to `/`: + +* In the development environment, `wwwroot/Index.html` is returned. +* In any environment other than development, `wwwroot-custom/Index.html` is returned. + +To ensure assets from `wwwroot-custom` are always returned, use ***one*** of the following approaches: + +* Delete duplicate-named assets in `wwwroot`. + +* Set `"ASPNETCORE_ENVIRONMENT"` in `Properties/launchSettings.json` to any value other than `Development`. + +* Disable static web assets by setting `` to `false` in the app's project file. ***WARNING:*** Disabling static web assets disables [Razor class libraries](xref:razor-pages/ui-class). + +* Add the following XML to the project file: + + ```xml + + + + ``` + +The following code updates `IWebHostEnvironment.WebRootPath` to a non-Development value (`Staging`), guaranteeing duplicate content is returned from `wwwroot-custom` rather than `wwwroot`: + +```csharp +var builder = WebApplication.CreateBuilder(new WebApplicationOptions +{ + Args = args, + EnvironmentName = Environments.Staging, + WebRootPath = "wwwroot-custom" +}); +``` + +When developing a server-side Blazor app and testing locally, see . + +:::moniker-end + +## Serve files from multiple locations + +:::moniker range=">= aspnetcore-6.0" + +*The guidance in this section applies to Razor Pages and MVC apps. For guidance that applies to Blazor Web Apps, see .* + +Consider the following Razor page which displays the `/ExtraStaticFiles/image3.png` file: + +```html +Test +``` + +`UseStaticFiles` and `UseFileServer` default to the file provider pointing at `wwwroot`. Additional instances of `UseStaticFiles` and `UseFileServer` can be provided with other file providers to serve files from other locations. The following example calls `UseStaticFiles` twice to serve files from both `wwwroot` and `ExtraStaticFiles`: + +```csharp +app.UseStaticFiles(); // Serve files from wwwroot +app.UseStaticFiles(new StaticFileOptions +{ + FileProvider = new PhysicalFileProvider( + Path.Combine(builder.Environment.ContentRootPath, "ExtraStaticFiles")) +}); +``` + +Using the preceding code: + +* The `/ExtraStaticFiles/image3.png` file is displayed. +* [Image Tag Helpers](xref:mvc/views/tag-helpers/builtin-th/image-tag-helper) () aren't applied because Tag Helpers depend on . `WebRootFileProvider` hasn't been updated to include the `ExtraStaticFiles` folder. + +The following code updates the `WebRootFileProvider`, which enables the Image Tag Helper to provide a version: + +```csharp +using Microsoft.Extensions.FileProviders; + +... + +var webRootProvider = new PhysicalFileProvider(builder.Environment.WebRootPath); +var newPathProvider = new PhysicalFileProvider( + Path.Combine(builder.Environment.ContentRootPath, "ExtraStaticFiles")); + +var compositeProvider = new CompositeFileProvider(webRootProvider, newPathProvider); + +// Update the default provider. +app.Environment.WebRootFileProvider = compositeProvider; + +app.MapStaticAssets(); +``` + +:::moniker-end + +:::moniker range="< aspnetcore-6.0" + +`UseStaticFiles` and `UseFileServer` default to the file provider pointing at `wwwroot`. Additional instances of `UseStaticFiles` and `UseFileServer` can be provided with other file providers to serve files from other locations. For more information, see [this GitHub issue](https://github.com/dotnet/AspNetCore.Docs/issues/15578). + +:::moniker-end + + + + + + + + + + + + + + + + + + + + +## Additional resources + +* diff --git a/aspnetcore/fundamentals/static-files/_static/add-header.png b/aspnetcore/fundamentals/static-files/_static/add-header.png deleted file mode 100644 index 92bcd7c0d4f97b672c49b21177e64e6f9e69abd0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 63333 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 in `Startup.ConfigureServices`. +* in `Startup.Configure`. + +[!code-csharp[](~/fundamentals/static-files/samples/3.x/StaticFilesSample/StartupBrowse.cs?name=snippet_ClassMembers&highlight=4,21-35)] + +The preceding code allows directory browsing of the *wwwroot/images* folder using the URL `https:///MyImages`, with links to each file and folder. + +![directory browsing](~/fundamentals/static-files/_static/dir-browse.png) + +## Serve default documents + +Setting a default page provides visitors a starting point on a site. To serve a default file from `wwwroot` without requiring the request URL to include the file's name, call the method: + +[!code-csharp[](~/fundamentals/static-files/samples/3.x/StaticFilesSample/StartupEmpty.cs?name=snippet_Configure&highlight=15)] + +`UseDefaultFiles` must be called before `UseStaticFiles` to serve the default file. `UseDefaultFiles` is a URL rewriter that doesn't serve the file. + +With `UseDefaultFiles`, requests to a folder in `wwwroot` search for: + +* `default.htm` +* `default.html` +* `index.htm` +* `index.html` + +The first file found from the list is served as though the request included the file's name. The browser URL continues to reflect the URI requested. + +The following code changes the default file name to `mydefault.html`: + +[!code-csharp[](~/fundamentals/static-files/samples/3.x/StaticFilesSample/StartupDefault.cs?name=snippet_DefaultFiles)] + +The following code shows `Startup.Configure` with the preceding code: + +[!code-csharp[](~/fundamentals/static-files/samples/3.x/StaticFilesSample/StartupDefault.cs?name=snippet_Configure&highlight=15-19)] + +### UseFileServer for default documents + + combines the functionality of `UseStaticFiles`, `UseDefaultFiles`, and optionally `UseDirectoryBrowser`. + +Call `app.UseFileServer` to enable the serving of static files and the default file. Directory browsing isn't enabled. The following code shows `Startup.Configure` with `UseFileServer`: + +[!code-csharp[](~/fundamentals/static-files/samples/3.x/StaticFilesSample/StartupEmpty2.cs?name=snippet_Configure&highlight=15)] + +The following code enables the serving of static files, the default file, and directory browsing: + +```csharp +app.UseFileServer(enableDirectoryBrowsing: true); +``` + +The following code shows `Startup.Configure` with the preceding code: + +[!code-csharp[](~/fundamentals/static-files/samples/3.x/StaticFilesSample/StartupEmpty3.cs?name=snippet_Configure&highlight=15)] + +Consider the following directory hierarchy: + +* `wwwroot` + * `css` + * `images` + * `js` +* `MyStaticFiles` + * `images` + * `MyImage.jpg` + * `default.html` + +The following code enables the serving of static files, the default file, and directory browsing of `MyStaticFiles`: + +[!code-csharp[](~/fundamentals/static-files/samples/3.x/StaticFilesSample/StartupFileServer.cs?name=snippet_ClassMembers&highlight=4,21-31)] + + must be called when the `EnableDirectoryBrowsing` property value is `true`. + +Using the file hierarchy and preceding code, URLs resolve as follows: + +| URI | Response | +| --- | --- | +| `https:///StaticFiles/images/MyImage.jpg` | `MyStaticFiles/images/MyImage.jpg` | +| `https:///StaticFiles` | `MyStaticFiles/default.html` | + +If no default-named file exists in the *MyStaticFiles* directory, `https:///StaticFiles` returns the directory listing with clickable links: + +![Static files list](~/fundamentals/static-files/_static/db2.png) + + and perform a client-side redirect from the target URI without a trailing `/` to the target URI with a trailing `/`. For example, from `https:///StaticFiles` to `https:///StaticFiles/`. Relative URLs within the *StaticFiles* directory are invalid without a trailing slash (`/`). + +## FileExtensionContentTypeProvider + +The class contains a `Mappings` property that serves as a mapping of file extensions to MIME content types. In the following sample, several file extensions are mapped to known MIME types. The *.rtf* extension is replaced, and *.mp4* is removed: + +[!code-csharp[](~/fundamentals/static-files/samples/3.x/StaticFilesSample/StartupFileExtensionContentTypeProvider.cs?name=snippet_Provider)] + +The following code shows `Startup.Configure` with the preceding code: + +[!code-csharp[](~/fundamentals/static-files/samples/3.x/StaticFilesSample/StartupFileExtensionContentTypeProvider.cs?name=snippet_Configure&highlight=15-43)] + +See [MIME content types](https://www.iana.org/assignments/media-types/media-types.xhtml). + +## Non-standard content types + +The Static File Middleware understands almost 400 known file content types. If the user requests a file with an unknown file type, the Static File Middleware passes the request to the next middleware in the pipeline. If no middleware handles the request, a *404 Not Found* response is returned. If directory browsing is enabled, a link to the file is displayed in a directory listing. + +The following code enables serving unknown types and renders the unknown file as an image: + +[!code-csharp[](~/fundamentals/static-files/samples/3.x/StaticFilesSample/StartupServeUnknownFileTypes.cs?name=snippet_UseStaticFiles)] + +The following code shows `Startup.Configure` with the preceding code: + +[!code-csharp[](~/fundamentals/static-files/samples/3.x/StaticFilesSample/StartupServeUnknownFileTypes.cs?name=snippet_Configure&highlight=15-19)] + +With the preceding code, a request for a file with an unknown content type is returned as an image. + +> [!WARNING] +> Enabling is a security risk. It's disabled by default, and its use is discouraged. [FileExtensionContentTypeProvider](#fileextensioncontenttypeprovider) provides a safer alternative to serving files with non-standard extensions. + +## Security considerations for static files + +> [!WARNING] +> `UseDirectoryBrowser` and `UseStaticFiles` can leak secrets. Disabling directory browsing in production is highly recommended. Carefully review which directories are enabled via `UseStaticFiles` or `UseDirectoryBrowser`. The entire directory and its sub-directories become publicly accessible. Store files suitable for serving to the public in a dedicated directory, such as `/wwwroot`. Separate these files from MVC views, Razor Pages, configuration files, etc. + +* The URLs for content exposed with `UseDirectoryBrowser` and `UseStaticFiles` are subject to the case sensitivity and character restrictions of the underlying file system. For example, Windows is case insensitive, but macOS and Linux aren't. + +* ASP.NET Core apps hosted in IIS use the [ASP.NET Core Module](xref:host-and-deploy/aspnet-core-module) to forward all requests to the app, including static file requests. The IIS static file handler isn't used and has no chance to handle requests. + +* Complete the following steps in IIS Manager to remove the IIS static file handler at the server or website level: + 1. Navigate to the **Modules** feature. + 1. Select **StaticFileModule** in the list. + 1. Click **Remove** in the **Actions** sidebar. + +> [!WARNING] +> If the IIS static file handler is enabled **and** the ASP.NET Core Module is configured incorrectly, static files are served. This happens, for example, if the *web.config* file isn't deployed. + +* Place code files, including `.cs` and `.cshtml`, outside of the app project's [web root](xref:fundamentals/index#web-root). A logical separation is therefore created between the app's client-side content and server-based code. This prevents server-side code from being leaked. diff --git a/aspnetcore/fundamentals/static-files/includes/static-files6-7.md b/aspnetcore/fundamentals/static-files/includes/static-files6-7.md new file mode 100644 index 000000000000..0d910bbeec4a --- /dev/null +++ b/aspnetcore/fundamentals/static-files/includes/static-files6-7.md @@ -0,0 +1,127 @@ +## Directory browsing + +Directory browsing allows directory listing within specified directories. + +Directory browsing is disabled by default for security reasons. For more information, see [Security considerations for static files](#security-considerations-for-static-files). + +Enable directory browsing with and : + +[!code-csharp[](~/fundamentals/static-files/samples/6.x/StaticFilesSample/Program.cs?name=snippet_db&highlight=9,23-37)] + + +The preceding code allows directory browsing of the *wwwroot/images* folder using the URL `https:///MyImages`, with links to each file and folder: + +![directory browsing](~/fundamentals/static-files/_static/dir-browse.png) + +`AddDirectoryBrowser` [adds services](https://github.com/dotnet/aspnetcore/blob/fc4e391aa58a9fa67fdc3a96da6cfcadd0648b17/src/Middleware/StaticFiles/src/DirectoryBrowserServiceExtensions.cs#L25) required by the directory browsing middleware, including . These services may be added by other calls, such as , but we recommend calling `AddDirectoryBrowser` to ensure the services are added in all apps. + +## Serve default documents + + + +Setting a default page provides visitors a starting point on a site. To serve a default file from `wwwroot` without requiring the request URL to include the file's name, call the method: + +[!code-csharp[](~/fundamentals/static-files/samples/6.x/StaticFilesSample/Program.cs?name=snippet_df&highlight=16)] + +`UseDefaultFiles` must be called before `UseStaticFiles` to serve the default file. `UseDefaultFiles` is a URL rewriter that doesn't serve the file. + +With `UseDefaultFiles`, requests to a folder in `wwwroot` search for: + +* `default.htm` +* `default.html` +* `index.htm` +* `index.html` + +The first file found from the list is served as though the request included the file's name. The browser URL continues to reflect the URI requested. + +The following code changes the default file name to `mydefault.html`: + +[!code-csharp[](~/fundamentals/static-files/samples/6.x/StaticFilesSample/Program.cs?name=snippet_df2&highlight=16-19)] + +### UseFileServer for default documents + + combines the functionality of `UseStaticFiles`, `UseDefaultFiles`, and optionally `UseDirectoryBrowser`. + +Call `app.UseFileServer` to enable the serving of static files and the default file. Directory browsing isn't enabled: + +[!code-csharp[](~/fundamentals/static-files/samples/6.x/StaticFilesSample/Program.cs?name=snippet_ufs&highlight=16)] + +The following code enables the serving of static files, the default file, and directory browsing: + + +[!code-csharp[](~/fundamentals/static-files/samples/6.x/StaticFilesSample/Program.cs?name=snippet_ufs2&highlight=6,18)] + +Consider the following directory hierarchy: + +* `wwwroot` + * `css` + * `images` + * `js` +* `MyStaticFiles` + * `images` + * `MyImage.jpg` + * `default.html` + +The following code enables the serving of static files, the default file, and directory browsing of `MyStaticFiles`: + + + +[!code-csharp[](~/fundamentals/static-files/samples/6.x/StaticFilesSample/Program.cs?name=snippet_tree&highlight=1,8,22-28)] + + must be called when the `EnableDirectoryBrowsing` property value is `true`. + +Using the preceding file hierarchy and code, URLs resolve as follows: + +| URI | Response | +| --- | --- | +| `https:///StaticFiles/images/MyImage.jpg` | `MyStaticFiles/images/MyImage.jpg` | +| `https:///StaticFiles` | `MyStaticFiles/default.html` | + +If no default-named file exists in the *MyStaticFiles* directory, `https:///StaticFiles` returns the directory listing with clickable links: + +![Static files list](~/fundamentals/static-files/_static/db2.png) + + and perform a client-side redirect from the target URI without a trailing `/` to the target URI with a trailing `/`. For example, from `https:///StaticFiles` to `https:///StaticFiles/`. Relative URLs within the *StaticFiles* directory are invalid without a trailing slash (`/`) unless the option of is used. + +## FileExtensionContentTypeProvider + +The class contains a `Mappings` property that serves as a mapping of file extensions to MIME content types. In the following sample, several file extensions are mapped to known MIME types. The *.rtf* extension is replaced, and *.mp4* is removed: + + +[!code-csharp[](~/fundamentals/static-files/samples/6.x/StaticFilesSample/Program.cs?name=snippet_fec&highlight=19-33)] + +See [MIME content types](https://www.iana.org/assignments/media-types/media-types.xhtml). + +## Non-standard content types + +The Static File Middleware understands almost 400 known file content types. If the user requests a file with an unknown file type, the Static File Middleware passes the request to the next middleware in the pipeline. If no middleware handles the request, a *404 Not Found* response is returned. If directory browsing is enabled, a link to the file is displayed in a directory listing. + +The following code enables serving unknown types and renders the unknown file as an image: + +[!code-csharp[](~/fundamentals/static-files/samples/6.x/StaticFilesSample/Program.cs?name=snippet_ns&highlight=16-20)] + +With the preceding code, a request for a file with an unknown content type is returned as an image. + +> [!WARNING] +> Enabling is a security risk. It's disabled by default, and its use is discouraged. [FileExtensionContentTypeProvider](#fileextensioncontenttypeprovider) provides a safer alternative to serving files with non-standard extensions. + +## Security considerations for static files + +> [!WARNING] +> `UseDirectoryBrowser` and `UseStaticFiles` can leak secrets. Disabling directory browsing in production is highly recommended. Carefully review which directories are enabled via `UseStaticFiles` or `UseDirectoryBrowser`. The entire directory and its sub-directories become publicly accessible. Store files suitable for serving to the public in a dedicated directory, such as `/wwwroot`. Separate these files from MVC views, Razor Pages, configuration files, etc. + +* The URLs for content exposed with `UseDirectoryBrowser` and `UseStaticFiles` are subject to the case sensitivity and character restrictions of the underlying file system. For example, Windows is case insensitive, but macOS and Linux aren't. + +* ASP.NET Core apps hosted in IIS use the [ASP.NET Core Module](xref:host-and-deploy/aspnet-core-module) to forward all requests to the app, including static file requests. The IIS static file handler isn't used and has no chance to handle requests. + +* Complete the following steps in IIS Manager to remove the IIS static file handler at the server or website level: + 1. Navigate to the **Modules** feature. + 1. Select **StaticFileModule** in the list. + 1. Click **Remove** in the **Actions** sidebar. + +> [!WARNING] +> If the IIS static file handler is enabled **and** the ASP.NET Core Module is configured incorrectly, static files are served. This happens, for example, if the *web.config* file isn't deployed. + +* Place code files, including `.cs` and `.cshtml`, outside of the app project's [web root](xref:fundamentals/index#web-root). A logical separation is therefore created between the app's client-side content and server-based code. This prevents server-side code from being leaked. diff --git a/aspnetcore/fundamentals/static-files/includes/static-files6.md b/aspnetcore/fundamentals/static-files/includes/static-files6.md deleted file mode 100644 index e438b4747363..000000000000 --- a/aspnetcore/fundamentals/static-files/includes/static-files6.md +++ /dev/null @@ -1,546 +0,0 @@ - -:::moniker range=">= aspnetcore-6.0 < aspnetcore-8.0" - -By [Rick Anderson](https://twitter.com/RickAndMSFT) and [Kirk Larkin](https://twitter.com/serpent5) - -Static files, such as HTML, CSS, images, and JavaScript, are assets an ASP.NET Core app serves directly to clients by default. - -## Serve static files - -Static files are stored within the project's [web root](xref:fundamentals/index#web-root) directory. The default directory is `{content root}/wwwroot`, but it can be changed with the method. For more information, see [Content root](xref:fundamentals/index#content-root) and [Web root](xref:fundamentals/index#web-root). - -The method sets the content root to the current directory: - -[!code-csharp[](~/fundamentals/static-files/samples/6.x/StaticFilesSample/Program.cs?name=snippet&highlight=1)] - -Static files are accessible via a path relative to the [web root](xref:fundamentals/index#web-root). For example, the **Web Application** project templates contain several folders within the `wwwroot` folder: - -* `wwwroot` - * `css` - * `js` - * `lib` - -Consider creating the *wwwroot/images* folder and adding the `wwwroot/images/MyImage.jpg` file. The URI format to access a file in the `images` folder is `https:///images/`. For example, `https://localhost:5001/images/MyImage.jpg` - -### Serve files in web root - -The default web app templates call the method in `Program.cs`, which enables static files to be served: - -[!code-csharp[](~/fundamentals/static-files/samples/6.x/StaticFilesSample/Program.cs?name=snippet&highlight=15)] - -The parameterless `UseStaticFiles` method overload marks the files in [web root](xref:fundamentals/index#web-root) as servable. The following markup references `wwwroot/images/MyImage.jpg`: - -```html -My image -``` - -In the preceding markup, the tilde character `~` points to the [web root](xref:fundamentals/index#web-root). - -### Serve files outside of web root - -Consider a directory hierarchy in which the static files to be served reside outside of the [web root](xref:fundamentals/index#web-root): - -* `wwwroot` - * `css` - * `images` - * `js` -* `MyStaticFiles` - * `images` - * `red-rose.jpg` - -A request can access the `red-rose.jpg` file by configuring the Static File Middleware as follows: - -[!code-csharp[](~/fundamentals/static-files/samples/6.x/StaticFilesSample/Program.cs?name=snippet_rr&highlight=1,18-23)] - -In the preceding code, the *MyStaticFiles* directory hierarchy is exposed publicly via the *StaticFiles* URI segment. A request to `https:///StaticFiles/images/red-rose.jpg` serves the `red-rose.jpg` file. - -The following markup references `MyStaticFiles/images/red-rose.jpg`: - -[!code-html[](~/fundamentals/static-files/samples/6.x/StaticFilesSample/Views/Home2/MyStaticFilesRR.cshtml?range=1)] - -To serve files from multiple locations, see [Serve files from multiple locations](#serve-files-from-multiple-locations). - -### Set HTTP response headers - -A object can be used to set HTTP response headers. In addition to configuring static file serving from the [web root](xref:fundamentals/index#web-root), the following code sets the [Cache-Control](https://developer.mozilla.org/docs/Web/HTTP/Headers/Cache-Control) header: - -[!code-csharp[](~/fundamentals/static-files/samples/6.x/StaticFilesSample/Program.cs?name=snippet_rh&highlight=16-24)] - -The preceding code makes static files publicly available in the local cache for one week (604800 seconds). - -## Static file authorization - -The ASP.NET Core templates call before calling . Most apps follow this pattern. When the Static File Middleware is called before the authorization middleware: - - * No authorization checks are performed on the static files. - * Static files served by the Static File Middleware, such as those under `wwwroot`, are publicly accessible. - -To serve static files based on authorization: - - * Store them outside of `wwwroot`. - * Call `UseStaticFiles`, specifying a path, after calling `UseAuthorization`. - * Set the [fallback authorization policy](xref:Microsoft.AspNetCore.Authorization.AuthorizationOptions.FallbackPolicy). - -[!code-csharp[](~/fundamentals/static-files/samples/6.x/StaticFileAuth/Program.cs?name=snippet_auth&highlight=18-23,38,45-50)] - - In the preceding code, the fallback authorization policy requires ***all*** users to be authenticated. Endpoints such as controllers, Razor Pages, etc that specify their own authorization requirements don't use the fallback authorization policy. For example, Razor Pages, controllers, or action methods with `[AllowAnonymous]` or `[Authorize(PolicyName="MyPolicy")]` use the applied authorization attribute rather than the fallback authorization policy. - - adds to the current instance, which enforces that the current user is authenticated. - - Static assets under `wwwroot` are publicly accessible because the default Static File Middleware (`app.UseStaticFiles();`) is called before `UseAuthentication`. Static assets in the ***MyStaticFiles*** folder require authentication. The [sample code](https://github.com/dotnet/AspNetCore.Docs/tree/main/aspnetcore/fundamentals/static-files/samples/6.x) demonstrates this. - -An alternative approach to serve files based on authorization is to: - - * Store them outside of `wwwroot` and any directory accessible to the Static File Middleware. - * Serve them via an action method to which authorization is applied and return a object: - - [!code-csharp[](~/fundamentals/static-files/samples/6.x/StaticFileAuth/Pages/BannerImage.cshtml.cs?name=snippet)] - -## Directory browsing - -Directory browsing allows directory listing within specified directories. - -Directory browsing is disabled by default for security reasons. For more information, see [Security considerations for static files](#security-considerations-for-static-files). - -Enable directory browsing with and : - -[!code-csharp[](~/fundamentals/static-files/samples/6.x/StaticFilesSample/Program.cs?name=snippet_db&highlight=9,23-37)] - - -The preceding code allows directory browsing of the *wwwroot/images* folder using the URL `https:///MyImages`, with links to each file and folder: - -![directory browsing](~/fundamentals/static-files/_static/dir-browse.png) - -`AddDirectoryBrowser` [adds services](https://github.com/dotnet/aspnetcore/blob/fc4e391aa58a9fa67fdc3a96da6cfcadd0648b17/src/Middleware/StaticFiles/src/DirectoryBrowserServiceExtensions.cs#L25) required by the directory browsing middleware, including . These services may be added by other calls, such as , but we recommend calling `AddDirectoryBrowser` to ensure the services are added in all apps. - -## Serve default documents - - - -Setting a default page provides visitors a starting point on a site. To serve a default file from `wwwroot` without requiring the request URL to include the file's name, call the method: - -[!code-csharp[](~/fundamentals/static-files/samples/6.x/StaticFilesSample/Program.cs?name=snippet_df&highlight=16)] - -`UseDefaultFiles` must be called before `UseStaticFiles` to serve the default file. `UseDefaultFiles` is a URL rewriter that doesn't serve the file. - -With `UseDefaultFiles`, requests to a folder in `wwwroot` search for: - -* `default.htm` -* `default.html` -* `index.htm` -* `index.html` - -The first file found from the list is served as though the request included the file's name. The browser URL continues to reflect the URI requested. - -The following code changes the default file name to `mydefault.html`: - -[!code-csharp[](~/fundamentals/static-files/samples/6.x/StaticFilesSample/Program.cs?name=snippet_df2&highlight=16-19)] - -### UseFileServer for default documents - - combines the functionality of `UseStaticFiles`, `UseDefaultFiles`, and optionally `UseDirectoryBrowser`. - -Call `app.UseFileServer` to enable the serving of static files and the default file. Directory browsing isn't enabled: - -[!code-csharp[](~/fundamentals/static-files/samples/6.x/StaticFilesSample/Program.cs?name=snippet_ufs&highlight=16)] - -The following code enables the serving of static files, the default file, and directory browsing: - - -[!code-csharp[](~/fundamentals/static-files/samples/6.x/StaticFilesSample/Program.cs?name=snippet_ufs2&highlight=6,18)] - -Consider the following directory hierarchy: - -* `wwwroot` - * `css` - * `images` - * `js` -* `MyStaticFiles` - * `images` - * `MyImage.jpg` - * `default.html` - -The following code enables the serving of static files, the default file, and directory browsing of `MyStaticFiles`: - - - -[!code-csharp[](~/fundamentals/static-files/samples/6.x/StaticFilesSample/Program.cs?name=snippet_tree&highlight=1,8,22-28)] - - must be called when the `EnableDirectoryBrowsing` property value is `true`. - -Using the preceding file hierarchy and code, URLs resolve as follows: - -| URI | Response | -| ------- | ------| -| `https:///StaticFiles/images/MyImage.jpg` | `MyStaticFiles/images/MyImage.jpg` | -| `https:///StaticFiles` | `MyStaticFiles/default.html` | - -If no default-named file exists in the *MyStaticFiles* directory, `https:///StaticFiles` returns the directory listing with clickable links: - -![Static files list](~/fundamentals/static-files/_static/db2.png) - - and perform a client-side redirect from the target URI without a trailing `/` to the target URI with a trailing `/`. For example, from `https:///StaticFiles` to `https:///StaticFiles/`. Relative URLs within the *StaticFiles* directory are invalid without a trailing slash (`/`) unless the option of is used. - -## FileExtensionContentTypeProvider - -The class contains a `Mappings` property that serves as a mapping of file extensions to MIME content types. In the following sample, several file extensions are mapped to known MIME types. The *.rtf* extension is replaced, and *.mp4* is removed: - - -[!code-csharp[](~/fundamentals/static-files/samples/6.x/StaticFilesSample/Program.cs?name=snippet_fec&highlight=19-33)] - -See [MIME content types](https://www.iana.org/assignments/media-types/media-types.xhtml). - -## Non-standard content types - -The Static File Middleware understands almost 400 known file content types. If the user requests a file with an unknown file type, the Static File Middleware passes the request to the next middleware in the pipeline. If no middleware handles the request, a *404 Not Found* response is returned. If directory browsing is enabled, a link to the file is displayed in a directory listing. - -The following code enables serving unknown types and renders the unknown file as an image: - -[!code-csharp[](~/fundamentals/static-files/samples/6.x/StaticFilesSample/Program.cs?name=snippet_ns&highlight=16-20)] - -With the preceding code, a request for a file with an unknown content type is returned as an image. - -> [!WARNING] -> Enabling is a security risk. It's disabled by default, and its use is discouraged. [FileExtensionContentTypeProvider](#fileextensioncontenttypeprovider) provides a safer alternative to serving files with non-standard extensions. - -## Serve files from multiple locations - -Consider the following Razor page which displays the `/MyStaticFiles/image3.png` file: - -[!code-cshtml[](~/fundamentals/static-files/samples/6.x/StaticFilesSample/Pages/Test.cshtml?highlight=5)] - -`UseStaticFiles` and `UseFileServer` default to the file provider pointing at `wwwroot`. Additional instances of `UseStaticFiles` and `UseFileServer` can be provided with other file providers to serve files from other locations. The following example calls `UseStaticFiles` twice to serve files from both `wwwroot` and `MyStaticFiles`: - -[!code-csharp[](~/fundamentals/static-files/samples/6.x/StaticFilesSample/Program.cs?name=snippet_mul)] - -Using the preceding code: - -* The `/MyStaticFiles/image3.png` file is displayed. -* The [Image Tag Helpers](xref:mvc/views/tag-helpers/builtin-th/image-tag-helper) is not applied because the Tag Helpers depend on . `WebRootFileProvider` has not been updated to include the `MyStaticFiles` folder. - -The following code updates the `WebRootFileProvider`, which enables the Image Tag Helper to provide a version: - -[!code-csharp[](~/fundamentals/static-files/samples/6.x/StaticFilesSample/Program.cs?name=snippet_mult2)] - - - -### Security considerations for static files - -> [!WARNING] -> `UseDirectoryBrowser` and `UseStaticFiles` can leak secrets. Disabling directory browsing in production is highly recommended. Carefully review which directories are enabled via `UseStaticFiles` or `UseDirectoryBrowser`. The entire directory and its sub-directories become publicly accessible. Store files suitable for serving to the public in a dedicated directory, such as `/wwwroot`. Separate these files from MVC views, Razor Pages, configuration files, etc. - -* The URLs for content exposed with `UseDirectoryBrowser` and `UseStaticFiles` are subject to the case sensitivity and character restrictions of the underlying file system. For example, Windows is case insensitive, but macOS and Linux aren't. - -* ASP.NET Core apps hosted in IIS use the [ASP.NET Core Module](xref:host-and-deploy/aspnet-core-module) to forward all requests to the app, including static file requests. The IIS static file handler isn't used and has no chance to handle requests. - -* Complete the following steps in IIS Manager to remove the IIS static file handler at the server or website level: - 1. Navigate to the **Modules** feature. - 1. Select **StaticFileModule** in the list. - 1. Click **Remove** in the **Actions** sidebar. - -> [!WARNING] -> If the IIS static file handler is enabled **and** the ASP.NET Core Module is configured incorrectly, static files are served. This happens, for example, if the *web.config* file isn't deployed. - -* Place code files, including `.cs` and `.cshtml`, outside of the app project's [web root](xref:fundamentals/index#web-root). A logical separation is therefore created between the app's client-side content and server-based code. This prevents server-side code from being leaked. - -## Serve files outside wwwroot by updating IWebHostEnvironment.WebRootPath - -When is set to a folder other than `wwwroot`: - -* In the development environment, static assets found in both `wwwroot` and the updated `IWebHostEnvironment.WebRootPath` are served from `wwwroot`. -* In any environment other than development, duplicate static assets are served from the updated `IWebHostEnvironment.WebRootPath` folder. - -Consider a web app created with the empty web template: - -* Containing an `Index.html` file in `wwwroot` and `wwwroot-custom`. -* With the following updated `Program.cs` file that sets `WebRootPath = "wwwroot-custom"`: - - [!code-csharp[](~/fundamentals/static-files/samples/6.x/WebRoot/Program.cs?name=snippet1)] - -In the preceding code, requests to `/`: - -* In the development environment return `wwwroot/Index.html` -* In any environment other than development return `wwwroot-custom/Index.html` - -To ensure assets from `wwwroot-custom` are returned, use one of the following approaches: - -* Delete duplicate named assets in `wwwroot`. -* Set `"ASPNETCORE_ENVIRONMENT"` in `Properties/launchSettings.json` to any value other than `"Development"`. -* Completely disable static web assets by setting `false` in the project file. ***WARNING, disabling static web assets disables [Razor Class Libraries](xref:razor-pages/ui-class)***. -* Add the following JSON to the project file: - - ```xml - - - - ``` - -The following code updates `IWebHostEnvironment.WebRootPath` to a non development value, guaranteeing duplicate content is returned from `wwwroot-custom` rather than `wwwroot`: - -[!code-csharp[](~/fundamentals/static-files/samples/6.x/WebRoot/Program.cs?name=snippet2&highlight=5)] - -## Additional resources - -* [View or download sample code](https://github.com/dotnet/AspNetCore.Docs/tree/main/aspnetcore/fundamentals/static-files/samples) ([how to download](xref:fundamentals/index#how-to-download-a-sample)) -* [Middleware](xref:fundamentals/middleware/index) -* [Introduction to ASP.NET Core](xref:index) - -:::moniker-end - -:::moniker range="< aspnetcore-6.0" - -By [Rick Anderson](https://twitter.com/RickAndMSFT) and [Kirk Larkin](https://twitter.com/serpent5) - -Static files, such as HTML, CSS, images, and JavaScript, are assets an ASP.NET Core app serves directly to clients by default. - -[View or download sample code](https://github.com/dotnet/AspNetCore.Docs/tree/main/aspnetcore/fundamentals/static-files/samples) ([how to download](xref:fundamentals/index#how-to-download-a-sample)) - -## Serve static files - -Static files are stored within the project's [web root](xref:fundamentals/index#web-root) directory. The default directory is `{content root}/wwwroot`, but it can be changed with the method. For more information, see [Content root](xref:fundamentals/index#content-root) and [Web root](xref:fundamentals/index#web-root). - -The method sets the content root to the current directory: - -:::code language="csharp" source="~/fundamentals/static-files/samples/3.x/StaticFilesSample/Program2.cs" id="snippet_Program"::: - -The preceding code was created with the web app template. - -Static files are accessible via a path relative to the [web root](xref:fundamentals/index#web-root). For example, the **Web Application** project templates contain several folders within the `wwwroot` folder: - -* `wwwroot` - * `css` - * `js` - * `lib` - -Consider creating the *wwwroot/images* folder and adding the `wwwroot/images/MyImage.jpg` file. The URI format to access a file in the `images` folder is `https:///images/`. For example, `https://localhost:5001/images/MyImage.jpg` - -### Serve files in web root - -The default web app templates call the method in `Startup.Configure`, which enables static files to be served: - -[!code-csharp[](~/fundamentals/static-files/samples/3.x/StaticFilesSample/Startup.cs?name=snippet_Configure&highlight=15)] - -The parameterless `UseStaticFiles` method overload marks the files in [web root](xref:fundamentals/index#web-root) as servable. The following markup references `wwwroot/images/MyImage.jpg`: - -```html -My image -``` - -In the preceding code, the tilde character `~/` points to the [web root](xref:fundamentals/index#web-root). - -### Serve files outside of web root - -Consider a directory hierarchy in which the static files to be served reside outside of the [web root](xref:fundamentals/index#web-root): - -* `wwwroot` - * `css` - * `images` - * `js` -* `MyStaticFiles` - * `images` - * `red-rose.jpg` - -A request can access the `red-rose.jpg` file by configuring the Static File Middleware as follows: - -[!code-csharp[](~/fundamentals/static-files/samples/3.x/StaticFilesSample/StartupRose.cs?name=snippet_Configure&highlight=15-22)] - -In the preceding code, the *MyStaticFiles* directory hierarchy is exposed publicly via the *StaticFiles* URI segment. A request to `https:///StaticFiles/images/red-rose.jpg` serves the `red-rose.jpg` file. - -The following markup references `MyStaticFiles/images/red-rose.jpg`: - -```html -A red rose -``` - -### Set HTTP response headers - -A object can be used to set HTTP response headers. In addition to configuring static file serving from the [web root](xref:fundamentals/index#web-root), the following code sets the `Cache-Control` header: - -[!code-csharp[](~/fundamentals/static-files/samples/3.x/StaticFilesSample/StartupAddHeader.cs?name=snippet_Configure&highlight=15-24)] - -The preceding code sets max-age to 604800 seconds (7 days). - -![Response headers showing the Cache-Control header has been added](~/fundamentals/static-files/_static/add-header.png) - -## Static file authorization - -The ASP.NET Core templates call before calling . Most apps follow this pattern. When the Static File Middleware is called before the authorization middleware: - - * No authorization checks are performed on the static files. - * Static files served by the Static File Middleware, such as those under `wwwroot`, are publicly accessible. - -To serve static files based on authorization: - - * Store them outside of `wwwroot`. - * Call `UseStaticFiles`, specifying a path, after calling `UseAuthorization`. - * Set the [fallback authorization policy](xref:Microsoft.AspNetCore.Authorization.AuthorizationOptions.FallbackPolicy). - - [!code-csharp[](~/fundamentals/static-files/samples/3.x/StaticFileAuth/Startup.cs?name=snippet2&highlight=24-29)] - - [!code-csharp[](~/fundamentals/static-files/samples/3.x/StaticFileAuth/Startup.cs?name=snippet1&highlight=20-25)] - - In the preceding code, the fallback authorization policy requires ***all*** users to be authenticated. Endpoints such as controllers, Razor Pages, etc that specify their own authorization requirements don't use the fallback authorization policy. For example, Razor Pages, controllers, or action methods with `[AllowAnonymous]` or `[Authorize(PolicyName="MyPolicy")]` use the applied authorization attribute rather than the fallback authorization policy. - - adds to the current instance, which enforces that the current user is authenticated. - - Static assets under `wwwroot` are publicly accessible because the default Static File Middleware (`app.UseStaticFiles();`) is called before `UseAuthentication`. Static assets in the *MyStaticFiles* folder require authentication. The [sample code](https://github.com/dotnet/AspNetCore.Docs/tree/main/aspnetcore/fundamentals/static-files/samples) demonstrates this. - -An alternative approach to serve files based on authorization is to: - - * Store them outside of `wwwroot` and any directory accessible to the Static File Middleware. - * Serve them via an action method to which authorization is applied and return a object: - - [!code-csharp[](~/fundamentals/static-files/samples/3.x/StaticFilesSample/Controllers/HomeController.cs?name=snippet_BannerImage)] - -## Directory browsing - -Directory browsing allows directory listing within specified directories. - -Directory browsing is disabled by default for security reasons. For more information, see [Security considerations for static files](#security-considerations-for-static-files). - -Enable directory browsing with: - -* in `Startup.ConfigureServices`. -* in `Startup.Configure`. - -[!code-csharp[](~/fundamentals/static-files/samples/3.x/StaticFilesSample/StartupBrowse.cs?name=snippet_ClassMembers&highlight=4,21-35)] - -The preceding code allows directory browsing of the *wwwroot/images* folder using the URL `https:///MyImages`, with links to each file and folder: - -![directory browsing](~/fundamentals/static-files/_static/dir-browse.png) - -## Serve default documents - -Setting a default page provides visitors a starting point on a site. To serve a default file from `wwwroot` without requiring the request URL to include the file's name, call the method: - -[!code-csharp[](~/fundamentals/static-files/samples/3.x/StaticFilesSample/StartupEmpty.cs?name=snippet_Configure&highlight=15)] - -`UseDefaultFiles` must be called before `UseStaticFiles` to serve the default file. `UseDefaultFiles` is a URL rewriter that doesn't serve the file. - -With `UseDefaultFiles`, requests to a folder in `wwwroot` search for: - -* `default.htm` -* `default.html` -* `index.htm` -* `index.html` - -The first file found from the list is served as though the request included the file's name. The browser URL continues to reflect the URI requested. - -The following code changes the default file name to `mydefault.html`: - -[!code-csharp[](~/fundamentals/static-files/samples/3.x/StaticFilesSample/StartupDefault.cs?name=snippet_DefaultFiles)] - -The following code shows `Startup.Configure` with the preceding code: - -[!code-csharp[](~/fundamentals/static-files/samples/3.x/StaticFilesSample/StartupDefault.cs?name=snippet_Configure&highlight=15-19)] - -### UseFileServer for default documents - - combines the functionality of `UseStaticFiles`, `UseDefaultFiles`, and optionally `UseDirectoryBrowser`. - -Call `app.UseFileServer` to enable the serving of static files and the default file. Directory browsing isn't enabled. The following code shows `Startup.Configure` with `UseFileServer`: - -[!code-csharp[](~/fundamentals/static-files/samples/3.x/StaticFilesSample/StartupEmpty2.cs?name=snippet_Configure&highlight=15)] - -The following code enables the serving of static files, the default file, and directory browsing: - -```csharp -app.UseFileServer(enableDirectoryBrowsing: true); -``` - -The following code shows `Startup.Configure` with the preceding code: - -[!code-csharp[](~/fundamentals/static-files/samples/3.x/StaticFilesSample/StartupEmpty3.cs?name=snippet_Configure&highlight=15)] - -Consider the following directory hierarchy: - -* `wwwroot` - * `css` - * `images` - * `js` -* `MyStaticFiles` - * `images` - * `MyImage.jpg` - * `default.html` - -The following code enables the serving of static files, the default file, and directory browsing of `MyStaticFiles`: - -[!code-csharp[](~/fundamentals/static-files/samples/3.x/StaticFilesSample/StartupFileServer.cs?name=snippet_ClassMembers&highlight=4,21-31)] - - must be called when the `EnableDirectoryBrowsing` property value is `true`. - -Using the file hierarchy and preceding code, URLs resolve as follows: - -| URI | Response | -| ------- | ------| -| `https:///StaticFiles/images/MyImage.jpg` | `MyStaticFiles/images/MyImage.jpg` | -| `https:///StaticFiles` | `MyStaticFiles/default.html` | - -If no default-named file exists in the *MyStaticFiles* directory, `https:///StaticFiles` returns the directory listing with clickable links: - -![Static files list](~/fundamentals/static-files/_static/db2.png) - - and perform a client-side redirect from the target URI without a trailing `/` to the target URI with a trailing `/`. For example, from `https:///StaticFiles` to `https:///StaticFiles/`. Relative URLs within the *StaticFiles* directory are invalid without a trailing slash (`/`). - -## FileExtensionContentTypeProvider - -The class contains a `Mappings` property that serves as a mapping of file extensions to MIME content types. In the following sample, several file extensions are mapped to known MIME types. The *.rtf* extension is replaced, and *.mp4* is removed: - -[!code-csharp[](~/fundamentals/static-files/samples/3.x/StaticFilesSample/StartupFileExtensionContentTypeProvider.cs?name=snippet_Provider)] - -The following code shows `Startup.Configure` with the preceding code: - -[!code-csharp[](~/fundamentals/static-files/samples/3.x/StaticFilesSample/StartupFileExtensionContentTypeProvider.cs?name=snippet_Configure&highlight=15-43)] - -See [MIME content types](https://www.iana.org/assignments/media-types/media-types.xhtml). - -## Non-standard content types - -The Static File Middleware understands almost 400 known file content types. If the user requests a file with an unknown file type, the Static File Middleware passes the request to the next middleware in the pipeline. If no middleware handles the request, a *404 Not Found* response is returned. If directory browsing is enabled, a link to the file is displayed in a directory listing. - -The following code enables serving unknown types and renders the unknown file as an image: - -[!code-csharp[](~/fundamentals/static-files/samples/3.x/StaticFilesSample/StartupServeUnknownFileTypes.cs?name=snippet_UseStaticFiles)] - -The following code shows `Startup.Configure` with the preceding code: - -[!code-csharp[](~/fundamentals/static-files/samples/3.x/StaticFilesSample/StartupServeUnknownFileTypes.cs?name=snippet_Configure&highlight=15-19)] - -With the preceding code, a request for a file with an unknown content type is returned as an image. - -> [!WARNING] -> Enabling is a security risk. It's disabled by default, and its use is discouraged. [FileExtensionContentTypeProvider](#fileextensioncontenttypeprovider) provides a safer alternative to serving files with non-standard extensions. - -## Serve files from multiple locations - -`UseStaticFiles` and `UseFileServer` default to the file provider pointing at `wwwroot`. Additional instances of `UseStaticFiles` and `UseFileServer` can be provided with other file providers to serve files from other locations. For more information, see [this GitHub issue](https://github.com/dotnet/AspNetCore.Docs/issues/15578). - - - -### Security considerations for static files - -> [!WARNING] -> `UseDirectoryBrowser` and `UseStaticFiles` can leak secrets. Disabling directory browsing in production is highly recommended. Carefully review which directories are enabled via `UseStaticFiles` or `UseDirectoryBrowser`. The entire directory and its sub-directories become publicly accessible. Store files suitable for serving to the public in a dedicated directory, such as `/wwwroot`. Separate these files from MVC views, Razor Pages, configuration files, etc. - -* The URLs for content exposed with `UseDirectoryBrowser` and `UseStaticFiles` are subject to the case sensitivity and character restrictions of the underlying file system. For example, Windows is case insensitive, but macOS and Linux aren't. - -* ASP.NET Core apps hosted in IIS use the [ASP.NET Core Module](xref:host-and-deploy/aspnet-core-module) to forward all requests to the app, including static file requests. The IIS static file handler isn't used and has no chance to handle requests. - -* Complete the following steps in IIS Manager to remove the IIS static file handler at the server or website level: - 1. Navigate to the **Modules** feature. - 1. Select **StaticFileModule** in the list. - 1. Click **Remove** in the **Actions** sidebar. - -> [!WARNING] -> If the IIS static file handler is enabled **and** the ASP.NET Core Module is configured incorrectly, static files are served. This happens, for example, if the *web.config* file isn't deployed. - -* Place code files, including `.cs` and `.cshtml`, outside of the app project's [web root](xref:fundamentals/index#web-root). A logical separation is therefore created between the app's client-side content and server-based code. This prevents server-side code from being leaked. - -## Additional resources - -* [Middleware](xref:fundamentals/middleware/index) -* [Introduction to ASP.NET Core](xref:index) - -:::moniker-end diff --git a/aspnetcore/fundamentals/static-files/includes/static-files8.md b/aspnetcore/fundamentals/static-files/includes/static-files8.md index b83556ec0791..0d910bbeec4a 100644 --- a/aspnetcore/fundamentals/static-files/includes/static-files8.md +++ b/aspnetcore/fundamentals/static-files/includes/static-files8.md @@ -1,106 +1,3 @@ -:::moniker range=">= aspnetcore-8.0" - -By [Rick Anderson](https://twitter.com/RickAndMSFT) - -Static files, such as HTML, CSS, images, and JavaScript, are assets an ASP.NET Core app serves directly to clients by default. - -## Serve static files - -Static files are stored within the project's [web root](xref:fundamentals/index#web-root) directory. The default directory is `{content root}/wwwroot`, but it can be changed with the method. For more information, see [Content root](xref:fundamentals/index#content-root) and [Web root](xref:fundamentals/index#web-root). - -The method sets the content root to the current directory: - -[!code-csharp[](~/fundamentals/static-files/samples/6.x/StaticFilesSample/Program.cs?name=snippet&highlight=1)] - -Static files are accessible via a path relative to the [web root](xref:fundamentals/index#web-root). For example, the **Web Application** project templates contain several folders within the `wwwroot` folder: - -* `wwwroot` - * `css` - * `js` - * `lib` - -Consider creating the *wwwroot/images* folder and adding the `wwwroot/images/MyImage.jpg` file. The URI format to access a file in the `images` folder is `https:///images/`. For example, `https://localhost:5001/images/MyImage.jpg` - -### Serve files in web root - -The default web app templates call the method in `Program.cs`, which enables static files to be served: - -[!code-csharp[](~/fundamentals/static-files/samples/6.x/StaticFilesSample/Program.cs?name=snippet&highlight=15)] - -The parameterless `UseStaticFiles` method overload marks the files in [web root](xref:fundamentals/index#web-root) as servable. The following markup references `wwwroot/images/MyImage.jpg`: - -```html -My image -``` - -In the preceding markup, the tilde character `~` points to the [web root](xref:fundamentals/index#web-root). - -### Serve files outside of web root - -Consider a directory hierarchy in which the static files to be served reside outside of the [web root](xref:fundamentals/index#web-root): - -* `wwwroot` - * `css` - * `images` - * `js` -* `MyStaticFiles` - * `images` - * `red-rose.jpg` - -A request can access the `red-rose.jpg` file by configuring the Static File Middleware as follows: - -[!code-csharp[](~/fundamentals/static-files/samples/6.x/StaticFilesSample/Program.cs?name=snippet_rr&highlight=1,18-23)] - -In the preceding code, the *MyStaticFiles* directory hierarchy is exposed publicly via the *StaticFiles* URI segment. A request to `https:///StaticFiles/images/red-rose.jpg` serves the `red-rose.jpg` file. - -The following markup references `MyStaticFiles/images/red-rose.jpg`: - -[!code-html[](~/fundamentals/static-files/samples/6.x/StaticFilesSample/Views/Home2/MyStaticFilesRR.cshtml?range=1)] - -To serve files from multiple locations, see [Serve files from multiple locations](#serve-files-from-multiple-locations). - -### Set HTTP response headers - -A object can be used to set HTTP response headers. In addition to configuring static file serving from the [web root](xref:fundamentals/index#web-root), the following code sets the [Cache-Control](https://developer.mozilla.org/docs/Web/HTTP/Headers/Cache-Control) header: - -[!code-csharp[](~/fundamentals/static-files/samples/6.x/StaticFilesSample/Program.cs?name=snippet_rh&highlight=16-24)] - -The preceding code makes static files publicly available in the local cache for one week (604800 seconds). - -## Static file authorization - -The ASP.NET Core templates call before calling . Most apps follow this pattern. When the Static File Middleware is called before the authorization middleware: - - * No authorization checks are performed on the static files. - * Static files served by the Static File Middleware, such as those under `wwwroot`, are publicly accessible. - -To serve static files based on authorization: - - * Store them outside of `wwwroot`. - * Call `UseStaticFiles`, specifying a path, after calling `UseAuthorization`. - * Set the [fallback authorization policy](xref:Microsoft.AspNetCore.Authorization.AuthorizationOptions.FallbackPolicy). - -[!code-csharp[](~/fundamentals/static-files/samples/6.x/StaticFileAuth/Program.cs?name=snippet_auth&highlight=18-23,38,45-50)] - - In the preceding code, the fallback authorization policy requires ***all*** users to be authenticated. Endpoints such as controllers, Razor Pages, etc that specify their own authorization requirements don't use the fallback authorization policy. For example, Razor Pages, controllers, or action methods with `[AllowAnonymous]` or `[Authorize(PolicyName="MyPolicy")]` use the applied authorization attribute rather than the fallback authorization policy. - - adds to the current instance, which enforces that the current user is authenticated. - - Static assets under `wwwroot` are publicly accessible because the default Static File Middleware (`app.UseStaticFiles();`) is called before `UseAuthentication`. Static assets in the ***MyStaticFiles*** folder require authentication. The [sample code](https://github.com/dotnet/AspNetCore.Docs/tree/main/aspnetcore/fundamentals/static-files/samples/6.x) demonstrates this. - -An alternative approach to serve files based on authorization is to: - -* Store them outside of `wwwroot` and any directory accessible to the Static File Middleware. -* Serve them via an action method to which authorization is applied and return a object: - - [!code-csharp[](~/fundamentals/static-files/samples/6.x/StaticFileAuth/Pages/BannerImage.cshtml.cs?name=snippet)] - -The preceding approach requires a page or endpoint per file. The following code returns files or uploads files for authenticated users: - -:::code language="csharp" source="~/fundamentals/static-files/samples/8.x/StaticFileAuth/Program.cs" id="snippet_1"::: - -See the [StaticFileAuth](https://github.com/dotnet/AspNetCore.Docs/tree/main/aspnetcore/fundamentals/static-files/samples/8.x/StaticFileAuth) GitHub folder for the complete sample. - ## Directory browsing Directory browsing allows directory listing within specified directories. @@ -177,8 +74,8 @@ The following code enables the serving of static files, the default file, and di Using the preceding file hierarchy and code, URLs resolve as follows: -| URI | Response | -| ------- | ------| +| URI | Response | +| --- | --- | | `https:///StaticFiles/images/MyImage.jpg` | `MyStaticFiles/images/MyImage.jpg` | | `https:///StaticFiles` | `MyStaticFiles/default.html` | @@ -210,31 +107,7 @@ With the preceding code, a request for a file with an unknown content type is re > [!WARNING] > Enabling is a security risk. It's disabled by default, and its use is discouraged. [FileExtensionContentTypeProvider](#fileextensioncontenttypeprovider) provides a safer alternative to serving files with non-standard extensions. -## Serve files from multiple locations - -Consider the following Razor page which displays the `/MyStaticFiles/image3.png` file: - -[!code-cshtml[](~/fundamentals/static-files/samples/6.x/StaticFilesSample/Pages/Test.cshtml?highlight=5)] - -`UseStaticFiles` and `UseFileServer` default to the file provider pointing at `wwwroot`. Additional instances of `UseStaticFiles` and `UseFileServer` can be provided with other file providers to serve files from other locations. The following example calls `UseStaticFiles` twice to serve files from both `wwwroot` and `MyStaticFiles`: - -[!code-csharp[](~/fundamentals/static-files/samples/6.x/StaticFilesSample/Program.cs?name=snippet_mul)] - -Using the preceding code: - -* The `/MyStaticFiles/image3.png` file is displayed. -* The [Image Tag Helpers](xref:mvc/views/tag-helpers/builtin-th/image-tag-helper) is not applied because the Tag Helpers depend on . `WebRootFileProvider` has not been updated to include the `MyStaticFiles` folder. - -The following code updates the `WebRootFileProvider`, which enables the Image Tag Helper to provide a version: - -[!code-csharp[](~/fundamentals/static-files/samples/6.x/StaticFilesSample/Program.cs?name=snippet_mult2)] - -> [!NOTE] -> The preceding approach applies to Razor Pages and MVC apps. For guidance that applies to Blazor Web Apps, see . - - - -### Security considerations for static files +## Security considerations for static files > [!WARNING] > `UseDirectoryBrowser` and `UseStaticFiles` can leak secrets. Disabling directory browsing in production is highly recommended. Carefully review which directories are enabled via `UseStaticFiles` or `UseDirectoryBrowser`. The entire directory and its sub-directories become publicly accessible. Store files suitable for serving to the public in a dedicated directory, such as `/wwwroot`. Separate these files from MVC views, Razor Pages, configuration files, etc. @@ -252,47 +125,3 @@ The following code updates the `WebRootFileProvider`, which enables the Image Ta > If the IIS static file handler is enabled **and** the ASP.NET Core Module is configured incorrectly, static files are served. This happens, for example, if the *web.config* file isn't deployed. * Place code files, including `.cs` and `.cshtml`, outside of the app project's [web root](xref:fundamentals/index#web-root). A logical separation is therefore created between the app's client-side content and server-based code. This prevents server-side code from being leaked. - -## Serve files outside wwwroot by updating IWebHostEnvironment.WebRootPath - -When is set to a folder other than `wwwroot`: - -* In the development environment, static assets found in both `wwwroot` and the updated `IWebHostEnvironment.WebRootPath` are served from `wwwroot`. -* In any environment other than development, duplicate static assets are served from the updated `IWebHostEnvironment.WebRootPath` folder. - -Consider a web app created with the empty web template: - -* Containing an `Index.html` file in `wwwroot` and `wwwroot-custom`. -* With the following updated `Program.cs` file that sets `WebRootPath = "wwwroot-custom"`: - - [!code-csharp[](~/fundamentals/static-files/samples/6.x/WebRoot/Program.cs?name=snippet1)] - -In the preceding code, requests to `/`: - -* In the development environment return `wwwroot/Index.html` -* In any environment other than development return `wwwroot-custom/Index.html` - -To ensure assets from `wwwroot-custom` are returned, use one of the following approaches: - -* Delete duplicate named assets in `wwwroot`. -* Set `"ASPNETCORE_ENVIRONMENT"` in `Properties/launchSettings.json` to any value other than `"Development"`. -* Completely disable static web assets by setting `false` in the project file. ***WARNING, disabling static web assets disables [Razor Class Libraries](xref:razor-pages/ui-class)***. -* Add the following JSON to the project file: - - ```xml - - - - ``` - -The following code updates `IWebHostEnvironment.WebRootPath` to a non development value, guaranteeing duplicate content is returned from `wwwroot-custom` rather than `wwwroot`: - -[!code-csharp[](~/fundamentals/static-files/samples/6.x/WebRoot/Program.cs?name=snippet2&highlight=5)] - -## Additional resources - -* [View or download sample code](https://github.com/dotnet/AspNetCore.Docs/tree/main/aspnetcore/fundamentals/static-files/samples) ([how to download](xref:fundamentals/index#how-to-download-a-sample)) -* [Middleware](xref:fundamentals/middleware/index) -* [Introduction to ASP.NET Core](xref:index) - -:::moniker-end From 325d32ee454a1d33f21b92e625d41b5153414ed3 Mon Sep 17 00:00:00 2001 From: guardrex <1622880+guardrex@users.noreply.github.com> Date: Thu, 7 Aug 2025 06:59:06 -0400 Subject: [PATCH 02/11] Updates --- aspnetcore/fundamentals/static-files.md | 459 +++++++++++++++++- .../fundamentals/static-files/_static/db2.PNG | Bin 6867 -> 0 bytes .../static-files/_static/dir-browse.png | Bin 6013 -> 0 bytes .../static-files/includes/static-files5.md | 102 ---- .../static-files/includes/static-files6-7.md | 96 ---- .../static-files/includes/static-files8.md | 96 ---- 6 files changed, 438 insertions(+), 315 deletions(-) delete mode 100644 aspnetcore/fundamentals/static-files/_static/db2.PNG delete mode 100644 aspnetcore/fundamentals/static-files/_static/dir-browse.png diff --git a/aspnetcore/fundamentals/static-files.md b/aspnetcore/fundamentals/static-files.md index 61750d8c5a07..54a079e03a26 100644 --- a/aspnetcore/fundamentals/static-files.md +++ b/aspnetcore/fundamentals/static-files.md @@ -30,7 +30,7 @@ Creating performant web apps requires optimizing asset delivery to the browser. * Use a [CDN](/microsoft-365/enterprise/content-delivery-networks?view=o365-worldwide&preserve-view=true) to serve the assets closer to the user. * [Fingerprinting assets](https://wikipedia.org/wiki/Fingerprint_(computing)) to prevent reusing old versions of files. -`MapStaticAssets`: +: * Integrates the information gathered about static web assets during the build and publish process with a runtime library that processes this information to optimize file serving to the browser. * Are routing endpoint conventions that optimize the delivery of static assets in an app. It's designed to work with all UI frameworks, including Blazor, Razor Pages, and MVC. @@ -39,9 +39,9 @@ Creating performant web apps requires optimizing asset delivery to the browser. is available in ASP.NET Core in .NET 9 or later. must be used in versions prior to .NET 9. -`UseStaticFiles` serves static files, but it doesn't provide the same level of optimization as `MapStaticAssets`. `MapStaticAssets` is optimized for serving assets that the app has knowledge of at runtime. If the app serves assets from other locations, such as disk or embedded resources, `UseStaticFiles` should be used. + serves static files, but it doesn't provide the same level of optimization as . is optimized for serving assets that the app has knowledge of at runtime. If the app serves assets from other locations, such as disk or embedded resources, should be used. -Map Static Assets provides the following benefits that aren't available when calling `UseStaticFiles`: +Map Static Assets provides the following benefits that aren't available when calling : * Build-time compression for all the assets in the app, including JavaScript (JS) and stylesheets but excluding image and font assets that are already compressed. [Gzip](https://tools.ietf.org/html/rfc1952) (`Content-Encoding: gz`) compression is used during development. Gzip with [Brotli](https://tools.ietf.org/html/rfc7932) (`Content-Encoding: br`) compression is used during publish. * [Fingerprinting](https://developer.mozilla.org/docs/Glossary/Fingerprinting) for all assets at build time with a [Base64](https://developer.mozilla.org/docs/Glossary/Base64)-encoded string of the [SHA-256](xref:System.Security.Cryptography.SHA256) hash of each file's content. This prevents reusing an old version of a file, even if the old file is cached. Fingerprinted assets are cached using the [`immutable` directive](https://developer.mozilla.org/docs/Web/HTTP/Headers/Cache-Control#directives), which results in the browser never requesting the asset again until it changes. For browsers that don't support the `immutable` directive, a [`max-age` directive](https://developer.mozilla.org/docs/Web/HTTP/Headers/Cache-Control#directives) is added. @@ -55,7 +55,7 @@ Map Static Assets provides the following benefits that aren't available when cal Map Static Assets doesn't provide features for minification or other file transformations. Minification is usually handled by custom code or [third-party tooling](xref:blazor/fundamentals/index#community-links-to-blazor-resources). -The following features are supported with `UseStaticFiles` but not with `MapStaticAssets`: +The following features are supported with but not with : * [Serve files outside of the web root directory](#serve-files-outside-of-the-web-root-directory) * [Set HTTP response headers](#set-http-response-headers) @@ -198,7 +198,7 @@ app.UseStaticFiles(new StaticFileOptions :::moniker range=">= aspnetcore-9.0" -The ASP.NET Core templates call before calling . Most apps follow this pattern. When `MapStaticAssets` is called before the authorization middleware: +The ASP.NET Core templates call before calling . Most apps follow this pattern. When is called before the authorization middleware: :::moniker-end @@ -219,7 +219,7 @@ The ASP.NET Core templates call , specifying a path, after calling `UseAuthorization`. * Set the [fallback authorization policy](xref:Microsoft.AspNetCore.Authorization.AuthorizationOptions.FallbackPolicy). :::moniker range=">= aspnetcore-6.0" @@ -291,11 +291,11 @@ app.UseStaticFiles(new StaticFileOptions :::moniker-end -In the preceding code, the fallback authorization policy requires ***all*** users to be authenticated. Endpoints such as controllers, Razor Pages, etc that specify their own authorization requirements don't use the fallback authorization policy. For example, Razor Pages, controllers, or action methods with `[AllowAnonymous]` or `[Authorize(PolicyName="MyPolicy")]` use the applied authorization attribute rather than the fallback authorization policy. +In the preceding code, the fallback authorization policy requires authenticated users. Endpoints, such as controllers and Razor Pages, that specify their own authorization requirements don't use the fallback authorization policy. For example, Razor Pages, controllers, or action methods with `[AllowAnonymous]` or `[Authorize(PolicyName="MyPolicy")]` use the applied authorization attribute rather than the fallback authorization policy. adds to the current instance, which enforces that the current user is authenticated. -Static assets under `wwwroot` are publicly accessible because the default Static File Middleware (`app.UseStaticFiles();`) is called before `UseAuthentication`. Static assets in the *ExtraStaticFiles* folder require authentication. +Static assets under `wwwroot` are publicly accessible because the default Static File Middleware () is called before `UseAuthentication`. Static assets in the *ExtraStaticFiles* folder require authentication. An alternative approach to serve files based on authorization is to: @@ -413,6 +413,9 @@ Consider a web app created from the empty web template: * Containing an `Index.html` file in `wwwroot` and `wwwroot-custom`. * With the following updated `Program.cs` file that sets `WebRootPath = "wwwroot-custom"`: + + + ```csharp var builder = WebApplication.CreateBuilder(new WebApplicationOptions { @@ -429,6 +432,8 @@ app.MapStaticAssets(); app.Run(); ``` + + By default, requests to `/`: * In the development environment, `wwwroot/Index.html` is returned. @@ -438,7 +443,7 @@ To ensure assets from `wwwroot-custom` are always returned, use ***one*** of the * Delete duplicate-named assets in `wwwroot`. -* Set `"ASPNETCORE_ENVIRONMENT"` in `Properties/launchSettings.json` to any value other than `Development`. +* Set `ASPNETCORE_ENVIRONMENT` in `Properties/launchSettings.json` to any value other than `Development`. * Disable static web assets by setting `` to `false` in the app's project file. ***WARNING:*** Disabling static web assets disables [Razor class libraries](xref:razor-pages/ui-class). @@ -446,7 +451,7 @@ To ensure assets from `wwwroot-custom` are always returned, use ***one*** of the ```xml - + ``` @@ -471,16 +476,39 @@ When developing a server-side Blazor app and testing locally, see .* -Consider the following Razor page which displays the `/ExtraStaticFiles/image3.png` file: +Consider the following markup that displays a company logo: ```html -Test +Company logo +``` + +The developer intends to use the [Image Tag Helper](xref:mvc/views/tag-helpers/builtin-th/image-tag-helper) to append a version and serve the file from a custom location, a folder named `ExtraStaticFiles`. + +:::moniker-end + +:::moniker range=">= aspnetcore-9.0" + +The following example calls to serve files from `wwwroot` and to serve files from `ExtraStaticFiles`: + +```csharp +app.MapStaticAssets(); + +app.UseStaticFiles(new StaticFileOptions +{ + FileProvider = new PhysicalFileProvider( + Path.Combine(builder.Environment.ContentRootPath, "ExtraStaticFiles")) +}); ``` -`UseStaticFiles` and `UseFileServer` default to the file provider pointing at `wwwroot`. Additional instances of `UseStaticFiles` and `UseFileServer` can be provided with other file providers to serve files from other locations. The following example calls `UseStaticFiles` twice to serve files from both `wwwroot` and `ExtraStaticFiles`: +:::moniker-end + +:::moniker range=">= aspnetcore-6.0 < aspnetcore-9.0" + +The following example calls twice to serve files from both `wwwroot` and `ExtraStaticFiles`: ```csharp -app.UseStaticFiles(); // Serve files from wwwroot +app.UseStaticFiles(); + app.UseStaticFiles(new StaticFileOptions { FileProvider = new PhysicalFileProvider( @@ -488,12 +516,13 @@ app.UseStaticFiles(new StaticFileOptions }); ``` -Using the preceding code: +:::moniker-end + +:::moniker range=">= aspnetcore-6.0" -* The `/ExtraStaticFiles/image3.png` file is displayed. -* [Image Tag Helpers](xref:mvc/views/tag-helpers/builtin-th/image-tag-helper) () aren't applied because Tag Helpers depend on . `WebRootFileProvider` hasn't been updated to include the `ExtraStaticFiles` folder. +Using the preceding code, the `ExtraStaticFiles/logo.png` file is displayed. However, the [Image Tag Helper](xref:mvc/views/tag-helpers/builtin-th/image-tag-helper) () isn't applied because the Tag Helper depends on , which hasn't been updated to include the `ExtraStaticFiles` folder. -The following code updates the `WebRootFileProvider`, which enables the Image Tag Helper to provide a version: +The following code updates the to include the `ExtraStaticFiles` folder by using a . This enables the Image Tag Helper to apply a version to images in the `ExtraStaticFiles` folder: ```csharp using Microsoft.Extensions.FileProviders; @@ -506,20 +535,408 @@ var newPathProvider = new PhysicalFileProvider( var compositeProvider = new CompositeFileProvider(webRootProvider, newPathProvider); -// Update the default provider. app.Environment.WebRootFileProvider = compositeProvider; +``` -app.MapStaticAssets(); +:::moniker-end + + and default to the file provider pointing at `wwwroot`. Additional instances of and can be provided with other file providers to serve files from other locations. For more information, see [UseStaticFiles still needed with UseFileServer for wwwroot (`dotnet/AspNetCore.Docs` #15578)](https://github.com/dotnet/AspNetCore.Docs/issues/15578). + +## Directory browsing + +Directory browsing allows directory listing within specified directories. + +Directory browsing is disabled by default for security reasons. For more information, see [Security considerations for static files](#security-considerations-for-static-files). + +Enable directory browsing with the following API: + +* +* + +In the following example: + +* An `images` folder at the root of the app holds images for directory browsing. +* The request path to browse the images is `/DirectoryImages`. +* Calling and setting the of enables displaying browser links to the individual files. + +:::moniker range=">= aspnetcore-6.0" + +```csharp +using Microsoft.AspNetCore.StaticFiles; +using Microsoft.Extensions.FileProviders; + +... + +builder.Services.AddDirectoryBrowser(); + +... + +app.UseStaticFiles(); + +var fileProvider = new PhysicalFileProvider(Path.Combine(builder.Environment.WebRootPath, "images")); +var requestPath = "/DirectoryImages"; + +app.UseStaticFiles(new StaticFileOptions +{ + FileProvider = fileProvider, + RequestPath = requestPath +}); + +app.UseDirectoryBrowser(new DirectoryBrowserOptions +{ + FileProvider = fileProvider, + RequestPath = requestPath +}); + +... ``` :::moniker-end :::moniker range="< aspnetcore-6.0" -`UseStaticFiles` and `UseFileServer` default to the file provider pointing at `wwwroot`. Additional instances of `UseStaticFiles` and `UseFileServer` can be provided with other file providers to serve files from other locations. For more information, see [this GitHub issue](https://github.com/dotnet/AspNetCore.Docs/issues/15578). +In `Startup.ConfigureServices`: + +```csharp +services.AddDirectoryBrowser(); +``` + +In `Startup.Configure`: + +```csharp +using Microsoft.Extensions.FileProviders; +using System.IO; + +... + +app.UseStaticFiles(new StaticFileOptions +{ + FileProvider = new PhysicalFileProvider( + Path.Combine(env.WebRootPath, "images")), + RequestPath = "/DirectoryImages" +}); + +app.UseDirectoryBrowser(new DirectoryBrowserOptions +{ + FileProvider = new PhysicalFileProvider( + Path.Combine(env.WebRootPath, "images")), + RequestPath = "/DirectoryImages" +}); +``` :::moniker-end +The preceding code allows directory browsing of the `wwwroot/images` folder using the URL `https://{HOST}/DirectoryImages` with links to each file and folder, where the `{HOST}` placeholder is the host. + +:::moniker range=">= aspnetcore-6.0" + + adds services required by the Directory Browsing Middleware, including . These services may be added by other calls, such as , but we recommend calling to ensure the services are added. + +:::moniker-end + +## Serve default documents + +Setting a default page provides visitors a starting point on a site. To serve a default file from `wwwroot` without requiring the request URL to include the file's name, call the method: + +:::moniker range=">= aspnetcore-6.0" + +```csharp +var builder = WebApplication.CreateBuilder(args); + +builder.Services.AddRazorPages(); +builder.Services.AddControllersWithViews(); + +var app = builder.Build(); + +if (!app.Environment.IsDevelopment()) +{ + app.UseExceptionHandler("/Error"); + app.UseHsts(); +} + +app.UseHttpsRedirection(); + +app.UseDefaultFiles(); + +app.UseStaticFiles(); +app.UseAuthorization(); + +app.MapDefaultControllerRoute(); +app.MapRazorPages(); + +app.Run(); +``` + +:::moniker-end + + + +:::moniker range="< aspnetcore-6.0" + +```csharp +public void Configure(IApplicationBuilder app, IWebHostEnvironment env) +{ + if (env.IsDevelopment()) + { + app.UseDeveloperExceptionPage(); + } + else + { + app.UseExceptionHandler("/Home/Error"); + app.UseHsts(); + } + + app.UseHttpsRedirection(); + + app.UseDefaultFiles(); + app.UseStaticFiles(); + + app.UseRouting(); + + app.UseAuthorization(); + + app.UseEndpoints(endpoints => + { + endpoints.MapDefaultControllerRoute(); + }); +} +``` + +:::moniker-end + + must be called before to serve the default file. is a URL rewriter that doesn't serve the file. + +With , requests to a folder in `wwwroot` search for: + +* `default.htm` +* `default.html` +* `index.htm` +* `index.html` + +The first file found from the list is served as though the request included the file's name. The browser URL continues to reflect the URI requested. + +The following code changes the default file name to `default-document.html`: + +```csharp +var options = new DefaultFilesOptions(); +options.DefaultFileNames.Clear(); +options.DefaultFileNames.Add("default-document.html"); +app.UseDefaultFiles(options); +``` + +### UseFileServer for default documents + + combines the functionality of , , and optionally . + +Call to enable the serving of static files and the default file. Directory browsing isn't enabled: + +```csharp +app.UseFileServer(); +``` + +The following code enables the serving of static files, the default file, and directory browsing: + + + +:::moniker range=">= aspnetcore-6.0" + +```csharp +builder.Services.AddDirectoryBrowser(); + +... + +app.UseFileServer(enableDirectoryBrowsing: true); +``` + +:::moniker-end + +:::moniker range="< aspnetcore-6.0" + +In `Startup.ConfigureServices`: + +```csharp +services.AddDirectoryBrowser(); +``` + +In `Startup.Configure`: + +```csharp +app.UseFileServer(enableDirectoryBrowsing: true); +``` + +:::moniker-end + +Consider the following directory hierarchy: + +* `wwwroot` + * `css` + * `images` + * `js` +* `ExtraStaticFiles` + * `images` + * `logo.png` + * `default.html` + +The following code enables the serving of static files, the default file, and directory browsing of `ExtraStaticFiles`: + + + +:::moniker range=">= aspnetcore-6.0" + +```csharp +using Microsoft.Extensions.FileProviders; + +... + +builder.Services.AddDirectoryBrowser(); + +... + +app.UseStaticFiles(); + +app.UseFileServer(new FileServerOptions +{ + FileProvider = new PhysicalFileProvider( + Path.Combine(builder.Environment.ContentRootPath, "MyStaticFiles")), + RequestPath = "/StaticFiles", + EnableDirectoryBrowsing = true +}); + +... +``` + +:::moniker-end + +:::moniker range="< aspnetcore-6.0" + +[!code-csharp[](~/fundamentals/static-files/samples/3.x/StaticFilesSample/StartupFileServer.cs?name=snippet_ClassMembers&highlight=4,21-31)] + +In `Startup.ConfigureServices`: + +```csharp +services.AddDirectoryBrowser(); +``` + +In `Startup.Configure`: + +```csharp +using Microsoft.Extensions.FileProviders; +using System.IO; + +... +app.UseStaticFiles(); + +app.UseFileServer(new FileServerOptions +{ + FileProvider = new PhysicalFileProvider( + Path.Combine(env.ContentRootPath, "ExtraStaticFiles")), + RequestPath = "/StaticFiles", + EnableDirectoryBrowsing = true +}); + +... +``` + +:::moniker-end + + must be called when the `EnableDirectoryBrowsing` property value is `true`. + +Using the preceding file hierarchy and code, URLs resolve as shown in the following table. + +| URI | Response | +| --- | --- | +| `https:///StaticFiles/images/logo.png` | `ExtraStaticFiles/images/logo.png` | +| `https:///StaticFiles` | `ExtraStaticFiles/default.html` | + +If no default-named file exists in the `ExtraStaticFiles` directory, `https://{HOST}/StaticFiles` returns the directory listing with clickable links, where the `{HOST}` placeholder is the host. + + and perform a client-side redirect from the target URI without a trailing `/` to the target URI with a trailing `/`. For example, from `https://{HOST}/StaticFiles` (no trailing `/`) to `https://{HOST}/StaticFiles/` (includes a trailing `/`). Relative URLs within the `ExtraStaticFiles` directory are invalid without a trailing slash (`/`) unless the option of is used. + +## FileExtensionContentTypeProvider + +The class contains a `Mappings` property that serves as a mapping of file extensions to MIME content types. In the following sample, several file extensions are mapped to known MIME types. The `.rtf` extension is replaced, and `.mp4` is removed: + + + +:::moniker range=">= aspnetcore-6.0" + +[!code-csharp[](~/fundamentals/static-files/samples/6.x/StaticFilesSample/Program.cs?name=snippet_fec&highlight=19-33)] + +```csharp +using Microsoft.AspNetCore.StaticFiles; +using Microsoft.Extensions.FileProviders; + +... + +// Set up custom content types - associating file extension to MIME type +var provider = new FileExtensionContentTypeProvider(); +// Add new mappings +provider.Mappings[".myapp"] = "application/x-msdownload"; +provider.Mappings[".htm3"] = "text/html"; +provider.Mappings[".image"] = "image/png"; +// Replace an existing mapping +provider.Mappings[".rtf"] = "application/x-msdownload"; +// Remove MP4 videos. +provider.Mappings.Remove(".mp4"); + +app.UseStaticFiles(new StaticFileOptions +{ + ContentTypeProvider = provider +}); +``` + +:::moniker-end + +:::moniker range="< aspnetcore-6.0" + +[!code-csharp[](~/fundamentals/static-files/samples/3.x/StaticFilesSample/StartupFileExtensionContentTypeProvider.cs?name=snippet_Provider)] + +In `Startup.Configure`: + +```csharp +using Microsoft.AspNetCore.StaticFiles; +using Microsoft.Extensions.FileProviders; +using System.IO; + +... + +// Set up custom content types - associating file extension to MIME type +var provider = new FileExtensionContentTypeProvider(); +// Add new mappings +provider.Mappings[".myapp"] = "application/x-msdownload"; +provider.Mappings[".htm3"] = "text/html"; +provider.Mappings[".image"] = "image/png"; +// Replace an existing mapping +provider.Mappings[".rtf"] = "application/x-msdownload"; +// Remove MP4 videos. +provider.Mappings.Remove(".mp4"); + +app.UseStaticFiles(new StaticFileOptions +{ + FileProvider = new PhysicalFileProvider( + Path.Combine(env.WebRootPath, "images")), + RequestPath = "/MyImages", + ContentTypeProvider = provider +}); + +app.UseDirectoryBrowser(new DirectoryBrowserOptions +{ + FileProvider = new PhysicalFileProvider( + Path.Combine(env.WebRootPath, "images")), + RequestPath = "/MyImages" +}); +``` + +:::moniker-end + +For more information, see [MIME content types](https://www.iana.org/assignments/media-types/media-types.xhtml). + + + + + diff --git a/aspnetcore/fundamentals/static-files/_static/db2.PNG b/aspnetcore/fundamentals/static-files/_static/db2.PNG deleted file mode 100644 index 6170d1177a675b7108fe9596ab14f97f560d4679..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6867 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 YPS?`jQM*L>B~FF9r-S&c_BiDK0L?3P@Bjb+ diff --git a/aspnetcore/fundamentals/static-files/includes/static-files5.md b/aspnetcore/fundamentals/static-files/includes/static-files5.md index 0f5026c7cc0a..9d57194ed770 100644 --- a/aspnetcore/fundamentals/static-files/includes/static-files5.md +++ b/aspnetcore/fundamentals/static-files/includes/static-files5.md @@ -1,105 +1,3 @@ -## Directory browsing - -Directory browsing allows directory listing within specified directories. - -Directory browsing is disabled by default for security reasons. For more information, see [Security considerations for static files](#security-considerations-for-static-files). - -Enable directory browsing with: - -* in `Startup.ConfigureServices`. -* in `Startup.Configure`. - -[!code-csharp[](~/fundamentals/static-files/samples/3.x/StaticFilesSample/StartupBrowse.cs?name=snippet_ClassMembers&highlight=4,21-35)] - -The preceding code allows directory browsing of the *wwwroot/images* folder using the URL `https:///MyImages`, with links to each file and folder. - -![directory browsing](~/fundamentals/static-files/_static/dir-browse.png) - -## Serve default documents - -Setting a default page provides visitors a starting point on a site. To serve a default file from `wwwroot` without requiring the request URL to include the file's name, call the method: - -[!code-csharp[](~/fundamentals/static-files/samples/3.x/StaticFilesSample/StartupEmpty.cs?name=snippet_Configure&highlight=15)] - -`UseDefaultFiles` must be called before `UseStaticFiles` to serve the default file. `UseDefaultFiles` is a URL rewriter that doesn't serve the file. - -With `UseDefaultFiles`, requests to a folder in `wwwroot` search for: - -* `default.htm` -* `default.html` -* `index.htm` -* `index.html` - -The first file found from the list is served as though the request included the file's name. The browser URL continues to reflect the URI requested. - -The following code changes the default file name to `mydefault.html`: - -[!code-csharp[](~/fundamentals/static-files/samples/3.x/StaticFilesSample/StartupDefault.cs?name=snippet_DefaultFiles)] - -The following code shows `Startup.Configure` with the preceding code: - -[!code-csharp[](~/fundamentals/static-files/samples/3.x/StaticFilesSample/StartupDefault.cs?name=snippet_Configure&highlight=15-19)] - -### UseFileServer for default documents - - combines the functionality of `UseStaticFiles`, `UseDefaultFiles`, and optionally `UseDirectoryBrowser`. - -Call `app.UseFileServer` to enable the serving of static files and the default file. Directory browsing isn't enabled. The following code shows `Startup.Configure` with `UseFileServer`: - -[!code-csharp[](~/fundamentals/static-files/samples/3.x/StaticFilesSample/StartupEmpty2.cs?name=snippet_Configure&highlight=15)] - -The following code enables the serving of static files, the default file, and directory browsing: - -```csharp -app.UseFileServer(enableDirectoryBrowsing: true); -``` - -The following code shows `Startup.Configure` with the preceding code: - -[!code-csharp[](~/fundamentals/static-files/samples/3.x/StaticFilesSample/StartupEmpty3.cs?name=snippet_Configure&highlight=15)] - -Consider the following directory hierarchy: - -* `wwwroot` - * `css` - * `images` - * `js` -* `MyStaticFiles` - * `images` - * `MyImage.jpg` - * `default.html` - -The following code enables the serving of static files, the default file, and directory browsing of `MyStaticFiles`: - -[!code-csharp[](~/fundamentals/static-files/samples/3.x/StaticFilesSample/StartupFileServer.cs?name=snippet_ClassMembers&highlight=4,21-31)] - - must be called when the `EnableDirectoryBrowsing` property value is `true`. - -Using the file hierarchy and preceding code, URLs resolve as follows: - -| URI | Response | -| --- | --- | -| `https:///StaticFiles/images/MyImage.jpg` | `MyStaticFiles/images/MyImage.jpg` | -| `https:///StaticFiles` | `MyStaticFiles/default.html` | - -If no default-named file exists in the *MyStaticFiles* directory, `https:///StaticFiles` returns the directory listing with clickable links: - -![Static files list](~/fundamentals/static-files/_static/db2.png) - - and perform a client-side redirect from the target URI without a trailing `/` to the target URI with a trailing `/`. For example, from `https:///StaticFiles` to `https:///StaticFiles/`. Relative URLs within the *StaticFiles* directory are invalid without a trailing slash (`/`). - -## FileExtensionContentTypeProvider - -The class contains a `Mappings` property that serves as a mapping of file extensions to MIME content types. In the following sample, several file extensions are mapped to known MIME types. The *.rtf* extension is replaced, and *.mp4* is removed: - -[!code-csharp[](~/fundamentals/static-files/samples/3.x/StaticFilesSample/StartupFileExtensionContentTypeProvider.cs?name=snippet_Provider)] - -The following code shows `Startup.Configure` with the preceding code: - -[!code-csharp[](~/fundamentals/static-files/samples/3.x/StaticFilesSample/StartupFileExtensionContentTypeProvider.cs?name=snippet_Configure&highlight=15-43)] - -See [MIME content types](https://www.iana.org/assignments/media-types/media-types.xhtml). - ## Non-standard content types The Static File Middleware understands almost 400 known file content types. If the user requests a file with an unknown file type, the Static File Middleware passes the request to the next middleware in the pipeline. If no middleware handles the request, a *404 Not Found* response is returned. If directory browsing is enabled, a link to the file is displayed in a directory listing. diff --git a/aspnetcore/fundamentals/static-files/includes/static-files6-7.md b/aspnetcore/fundamentals/static-files/includes/static-files6-7.md index 0d910bbeec4a..e81f6a5c2157 100644 --- a/aspnetcore/fundamentals/static-files/includes/static-files6-7.md +++ b/aspnetcore/fundamentals/static-files/includes/static-files6-7.md @@ -1,99 +1,3 @@ -## Directory browsing - -Directory browsing allows directory listing within specified directories. - -Directory browsing is disabled by default for security reasons. For more information, see [Security considerations for static files](#security-considerations-for-static-files). - -Enable directory browsing with and : - -[!code-csharp[](~/fundamentals/static-files/samples/6.x/StaticFilesSample/Program.cs?name=snippet_db&highlight=9,23-37)] - - -The preceding code allows directory browsing of the *wwwroot/images* folder using the URL `https:///MyImages`, with links to each file and folder: - -![directory browsing](~/fundamentals/static-files/_static/dir-browse.png) - -`AddDirectoryBrowser` [adds services](https://github.com/dotnet/aspnetcore/blob/fc4e391aa58a9fa67fdc3a96da6cfcadd0648b17/src/Middleware/StaticFiles/src/DirectoryBrowserServiceExtensions.cs#L25) required by the directory browsing middleware, including . These services may be added by other calls, such as , but we recommend calling `AddDirectoryBrowser` to ensure the services are added in all apps. - -## Serve default documents - - - -Setting a default page provides visitors a starting point on a site. To serve a default file from `wwwroot` without requiring the request URL to include the file's name, call the method: - -[!code-csharp[](~/fundamentals/static-files/samples/6.x/StaticFilesSample/Program.cs?name=snippet_df&highlight=16)] - -`UseDefaultFiles` must be called before `UseStaticFiles` to serve the default file. `UseDefaultFiles` is a URL rewriter that doesn't serve the file. - -With `UseDefaultFiles`, requests to a folder in `wwwroot` search for: - -* `default.htm` -* `default.html` -* `index.htm` -* `index.html` - -The first file found from the list is served as though the request included the file's name. The browser URL continues to reflect the URI requested. - -The following code changes the default file name to `mydefault.html`: - -[!code-csharp[](~/fundamentals/static-files/samples/6.x/StaticFilesSample/Program.cs?name=snippet_df2&highlight=16-19)] - -### UseFileServer for default documents - - combines the functionality of `UseStaticFiles`, `UseDefaultFiles`, and optionally `UseDirectoryBrowser`. - -Call `app.UseFileServer` to enable the serving of static files and the default file. Directory browsing isn't enabled: - -[!code-csharp[](~/fundamentals/static-files/samples/6.x/StaticFilesSample/Program.cs?name=snippet_ufs&highlight=16)] - -The following code enables the serving of static files, the default file, and directory browsing: - - -[!code-csharp[](~/fundamentals/static-files/samples/6.x/StaticFilesSample/Program.cs?name=snippet_ufs2&highlight=6,18)] - -Consider the following directory hierarchy: - -* `wwwroot` - * `css` - * `images` - * `js` -* `MyStaticFiles` - * `images` - * `MyImage.jpg` - * `default.html` - -The following code enables the serving of static files, the default file, and directory browsing of `MyStaticFiles`: - - - -[!code-csharp[](~/fundamentals/static-files/samples/6.x/StaticFilesSample/Program.cs?name=snippet_tree&highlight=1,8,22-28)] - - must be called when the `EnableDirectoryBrowsing` property value is `true`. - -Using the preceding file hierarchy and code, URLs resolve as follows: - -| URI | Response | -| --- | --- | -| `https:///StaticFiles/images/MyImage.jpg` | `MyStaticFiles/images/MyImage.jpg` | -| `https:///StaticFiles` | `MyStaticFiles/default.html` | - -If no default-named file exists in the *MyStaticFiles* directory, `https:///StaticFiles` returns the directory listing with clickable links: - -![Static files list](~/fundamentals/static-files/_static/db2.png) - - and perform a client-side redirect from the target URI without a trailing `/` to the target URI with a trailing `/`. For example, from `https:///StaticFiles` to `https:///StaticFiles/`. Relative URLs within the *StaticFiles* directory are invalid without a trailing slash (`/`) unless the option of is used. - -## FileExtensionContentTypeProvider - -The class contains a `Mappings` property that serves as a mapping of file extensions to MIME content types. In the following sample, several file extensions are mapped to known MIME types. The *.rtf* extension is replaced, and *.mp4* is removed: - - -[!code-csharp[](~/fundamentals/static-files/samples/6.x/StaticFilesSample/Program.cs?name=snippet_fec&highlight=19-33)] - -See [MIME content types](https://www.iana.org/assignments/media-types/media-types.xhtml). - ## Non-standard content types The Static File Middleware understands almost 400 known file content types. If the user requests a file with an unknown file type, the Static File Middleware passes the request to the next middleware in the pipeline. If no middleware handles the request, a *404 Not Found* response is returned. If directory browsing is enabled, a link to the file is displayed in a directory listing. diff --git a/aspnetcore/fundamentals/static-files/includes/static-files8.md b/aspnetcore/fundamentals/static-files/includes/static-files8.md index 0d910bbeec4a..e81f6a5c2157 100644 --- a/aspnetcore/fundamentals/static-files/includes/static-files8.md +++ b/aspnetcore/fundamentals/static-files/includes/static-files8.md @@ -1,99 +1,3 @@ -## Directory browsing - -Directory browsing allows directory listing within specified directories. - -Directory browsing is disabled by default for security reasons. For more information, see [Security considerations for static files](#security-considerations-for-static-files). - -Enable directory browsing with and : - -[!code-csharp[](~/fundamentals/static-files/samples/6.x/StaticFilesSample/Program.cs?name=snippet_db&highlight=9,23-37)] - - -The preceding code allows directory browsing of the *wwwroot/images* folder using the URL `https:///MyImages`, with links to each file and folder: - -![directory browsing](~/fundamentals/static-files/_static/dir-browse.png) - -`AddDirectoryBrowser` [adds services](https://github.com/dotnet/aspnetcore/blob/fc4e391aa58a9fa67fdc3a96da6cfcadd0648b17/src/Middleware/StaticFiles/src/DirectoryBrowserServiceExtensions.cs#L25) required by the directory browsing middleware, including . These services may be added by other calls, such as , but we recommend calling `AddDirectoryBrowser` to ensure the services are added in all apps. - -## Serve default documents - - - -Setting a default page provides visitors a starting point on a site. To serve a default file from `wwwroot` without requiring the request URL to include the file's name, call the method: - -[!code-csharp[](~/fundamentals/static-files/samples/6.x/StaticFilesSample/Program.cs?name=snippet_df&highlight=16)] - -`UseDefaultFiles` must be called before `UseStaticFiles` to serve the default file. `UseDefaultFiles` is a URL rewriter that doesn't serve the file. - -With `UseDefaultFiles`, requests to a folder in `wwwroot` search for: - -* `default.htm` -* `default.html` -* `index.htm` -* `index.html` - -The first file found from the list is served as though the request included the file's name. The browser URL continues to reflect the URI requested. - -The following code changes the default file name to `mydefault.html`: - -[!code-csharp[](~/fundamentals/static-files/samples/6.x/StaticFilesSample/Program.cs?name=snippet_df2&highlight=16-19)] - -### UseFileServer for default documents - - combines the functionality of `UseStaticFiles`, `UseDefaultFiles`, and optionally `UseDirectoryBrowser`. - -Call `app.UseFileServer` to enable the serving of static files and the default file. Directory browsing isn't enabled: - -[!code-csharp[](~/fundamentals/static-files/samples/6.x/StaticFilesSample/Program.cs?name=snippet_ufs&highlight=16)] - -The following code enables the serving of static files, the default file, and directory browsing: - - -[!code-csharp[](~/fundamentals/static-files/samples/6.x/StaticFilesSample/Program.cs?name=snippet_ufs2&highlight=6,18)] - -Consider the following directory hierarchy: - -* `wwwroot` - * `css` - * `images` - * `js` -* `MyStaticFiles` - * `images` - * `MyImage.jpg` - * `default.html` - -The following code enables the serving of static files, the default file, and directory browsing of `MyStaticFiles`: - - - -[!code-csharp[](~/fundamentals/static-files/samples/6.x/StaticFilesSample/Program.cs?name=snippet_tree&highlight=1,8,22-28)] - - must be called when the `EnableDirectoryBrowsing` property value is `true`. - -Using the preceding file hierarchy and code, URLs resolve as follows: - -| URI | Response | -| --- | --- | -| `https:///StaticFiles/images/MyImage.jpg` | `MyStaticFiles/images/MyImage.jpg` | -| `https:///StaticFiles` | `MyStaticFiles/default.html` | - -If no default-named file exists in the *MyStaticFiles* directory, `https:///StaticFiles` returns the directory listing with clickable links: - -![Static files list](~/fundamentals/static-files/_static/db2.png) - - and perform a client-side redirect from the target URI without a trailing `/` to the target URI with a trailing `/`. For example, from `https:///StaticFiles` to `https:///StaticFiles/`. Relative URLs within the *StaticFiles* directory are invalid without a trailing slash (`/`) unless the option of is used. - -## FileExtensionContentTypeProvider - -The class contains a `Mappings` property that serves as a mapping of file extensions to MIME content types. In the following sample, several file extensions are mapped to known MIME types. The *.rtf* extension is replaced, and *.mp4* is removed: - - -[!code-csharp[](~/fundamentals/static-files/samples/6.x/StaticFilesSample/Program.cs?name=snippet_fec&highlight=19-33)] - -See [MIME content types](https://www.iana.org/assignments/media-types/media-types.xhtml). - ## Non-standard content types The Static File Middleware understands almost 400 known file content types. If the user requests a file with an unknown file type, the Static File Middleware passes the request to the next middleware in the pipeline. If no middleware handles the request, a *404 Not Found* response is returned. If directory browsing is enabled, a link to the file is displayed in a directory listing. From b5294b02aebe27a3949107eb900b4087a50490e0 Mon Sep 17 00:00:00 2001 From: guardrex <1622880+guardrex@users.noreply.github.com> Date: Thu, 7 Aug 2025 18:07:11 -0400 Subject: [PATCH 03/11] Updates --- aspnetcore/fundamentals/static-files.md | 321 ++++++++---------- .../static-files/includes/static-files5.md | 35 -- .../static-files/includes/static-files6-7.md | 31 -- .../static-files/includes/static-files8.md | 31 -- 4 files changed, 137 insertions(+), 281 deletions(-) delete mode 100644 aspnetcore/fundamentals/static-files/includes/static-files5.md delete mode 100644 aspnetcore/fundamentals/static-files/includes/static-files6-7.md delete mode 100644 aspnetcore/fundamentals/static-files/includes/static-files8.md diff --git a/aspnetcore/fundamentals/static-files.md b/aspnetcore/fundamentals/static-files.md index 54a079e03a26..408100a279b9 100644 --- a/aspnetcore/fundamentals/static-files.md +++ b/aspnetcore/fundamentals/static-files.md @@ -59,15 +59,11 @@ The following features are supported with - -* [Directory browsing](#directory-browsing) -* [Serve default documents](#serve-default-documents) -* [`FileExtensionContentTypeProvider`](#fileextensioncontenttypeprovider) -* [Serve files from multiple locations](#serve-files-from-multiple-locations) +* [Serving files from disk or embedded resources, or other locations](#serve-files-from-multiple-locations) +* [Directory browsing](#directory-browsing) +* [Serve default documents](#serve-default-documents) +* [Mapping between file extensions and MIME types](#mapping-between-file-extensions-and-mime-types) +* [Serve files from multiple locations](#serve-files-from-multiple-locations) :::moniker-end @@ -97,7 +93,7 @@ Host.CreateDefaultBuilder(args) :::moniker range=">= aspnetcore-9.0" -Call in the app's request processing pipeline to enable serving static files from the app's [web root](xref:fundamentals/index#web-root): +In the request processing pipeline after the call to , call in the app's request processing pipeline to enable serving static files from the app's [web root](xref:fundamentals/index#web-root): ```csharp app.MapStaticAssets(); @@ -107,7 +103,7 @@ app.MapStaticAssets(); :::moniker range="< aspnetcore-9.0" -Call in the app's request processing pipeline to enable serving static files from the app's [web root](xref:fundamentals/index#web-root): +In the request processing pipeline after the call to , call in the app's request processing pipeline to enable serving static files from the app's [web root](xref:fundamentals/index#web-root): ```csharp app.UseStaticFiles(); @@ -152,11 +148,15 @@ Consider the following directory hierarchy with static files residing outside of A request can access `red-rose.jpg` by configuring a new instance of Static File Middleware: +Namespaces for the following API: + ```csharp using Microsoft.Extensions.FileProviders; +``` -... +In the request processing pipeline after the existing call to either (.NET 9 or later) or (.NET 8 or earlier): +```csharp app.UseStaticFiles(new StaticFileOptions { FileProvider = new PhysicalFileProvider( @@ -177,13 +177,17 @@ For the preceding example, tilde-slash notation is supported in Razor Pages and ### Set HTTP response headers -Use to set HTTP response headers. In addition to configuring Static File Middleware to serve static files, the following code sets the [`Cache-Control` header](https://developer.mozilla.org/docs/Web/HTTP/Headers/Cache-Control) to 604,800 seconds (one week): +Use to set HTTP response headers. In addition to configuring Static File Middleware to serve static files, the following code sets the [`Cache-Control` header](https://developer.mozilla.org/docs/Web/HTTP/Headers/Cache-Control) to 604,800 seconds (one week). + +Namespaces for the following API: ```csharp using Microsoft.AspNetCore.Http; +``` -... +In the request processing pipeline after the existing call to either (.NET 9 or later) or (.NET 8 or earlier): +```csharp app.UseStaticFiles(new StaticFileOptions { OnPrepareResponse = ctx => @@ -224,46 +228,46 @@ To serve static files based on authorization: :::moniker range=">= aspnetcore-6.0" +Namespaces for the following API: + ```csharp using Microsoft.AspNetCore.Authorization; using Microsoft.Extensions.FileProviders; -... - -var builder = WebApplication.CreateBuilder(args); +``` -... +Service registrations: +```csharp builder.Services.AddAuthorization(options => { options.FallbackPolicy = new AuthorizationPolicyBuilder() .RequireAuthenticatedUser() .Build(); }); +``` -... - -app.UseHttpsRedirection(); -app.UseStaticFiles(); - -app.UseRouting(); - -app.UseAuthentication(); -app.UseAuthorization(); +In the request processing pipeline after the existing call to either (.NET 9 or later) or (.NET 8 or earlier) and : +```csharp app.UseStaticFiles(new StaticFileOptions { FileProvider = new PhysicalFileProvider( Path.Combine(builder.Environment.ContentRootPath, "MyStaticFiles")), RequestPath = "/StaticFiles" }); - -... ``` :::moniker-end :::moniker range="< aspnetcore-6.0" +Namespaces for the following API: + +```csharp +using Microsoft.AspNetCore.Authorization; +using Microsoft.Extensions.FileProviders; +``` + In `Startup.ConfigureServices`: ```csharp @@ -275,12 +279,9 @@ services.AddAuthorization(options => }); ``` -In `Startup.Configure`: +In `Startup.Configure` after the existing call to and : ```csharp -app.UseAuthentication(); -app.UseAuthorization(); - app.UseStaticFiles(new StaticFileOptions { FileProvider = new PhysicalFileProvider( @@ -338,16 +339,20 @@ The preceding approach requires a page or endpoint per file. :::moniker range=">= aspnetcore-8.0" -The following code returns files for authenticated users: +The following code returns files for authenticated users. + +In `Startup.ConfigureServices`: ```csharp builder.Services.AddAuthorization(o => { o.AddPolicy("AuthenticatedUsers", b => b.RequireAuthenticatedUser()); }); +``` -... +In `Startup.Configure`: +```csharp app.MapGet("/files/{fileName}", IResult (string fileName) => { var filePath = GetOrCreateFilePath(fileName); @@ -363,16 +368,20 @@ app.MapGet("/files/{fileName}", IResult (string fileName) => .RequireAuthorization("AuthenticatedUsers"); ``` -The following code uploads files for authenticated users: +The following code uploads files for authenticated users. + +In `Startup.ConfigureServices`: ```csharp builder.Services.AddAuthorization(o => { o.AddPolicy("AdminsOnly", b => b.RequireRole("admin")); }); +``` -... +In `Startup.Configure`: +```csharp // IFormFile uses memory buffer for uploading. For handling large // files, use streaming instead. See the *File uploads* article // in the ASP.NET Core documentation: @@ -411,29 +420,16 @@ When to serve files from `wwwroot` and to serve files from `ExtraStaticFiles`: -```csharp -app.MapStaticAssets(); +In the request processing pipeline after the existing call to either (.NET 9 or later) or (.NET 8 or earlier): +```csharp app.UseStaticFiles(new StaticFileOptions { FileProvider = new PhysicalFileProvider( @@ -504,11 +500,11 @@ app.UseStaticFiles(new StaticFileOptions :::moniker range=">= aspnetcore-6.0 < aspnetcore-9.0" -The following example calls twice to serve files from both `wwwroot` and `ExtraStaticFiles`: +The following example calls twice to serve files from both `wwwroot` and `ExtraStaticFiles`. -```csharp -app.UseStaticFiles(); +In the request processing pipeline after the existing call to : +```csharp app.UseStaticFiles(new StaticFileOptions { FileProvider = new PhysicalFileProvider( @@ -522,13 +518,17 @@ app.UseStaticFiles(new StaticFileOptions Using the preceding code, the `ExtraStaticFiles/logo.png` file is displayed. However, the [Image Tag Helper](xref:mvc/views/tag-helpers/builtin-th/image-tag-helper) () isn't applied because the Tag Helper depends on , which hasn't been updated to include the `ExtraStaticFiles` folder. -The following code updates the to include the `ExtraStaticFiles` folder by using a . This enables the Image Tag Helper to apply a version to images in the `ExtraStaticFiles` folder: +The following code updates the to include the `ExtraStaticFiles` folder by using a . This enables the Image Tag Helper to apply a version to images in the `ExtraStaticFiles` folder. + +Namespace for the following API: ```csharp using Microsoft.Extensions.FileProviders; +``` -... +In the request processing pipeline before the existing call to (.NET 9 or later) or (.NET 8 or earlier): +```csharp var webRootProvider = new PhysicalFileProvider(builder.Environment.WebRootPath); var newPathProvider = new PhysicalFileProvider( Path.Combine(builder.Environment.ContentRootPath, "ExtraStaticFiles")); @@ -561,18 +561,22 @@ In the following example: :::moniker range=">= aspnetcore-6.0" +Namespaces for the following API: + ```csharp using Microsoft.AspNetCore.StaticFiles; using Microsoft.Extensions.FileProviders; +``` -... +Service registrations: +```csharp builder.Services.AddDirectoryBrowser(); +``` -... - -app.UseStaticFiles(); +In the request processing pipeline after the existing call to either (.NET 9 or later) or (.NET 8 or earlier): +```csharp var fileProvider = new PhysicalFileProvider(Path.Combine(builder.Environment.WebRootPath, "images")); var requestPath = "/DirectoryImages"; @@ -587,28 +591,28 @@ app.UseDirectoryBrowser(new DirectoryBrowserOptions FileProvider = fileProvider, RequestPath = requestPath }); - -... ``` :::moniker-end :::moniker range="< aspnetcore-6.0" -In `Startup.ConfigureServices`: +Namespaces for the following API: ```csharp -services.AddDirectoryBrowser(); +using Microsoft.Extensions.FileProviders; +using System.IO; ``` -In `Startup.Configure`: +In `Startup.ConfigureServices`: ```csharp -using Microsoft.Extensions.FileProviders; -using System.IO; +services.AddDirectoryBrowser(); +``` -... +In `Startup.Configure` after the existing call to : +```csharp app.UseStaticFiles(new StaticFileOptions { FileProvider = new PhysicalFileProvider( @@ -636,76 +640,14 @@ The preceding code allows directory browsing of the `wwwroot/images` folder usin ## Serve default documents -Setting a default page provides visitors a starting point on a site. To serve a default file from `wwwroot` without requiring the request URL to include the file's name, call the method: +Setting a default page provides visitors a starting point on a site. To serve a default file from `wwwroot` without requiring the request URL to include the file's name, call the method. -:::moniker range=">= aspnetcore-6.0" + is a URL rewriter that doesn't serve the file. In the request processing pipeline before the existing call to either (.NET 9 or later) or (.NET 8 or earlier): ```csharp -var builder = WebApplication.CreateBuilder(args); - -builder.Services.AddRazorPages(); -builder.Services.AddControllersWithViews(); - -var app = builder.Build(); - -if (!app.Environment.IsDevelopment()) -{ - app.UseExceptionHandler("/Error"); - app.UseHsts(); -} - -app.UseHttpsRedirection(); - app.UseDefaultFiles(); - -app.UseStaticFiles(); -app.UseAuthorization(); - -app.MapDefaultControllerRoute(); -app.MapRazorPages(); - -app.Run(); ``` -:::moniker-end - - - -:::moniker range="< aspnetcore-6.0" - -```csharp -public void Configure(IApplicationBuilder app, IWebHostEnvironment env) -{ - if (env.IsDevelopment()) - { - app.UseDeveloperExceptionPage(); - } - else - { - app.UseExceptionHandler("/Home/Error"); - app.UseHsts(); - } - - app.UseHttpsRedirection(); - - app.UseDefaultFiles(); - app.UseStaticFiles(); - - app.UseRouting(); - - app.UseAuthorization(); - - app.UseEndpoints(endpoints => - { - endpoints.MapDefaultControllerRoute(); - }); -} -``` - -:::moniker-end - - must be called before to serve the default file. is a URL rewriter that doesn't serve the file. - With , requests to a folder in `wwwroot` search for: * `default.htm` @@ -724,29 +666,31 @@ options.DefaultFileNames.Add("default-document.html"); app.UseDefaultFiles(options); ``` -### UseFileServer for default documents +## Combine static files, default files, and directory browsing combines the functionality of , , and optionally . -Call to enable the serving of static files and the default file. Directory browsing isn't enabled: +In the request processing pipeline after the existing call to either (.NET 9 or later) or (.NET 8 or earlier), call to enable the serving of static files and the default file: ```csharp app.UseFileServer(); ``` -The following code enables the serving of static files, the default file, and directory browsing: +Directory browsing isn't enabled for the preceding example. - +The following code enables the serving of static files, the default file, and directory browsing. :::moniker range=">= aspnetcore-6.0" +Service registrations: + ```csharp builder.Services.AddDirectoryBrowser(); +``` -... +In the request processing pipeline after the existing call to : +```csharp app.UseFileServer(enableDirectoryBrowsing: true); ``` @@ -760,7 +704,7 @@ In `Startup.ConfigureServices`: services.AddDirectoryBrowser(); ``` -In `Startup.Configure`: +In `Startup.Configure` after the existing call to : ```csharp app.UseFileServer(enableDirectoryBrowsing: true); @@ -768,6 +712,8 @@ app.UseFileServer(enableDirectoryBrowsing: true); :::moniker-end +For the host address (`/`), returns the default HTML document before the default Razor Page (`Pages/Index.cshtml`) or default MVC view (`Home/Index.cshtml`). + Consider the following directory hierarchy: * `wwwroot` @@ -779,39 +725,44 @@ Consider the following directory hierarchy: * `logo.png` * `default.html` -The following code enables the serving of static files, the default file, and directory browsing of `ExtraStaticFiles`: - - +The following code enables the serving of static files, the default file, and directory browsing of `ExtraStaticFiles`. :::moniker range=">= aspnetcore-6.0" +Namespaces for the following API: + ```csharp using Microsoft.Extensions.FileProviders; +``` -... +Service registrations: +```csharp builder.Services.AddDirectoryBrowser(); +``` -... - -app.UseStaticFiles(); +In the request processing pipeline after the existing call to : +```csharp app.UseFileServer(new FileServerOptions { FileProvider = new PhysicalFileProvider( - Path.Combine(builder.Environment.ContentRootPath, "MyStaticFiles")), + Path.Combine(builder.Environment.ContentRootPath, "ExtraStaticFiles")), RequestPath = "/StaticFiles", EnableDirectoryBrowsing = true }); - -... ``` :::moniker-end :::moniker range="< aspnetcore-6.0" -[!code-csharp[](~/fundamentals/static-files/samples/3.x/StaticFilesSample/StartupFileServer.cs?name=snippet_ClassMembers&highlight=4,21-31)] +Namespaces for the following API: + +```csharp +using Microsoft.Extensions.FileProviders; +using System.IO; +``` In `Startup.ConfigureServices`: @@ -819,15 +770,9 @@ In `Startup.ConfigureServices`: services.AddDirectoryBrowser(); ``` -In `Startup.Configure`: +In `Startup.Configure` after the existing call to : ```csharp -using Microsoft.Extensions.FileProviders; -using System.IO; - -... -app.UseStaticFiles(); - app.UseFileServer(new FileServerOptions { FileProvider = new PhysicalFileProvider( @@ -835,35 +780,29 @@ app.UseFileServer(new FileServerOptions RequestPath = "/StaticFiles", EnableDirectoryBrowsing = true }); - -... ``` :::moniker-end must be called when the `EnableDirectoryBrowsing` property value is `true`. -Using the preceding file hierarchy and code, URLs resolve as shown in the following table. +Using the preceding file hierarchy and code, URLs resolve as shown in the following table (the `{HOST}` placeholder is the host). -| URI | Response | +| URI | Response file | | --- | --- | -| `https:///StaticFiles/images/logo.png` | `ExtraStaticFiles/images/logo.png` | -| `https:///StaticFiles` | `ExtraStaticFiles/default.html` | +| `https://{HOST}/StaticFiles/images/logo.png` | `ExtraStaticFiles/images/logo.png` | +| `https://{HOST}/StaticFiles` | `ExtraStaticFiles/default.html` | If no default-named file exists in the `ExtraStaticFiles` directory, `https://{HOST}/StaticFiles` returns the directory listing with clickable links, where the `{HOST}` placeholder is the host. and perform a client-side redirect from the target URI without a trailing `/` to the target URI with a trailing `/`. For example, from `https://{HOST}/StaticFiles` (no trailing `/`) to `https://{HOST}/StaticFiles/` (includes a trailing `/`). Relative URLs within the `ExtraStaticFiles` directory are invalid without a trailing slash (`/`) unless the option of is used. -## FileExtensionContentTypeProvider +## Mapping between file extensions and MIME types The class contains a `Mappings` property that serves as a mapping of file extensions to MIME content types. In the following sample, several file extensions are mapped to known MIME types. The `.rtf` extension is replaced, and `.mp4` is removed: - - :::moniker range=">= aspnetcore-6.0" -[!code-csharp[](~/fundamentals/static-files/samples/6.x/StaticFilesSample/Program.cs?name=snippet_fec&highlight=19-33)] - ```csharp using Microsoft.AspNetCore.StaticFiles; using Microsoft.Extensions.FileProviders; @@ -878,7 +817,7 @@ provider.Mappings[".htm3"] = "text/html"; provider.Mappings[".image"] = "image/png"; // Replace an existing mapping provider.Mappings[".rtf"] = "application/x-msdownload"; -// Remove MP4 videos. +// Remove MP4 videos provider.Mappings.Remove(".mp4"); app.UseStaticFiles(new StaticFileOptions @@ -891,8 +830,6 @@ app.UseStaticFiles(new StaticFileOptions :::moniker range="< aspnetcore-6.0" -[!code-csharp[](~/fundamentals/static-files/samples/3.x/StaticFilesSample/StartupFileExtensionContentTypeProvider.cs?name=snippet_Provider)] - In `Startup.Configure`: ```csharp @@ -910,7 +847,7 @@ provider.Mappings[".htm3"] = "text/html"; provider.Mappings[".image"] = "image/png"; // Replace an existing mapping provider.Mappings[".rtf"] = "application/x-msdownload"; -// Remove MP4 videos. +// Remove MP4 videos provider.Mappings.Remove(".mp4"); app.UseStaticFiles(new StaticFileOptions @@ -933,28 +870,44 @@ app.UseDirectoryBrowser(new DirectoryBrowserOptions For more information, see [MIME content types](https://www.iana.org/assignments/media-types/media-types.xhtml). +## Non-standard content types +The Static File Middleware understands almost 400 known file content types. If the user requests a file with an unknown file type, the Static File Middleware passes the request to the next middleware in the pipeline. If no middleware handles the request, a *404 Not Found* response is returned. If directory browsing is enabled, a link to the file is displayed in a directory listing. +The following code enables serving unknown types and renders the unknown file as an image: +```csharp +app.UseStaticFiles(new StaticFileOptions +{ + ServeUnknownFileTypes = true, + DefaultContentType = "image/png" +}); +``` +With the preceding code, a request for a file with an unknown content type is returned as an image. +> [!WARNING] +> Enabling is a security risk. It's disabled by default, and its use is discouraged. [Mapping between file extensions and MIME types](#mapping-between-file-extensions-and-mime-types) provides a safer alternative to serving files with non-standard extensions. +## Security considerations for static files +> [!WARNING] +> and can leak secrets. Disabling directory browsing in production is highly recommended. Carefully review which directories are enabled via or . The entire directory and its sub-directories become publicly accessible. Store files suitable for serving to the public in a dedicated directory, such as `/wwwroot`. Separate these files from MVC views, Razor Pages, configuration files, etc. +* The URLs for content exposed with and are subject to the case sensitivity and character restrictions of the underlying file system. For example, Windows is case insensitive, but macOS and Linux aren't. +* ASP.NET Core apps hosted in IIS use the [ASP.NET Core Module](xref:host-and-deploy/aspnet-core-module) to forward all requests to the app, including static file requests. The IIS static file handler isn't used and has no chance to handle requests. +* Complete the following steps in IIS Manager to remove the IIS static file handler at the server or website level: + 1. Navigate to the **Modules** feature. + 1. Select **StaticFileModule** in the list. + 1. Click **Remove** in the **Actions** sidebar. +> [!WARNING] +> If the IIS static file handler is enabled **and** the ASP.NET Core Module is configured incorrectly, static files are served. This happens, for example, if the `web.config` file isn't deployed. - - - - - - - - - +* Place code files, including `.cs` and `.cshtml`, outside of the app project's [web root](xref:fundamentals/index#web-root). A logical separation is therefore created between the app's client-side content and server-based code. This prevents server-side code from being leaked. ## Additional resources diff --git a/aspnetcore/fundamentals/static-files/includes/static-files5.md b/aspnetcore/fundamentals/static-files/includes/static-files5.md deleted file mode 100644 index 9d57194ed770..000000000000 --- a/aspnetcore/fundamentals/static-files/includes/static-files5.md +++ /dev/null @@ -1,35 +0,0 @@ -## Non-standard content types - -The Static File Middleware understands almost 400 known file content types. If the user requests a file with an unknown file type, the Static File Middleware passes the request to the next middleware in the pipeline. If no middleware handles the request, a *404 Not Found* response is returned. If directory browsing is enabled, a link to the file is displayed in a directory listing. - -The following code enables serving unknown types and renders the unknown file as an image: - -[!code-csharp[](~/fundamentals/static-files/samples/3.x/StaticFilesSample/StartupServeUnknownFileTypes.cs?name=snippet_UseStaticFiles)] - -The following code shows `Startup.Configure` with the preceding code: - -[!code-csharp[](~/fundamentals/static-files/samples/3.x/StaticFilesSample/StartupServeUnknownFileTypes.cs?name=snippet_Configure&highlight=15-19)] - -With the preceding code, a request for a file with an unknown content type is returned as an image. - -> [!WARNING] -> Enabling is a security risk. It's disabled by default, and its use is discouraged. [FileExtensionContentTypeProvider](#fileextensioncontenttypeprovider) provides a safer alternative to serving files with non-standard extensions. - -## Security considerations for static files - -> [!WARNING] -> `UseDirectoryBrowser` and `UseStaticFiles` can leak secrets. Disabling directory browsing in production is highly recommended. Carefully review which directories are enabled via `UseStaticFiles` or `UseDirectoryBrowser`. The entire directory and its sub-directories become publicly accessible. Store files suitable for serving to the public in a dedicated directory, such as `/wwwroot`. Separate these files from MVC views, Razor Pages, configuration files, etc. - -* The URLs for content exposed with `UseDirectoryBrowser` and `UseStaticFiles` are subject to the case sensitivity and character restrictions of the underlying file system. For example, Windows is case insensitive, but macOS and Linux aren't. - -* ASP.NET Core apps hosted in IIS use the [ASP.NET Core Module](xref:host-and-deploy/aspnet-core-module) to forward all requests to the app, including static file requests. The IIS static file handler isn't used and has no chance to handle requests. - -* Complete the following steps in IIS Manager to remove the IIS static file handler at the server or website level: - 1. Navigate to the **Modules** feature. - 1. Select **StaticFileModule** in the list. - 1. Click **Remove** in the **Actions** sidebar. - -> [!WARNING] -> If the IIS static file handler is enabled **and** the ASP.NET Core Module is configured incorrectly, static files are served. This happens, for example, if the *web.config* file isn't deployed. - -* Place code files, including `.cs` and `.cshtml`, outside of the app project's [web root](xref:fundamentals/index#web-root). A logical separation is therefore created between the app's client-side content and server-based code. This prevents server-side code from being leaked. diff --git a/aspnetcore/fundamentals/static-files/includes/static-files6-7.md b/aspnetcore/fundamentals/static-files/includes/static-files6-7.md deleted file mode 100644 index e81f6a5c2157..000000000000 --- a/aspnetcore/fundamentals/static-files/includes/static-files6-7.md +++ /dev/null @@ -1,31 +0,0 @@ -## Non-standard content types - -The Static File Middleware understands almost 400 known file content types. If the user requests a file with an unknown file type, the Static File Middleware passes the request to the next middleware in the pipeline. If no middleware handles the request, a *404 Not Found* response is returned. If directory browsing is enabled, a link to the file is displayed in a directory listing. - -The following code enables serving unknown types and renders the unknown file as an image: - -[!code-csharp[](~/fundamentals/static-files/samples/6.x/StaticFilesSample/Program.cs?name=snippet_ns&highlight=16-20)] - -With the preceding code, a request for a file with an unknown content type is returned as an image. - -> [!WARNING] -> Enabling is a security risk. It's disabled by default, and its use is discouraged. [FileExtensionContentTypeProvider](#fileextensioncontenttypeprovider) provides a safer alternative to serving files with non-standard extensions. - -## Security considerations for static files - -> [!WARNING] -> `UseDirectoryBrowser` and `UseStaticFiles` can leak secrets. Disabling directory browsing in production is highly recommended. Carefully review which directories are enabled via `UseStaticFiles` or `UseDirectoryBrowser`. The entire directory and its sub-directories become publicly accessible. Store files suitable for serving to the public in a dedicated directory, such as `/wwwroot`. Separate these files from MVC views, Razor Pages, configuration files, etc. - -* The URLs for content exposed with `UseDirectoryBrowser` and `UseStaticFiles` are subject to the case sensitivity and character restrictions of the underlying file system. For example, Windows is case insensitive, but macOS and Linux aren't. - -* ASP.NET Core apps hosted in IIS use the [ASP.NET Core Module](xref:host-and-deploy/aspnet-core-module) to forward all requests to the app, including static file requests. The IIS static file handler isn't used and has no chance to handle requests. - -* Complete the following steps in IIS Manager to remove the IIS static file handler at the server or website level: - 1. Navigate to the **Modules** feature. - 1. Select **StaticFileModule** in the list. - 1. Click **Remove** in the **Actions** sidebar. - -> [!WARNING] -> If the IIS static file handler is enabled **and** the ASP.NET Core Module is configured incorrectly, static files are served. This happens, for example, if the *web.config* file isn't deployed. - -* Place code files, including `.cs` and `.cshtml`, outside of the app project's [web root](xref:fundamentals/index#web-root). A logical separation is therefore created between the app's client-side content and server-based code. This prevents server-side code from being leaked. diff --git a/aspnetcore/fundamentals/static-files/includes/static-files8.md b/aspnetcore/fundamentals/static-files/includes/static-files8.md deleted file mode 100644 index e81f6a5c2157..000000000000 --- a/aspnetcore/fundamentals/static-files/includes/static-files8.md +++ /dev/null @@ -1,31 +0,0 @@ -## Non-standard content types - -The Static File Middleware understands almost 400 known file content types. If the user requests a file with an unknown file type, the Static File Middleware passes the request to the next middleware in the pipeline. If no middleware handles the request, a *404 Not Found* response is returned. If directory browsing is enabled, a link to the file is displayed in a directory listing. - -The following code enables serving unknown types and renders the unknown file as an image: - -[!code-csharp[](~/fundamentals/static-files/samples/6.x/StaticFilesSample/Program.cs?name=snippet_ns&highlight=16-20)] - -With the preceding code, a request for a file with an unknown content type is returned as an image. - -> [!WARNING] -> Enabling is a security risk. It's disabled by default, and its use is discouraged. [FileExtensionContentTypeProvider](#fileextensioncontenttypeprovider) provides a safer alternative to serving files with non-standard extensions. - -## Security considerations for static files - -> [!WARNING] -> `UseDirectoryBrowser` and `UseStaticFiles` can leak secrets. Disabling directory browsing in production is highly recommended. Carefully review which directories are enabled via `UseStaticFiles` or `UseDirectoryBrowser`. The entire directory and its sub-directories become publicly accessible. Store files suitable for serving to the public in a dedicated directory, such as `/wwwroot`. Separate these files from MVC views, Razor Pages, configuration files, etc. - -* The URLs for content exposed with `UseDirectoryBrowser` and `UseStaticFiles` are subject to the case sensitivity and character restrictions of the underlying file system. For example, Windows is case insensitive, but macOS and Linux aren't. - -* ASP.NET Core apps hosted in IIS use the [ASP.NET Core Module](xref:host-and-deploy/aspnet-core-module) to forward all requests to the app, including static file requests. The IIS static file handler isn't used and has no chance to handle requests. - -* Complete the following steps in IIS Manager to remove the IIS static file handler at the server or website level: - 1. Navigate to the **Modules** feature. - 1. Select **StaticFileModule** in the list. - 1. Click **Remove** in the **Actions** sidebar. - -> [!WARNING] -> If the IIS static file handler is enabled **and** the ASP.NET Core Module is configured incorrectly, static files are served. This happens, for example, if the *web.config* file isn't deployed. - -* Place code files, including `.cs` and `.cshtml`, outside of the app project's [web root](xref:fundamentals/index#web-root). A logical separation is therefore created between the app's client-side content and server-based code. This prevents server-side code from being leaked. From 40f113410e6709c5301743adba1870db648d30af Mon Sep 17 00:00:00 2001 From: guardrex <1622880+guardrex@users.noreply.github.com> Date: Wed, 20 Aug 2025 09:13:16 -0400 Subject: [PATCH 04/11] Additional MapStaticAssets guidance --- aspnetcore/fundamentals/static-files.md | 43 ++++++++++++++++++++++++- 1 file changed, 42 insertions(+), 1 deletion(-) diff --git a/aspnetcore/fundamentals/static-files.md b/aspnetcore/fundamentals/static-files.md index 408100a279b9..65f38a92fedb 100644 --- a/aspnetcore/fundamentals/static-files.md +++ b/aspnetcore/fundamentals/static-files.md @@ -134,6 +134,47 @@ In Razor Pages and MVC apps, the tilde character `~` points to the web root. In ``` +:::moniker range=">= aspnetcore-9.0" + +## Short-circuit the middleware pipeline + +To avoid running the entire middleware pipeline after a static asset is served, which matches the behavior of , call on . Calling immediately executes the endpoint and returns the response, preventing other middleware from executing for static asset requests: + +```csharp +app.MapStaticAssets().ShortCircuit(); +``` + +## Authorization fallback policy + +Allow anonymous access to static files by applying to the endpoint builder for static files: + +```csharp +app.MapStaticAssets().Add(endpointBuilder => + endpointBuilder.Metadata.Add(new AllowAnonymousAttribute())); +``` + +Configure the authorization fallback policy: + +```csharp +builder.Services.AddAuthorization(options => +{ + options.FallbackPolicy = + new Microsoft.AspNetCore.Authorization.AuthorizationPolicyBuilder() + .RequireAuthenticatedUser() + .Build(); +}); +``` + +With the preceding code, static files are served to anonymous users. + +## Control static file caching + +During development, the framework overrides cache headers to prevent browsers from caching static files. This helps ensure that the latest version of files are used when files change, avoiding issues with stale content. In production, the correct cache headers are set, allowing browsers to cache static assets as expected. + +To disable this behavior, set `EnableStaticAssetsDevelopmentCaching` to `false` in the Development environment's app setting file (`appsettings.Development.json`). + +:::moniker-end + ### Serve files outside of the web root directory Consider the following directory hierarchy with static files residing outside of the app's [web root](xref:fundamentals/index#web-root) in a folder named `ExtraStaticFiles`: @@ -430,7 +471,7 @@ var builder = WebApplication.CreateBuilder(new WebApplicationOptions }); ``` -By default, requests to `/`: +By default, for requests to `/`: * In the development environment, `wwwroot/Index.html` is returned. * In any environment other than development, `wwwroot-custom/Index.html` is returned. From cb6191d476ec6ec5ba78a4ed1139a6674e9d6102 Mon Sep 17 00:00:00 2001 From: guardrex <1622880+guardrex@users.noreply.github.com> Date: Wed, 20 Aug 2025 09:55:15 -0400 Subject: [PATCH 05/11] Updates --- aspnetcore/fundamentals/static-files.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/aspnetcore/fundamentals/static-files.md b/aspnetcore/fundamentals/static-files.md index 65f38a92fedb..973e1e965244 100644 --- a/aspnetcore/fundamentals/static-files.md +++ b/aspnetcore/fundamentals/static-files.md @@ -71,6 +71,14 @@ The following features are supported with method if you want to change the web root. For more information, see . +Prevent publishing files in `wwwroot` with the [`` project item](/visualstudio/msbuild/common-msbuild-project-items#content) in the project file. The following example prevents publishing content in `wwwroot/local` and its sub-directories: + +```xml + + + +``` + :::moniker range=">= aspnetcore-6.0" The method sets the content root to the current directory: From 9371fba5285af707c9d6b4d154004a06afc8235a Mon Sep 17 00:00:00 2001 From: guardrex <1622880+guardrex@users.noreply.github.com> Date: Wed, 20 Aug 2025 10:01:08 -0400 Subject: [PATCH 06/11] Updates --- .../StaticFilesSample/StartupStaticFiles.cs | 21 - .../Areas/Identity/Pages/_ViewStart.cshtml | 3 - .../Data/ApplicationDbContext.cs | 16 - ...000000000_CreateIdentitySchema.Designer.cs | 277 - .../00000000000000_CreateIdentitySchema.cs | 220 - .../ApplicationDbContextModelSnapshot.cs | 275 - .../MyStaticFiles/images/red-rose.jpg | Bin 83953 -> 0 bytes .../3.x/StaticFileAuth/Pages/Error.cshtml | 26 - .../3.x/StaticFileAuth/Pages/Error.cshtml.cs | 31 - .../3.x/StaticFileAuth/Pages/Index.cshtml | 25 - .../3.x/StaticFileAuth/Pages/Index.cshtml.cs | 27 - .../3.x/StaticFileAuth/Pages/Privacy.cshtml | 8 - .../StaticFileAuth/Pages/Privacy.cshtml.cs | 25 - .../Pages/Shared/_Layout.cshtml | 51 - .../Pages/Shared/_LoginPartial.cshtml | 26 - .../Shared/_ValidationScriptsPartial.cshtml | 2 - .../StaticFileAuth/Pages/_ViewImports.cshtml | 5 - .../StaticFileAuth/Pages/_ViewStart.cshtml | 3 - .../samples/3.x/StaticFileAuth/Program.cs | 26 - .../samples/3.x/StaticFileAuth/Startup.cs | 84 - .../3.x/StaticFileAuth/StaticFileAuth.csproj | 20 - .../appsettings.Development.json | 9 - .../3.x/StaticFileAuth/appsettings.json | 13 - .../samples/3.x/StaticFileAuth/img/1.png | Bin 26411 -> 0 bytes .../samples/3.x/StaticFileAuth/img/2.png | Bin 14953 -> 0 bytes .../3.x/StaticFileAuth/wwwroot/css/site.css | 71 - .../3.x/StaticFileAuth/wwwroot/favicon.ico | Bin 32038 -> 0 bytes .../3.x/StaticFileAuth/wwwroot/images/1.png | Bin 26411 -> 0 bytes .../3.x/StaticFileAuth/wwwroot/images/2.png | Bin 14953 -> 0 bytes .../3.x/StaticFileAuth/wwwroot/js/site.js | 4 - .../wwwroot/lib/bootstrap/LICENSE | 22 - .../lib/bootstrap/dist/css/bootstrap-grid.css | 3719 ----- .../bootstrap/dist/css/bootstrap-reboot.css | 331 - .../lib/bootstrap/dist/css/bootstrap.css | 10038 -------------- .../lib/bootstrap/dist/js/bootstrap.bundle.js | 7013 ---------- .../lib/bootstrap/dist/js/bootstrap.js | 4435 ------ .../jquery-validation-unobtrusive/LICENSE.txt | 12 - .../jquery.validate.unobtrusive.js | 432 - .../wwwroot/lib/jquery-validation/LICENSE.md | 22 - .../dist/additional-methods.js | 1158 -- .../jquery-validation/dist/jquery.validate.js | 1601 --- .../wwwroot/lib/jquery/LICENSE.txt | 36 - .../wwwroot/lib/jquery/dist/jquery.js | 10872 --------------- .../Controllers/HomeController.cs | 46 - .../Models/ErrorViewModel.cs | 11 - .../MyStaticFiles/NotDefault.html | 10 - .../MyStaticFiles/image1.png | Bin 5700 -> 0 bytes .../MyStaticFiles/images/red-rose.jpg | Bin 83953 -> 0 bytes .../samples/3.x/StaticFilesSample/Program.cs | 31 - .../samples/3.x/StaticFilesSample/Program2.cs | 24 - .../samples/3.x/StaticFilesSample/Startup.cs | 43 - .../3.x/StaticFilesSample/StartupAddHeader.cs | 53 - .../3.x/StaticFilesSample/StartupBrowse.cs | 60 - .../3.x/StaticFilesSample/StartupDefault.cs | 49 - .../3.x/StaticFilesSample/StartupEmpty.cs | 44 - .../3.x/StaticFilesSample/StartupEmpty2.cs | 43 - .../3.x/StaticFilesSample/StartupEmpty3.cs | 44 - ...StartupFileExtensionContentTypeProvider.cs | 76 - .../StaticFilesSample/StartupFileServer.cs | 56 - .../3.x/StaticFilesSample/StartupRose.cs | 52 - .../StartupServeUnknownFileTypes.cs | 49 - .../StaticFilesSample.csproj | 22 - .../StaticFilesSample/Views/Home/Index.cshtml | 8 - .../Views/Home/Privacy.cshtml | 15 - .../Views/Shared/Error.cshtml | 25 - .../Views/Shared/_Layout.cshtml | 48 - .../Shared/_ValidationScriptsPartial.cshtml | 2 - .../Views/_ViewImports.cshtml | 3 - .../StaticFilesSample/Views/_ViewStart.cshtml | 3 - .../appsettings.Development.json | 9 - .../3.x/StaticFilesSample/appsettings.json | 10 - .../3.x/StaticFilesSample/default.html | 10 - .../samples/3.x/StaticFilesSample/index.html | 10 - .../StaticFilesSample/wwwroot/css/site.css | 71 - .../StaticFilesSample/wwwroot/default.html | 10 - .../3.x/StaticFilesSample/wwwroot/favicon.ico | Bin 32038 -> 0 bytes .../wwwroot/images/MyImage.jpg | Bin 17982 -> 0 bytes .../wwwroot/images/MyImage2.jpg | Bin 35083 -> 0 bytes .../wwwroot/images/image1.png | Bin 5700 -> 0 bytes .../3.x/StaticFilesSample/wwwroot/index.html | 10 - .../3.x/StaticFilesSample/wwwroot/js/site.js | 4 - .../wwwroot/lib/bootstrap/LICENSE | 22 - .../lib/bootstrap/dist/css/bootstrap-grid.css | 3719 ----- .../bootstrap/dist/css/bootstrap-reboot.css | 331 - .../lib/bootstrap/dist/css/bootstrap.css | 10038 -------------- .../lib/bootstrap/dist/js/bootstrap.bundle.js | 7013 ---------- .../lib/bootstrap/dist/js/bootstrap.js | 4435 ------ .../jquery-validation-unobtrusive/LICENSE.txt | 12 - .../jquery.validate.unobtrusive.js | 432 - .../wwwroot/lib/jquery-validation/LICENSE.md | 22 - .../dist/additional-methods.js | 1158 -- .../jquery-validation/dist/jquery.validate.js | 1601 --- .../wwwroot/lib/jquery/LICENSE.txt | 36 - .../wwwroot/lib/jquery/dist/jquery.js | 10364 -------------- .../StaticFilesSample/wwwroot/myIndex.html | 10 - .../StaticFilesSample/wwwroot/mydefault.html | 10 - .../Areas/Identity/Pages/_ViewStart.cshtml | 3 - .../Data/ApplicationDbContext.cs | 13 - ...000000000_CreateIdentitySchema.Designer.cs | 277 - .../00000000000000_CreateIdentitySchema.cs | 220 - .../ApplicationDbContextModelSnapshot.cs | 275 - .../MyStaticFiles/NotDefault.html | 10 - .../StaticFileAuth/MyStaticFiles/image1.png | Bin 5700 -> 0 bytes .../MyStaticFiles/images/red-rose.jpg | Bin 83953 -> 0 bytes .../StaticFileAuth/Pages/BannerImage.cshtml | 6 - .../Pages/BannerImage.cshtml.cs | 25 - .../6.x/StaticFileAuth/Pages/Error.cshtml | 26 - .../6.x/StaticFileAuth/Pages/Error.cshtml.cs | 27 - .../6.x/StaticFileAuth/Pages/Index.cshtml | 10 - .../6.x/StaticFileAuth/Pages/Index.cshtml.cs | 21 - .../6.x/StaticFileAuth/Pages/Privacy.cshtml | 10 - .../StaticFileAuth/Pages/Privacy.cshtml.cs | 19 - .../Pages/Shared/_Layout.cshtml | 55 - .../Pages/Shared/_Layout.cshtml.css | 48 - .../Pages/Shared/_LoginPartial.cshtml | 26 - .../Shared/_ValidationScriptsPartial.cshtml | 2 - .../StaticFileAuth/Pages/_ViewImports.cshtml | 5 - .../StaticFileAuth/Pages/_ViewStart.cshtml | 3 - .../samples/6.x/StaticFileAuth/Program.cs | 139 - .../6.x/StaticFileAuth/StaticFileAuth.csproj | 18 - .../appsettings.Development.json | 9 - .../6.x/StaticFileAuth/appsettings.json | 12 - .../6.x/StaticFileAuth/wwwroot/css/site.css | 18 - .../6.x/StaticFileAuth/wwwroot/favicon.ico | Bin 5430 -> 0 bytes .../6.x/StaticFileAuth/wwwroot/js/site.js | 4 - .../wwwroot/lib/bootstrap/LICENSE | 22 - .../lib/bootstrap/dist/css/bootstrap-grid.css | 4997 ------- .../bootstrap/dist/css/bootstrap-grid.rtl.css | 4996 ------- .../bootstrap/dist/css/bootstrap-reboot.css | 427 - .../dist/css/bootstrap-reboot.rtl.css | 424 - .../dist/css/bootstrap-utilities.css | 4866 ------- .../dist/css/bootstrap-utilities.rtl.css | 4857 ------- .../lib/bootstrap/dist/css/bootstrap.css | 11221 ---------------- .../lib/bootstrap/dist/css/bootstrap.rtl.css | 11197 --------------- .../lib/bootstrap/dist/js/bootstrap.bundle.js | 6780 ---------- .../lib/bootstrap/dist/js/bootstrap.esm.js | 4977 ------- .../lib/bootstrap/dist/js/bootstrap.js | 5026 ------- .../jquery-validation-unobtrusive/LICENSE.txt | 12 - .../jquery.validate.unobtrusive.js | 432 - .../wwwroot/lib/jquery-validation/LICENSE.md | 22 - .../dist/additional-methods.js | 1158 -- .../jquery-validation/dist/jquery.validate.js | 1601 --- .../wwwroot/lib/jquery/LICENSE.txt | 36 - .../wwwroot/lib/jquery/dist/jquery.js | 10872 --------------- .../Controllers/Home2Controller.cs | 46 - .../Models/ErrorViewModel.cs | 9 - .../MyStaticFiles/NotDefault - Copy.html | 10 - .../MyStaticFiles/Test3.html | 10 - .../MyStaticFiles/image1.png | Bin 5700 -> 0 bytes .../MyStaticFiles/image3.png | Bin 6304 -> 0 bytes .../MyStaticFiles/images/MyImage.jpg | Bin 17982 -> 0 bytes .../MyStaticFiles/images/red-rose.jpg | Bin 83953 -> 0 bytes .../6.x/StaticFilesSample/Pages/Error.cshtml | 26 - .../StaticFilesSample/Pages/Error.cshtml.cs | 27 - .../6.x/StaticFilesSample/Pages/Index.cshtml | 10 - .../StaticFilesSample/Pages/Index.cshtml.cs | 20 - .../StaticFilesSample/Pages/Privacy.cshtml | 10 - .../StaticFilesSample/Pages/Privacy.cshtml.cs | 19 - .../Pages/Shared/_Layout.cshtml | 57 - .../Pages/Shared/_Layout.cshtml.css | 48 - .../Shared/_ValidationScriptsPartial.cshtml | 2 - .../6.x/StaticFilesSample/Pages/Test.cshtml | 5 - .../StaticFilesSample/Pages/Test.cshtml.cs | 12 - .../Pages/_ViewImports.cshtml | 3 - .../StaticFilesSample/Pages/_ViewStart.cshtml | 3 - .../samples/6.x/StaticFilesSample/Program.cs | 439 - .../StaticFilesSample.csproj | 28 - .../Views/Home2/Index.cshtml | 8 - .../Views/Home2/MyStaticFilesRR.cshtml | 4 - .../Views/Home2/Privacy.cshtml | 8 - .../Views/Shared/Error.cshtml | 25 - .../Shared/_ValidationScriptsPartial.cshtml | 2 - .../Views/Shared/x_Layout.cshtml | 58 - .../Views/Shared/x_Layout.cshtml.css | 48 - .../Views/_ViewImports.cshtml | 3 - .../StaticFilesSample/Views/_ViewStart.cshtml | 3 - .../appsettings.Development.json | 9 - .../6.x/StaticFilesSample/appsettings.json | 9 - .../StaticFilesSample/wwwroot/css/site.css | 18 - .../StaticFilesSample/wwwroot/default.html | 11 - .../6.x/StaticFilesSample/wwwroot/favicon.ico | Bin 5430 -> 0 bytes .../wwwroot/images/MyImage.jpg | Bin 17982 -> 0 bytes .../wwwroot/images/MyImage2.jpg | Bin 35083 -> 0 bytes .../wwwroot/images/image1.png | Bin 5700 -> 0 bytes .../6.x/StaticFilesSample/wwwroot/index.html | 10 - .../6.x/StaticFilesSample/wwwroot/js/site.js | 4 - .../wwwroot/lib/bootstrap/LICENSE | 22 - .../lib/bootstrap/dist/css/bootstrap-grid.css | 4997 ------- .../bootstrap/dist/css/bootstrap-grid.rtl.css | 4996 ------- .../bootstrap/dist/css/bootstrap-reboot.css | 427 - .../dist/css/bootstrap-reboot.rtl.css | 424 - .../dist/css/bootstrap-utilities.css | 4866 ------- .../dist/css/bootstrap-utilities.rtl.css | 4857 ------- .../lib/bootstrap/dist/css/bootstrap.css | 11221 ---------------- .../lib/bootstrap/dist/css/bootstrap.rtl.css | 11197 --------------- .../lib/bootstrap/dist/js/bootstrap.bundle.js | 6780 ---------- .../lib/bootstrap/dist/js/bootstrap.esm.js | 4977 ------- .../lib/bootstrap/dist/js/bootstrap.js | 5026 ------- .../jquery-validation-unobtrusive/LICENSE.txt | 12 - .../jquery.validate.unobtrusive.js | 432 - .../wwwroot/lib/jquery-validation/LICENSE.md | 22 - .../dist/additional-methods.js | 1158 -- .../jquery-validation/dist/jquery.validate.js | 1601 --- .../wwwroot/lib/jquery/LICENSE.txt | 36 - .../wwwroot/lib/jquery/dist/jquery.js | 10872 --------------- .../wwwroot/mapTest/TextFile.myapp | 1 - .../wwwroot/mapTest/TextFile.rtf | 212 - .../wwwroot/mapTest/TextFile.txt | 1 - .../wwwroot/mapTest/image1.image | Bin 5700 -> 0 bytes .../wwwroot/mapTest/test.htm3 | 10 - .../StaticFilesSample/wwwroot/myIndex.html | 10 - .../StaticFilesSample/wwwroot/mydefault.html | 10 - .../samples/6.x/WebRoot/Program.cs | 42 - .../samples/6.x/WebRoot/WebRoot.csproj | 20 - .../6.x/WebRoot/appsettings.Development.json | 8 - .../samples/6.x/WebRoot/appsettings.json | 9 - .../6.x/WebRoot/wwwroot-custom/Index.html | 9 - .../samples/6.x/WebRoot/wwwroot/Index1.html | 9 - .../JwtAuthenticationOptions.cs | 15 - .../095994c0ed144d90a68a6eda794e545d.png | Bin 4054 -> 0 bytes .../samples/8.x/StaticFileAuth/Program.cs | 158 - .../8.x/StaticFileAuth/StaticFilesAuth.csproj | 20 - .../samples/8.x/StaticFileAuth/Utilities.cs | 40 - .../appsettings.Development.json | 19 - .../8.x/StaticFileAuth/appsettings.json | 19 - .../8.x/StaticFileAuth/wwwroot/index.html | 10 - .../Controllers/Home2Controller.cs | 46 - .../MapStaticManifest.csproj | 28 - .../Models/ErrorViewModel.cs | 9 - .../MyStaticFiles/NotDefault - Copy.html | 10 - .../MyStaticFiles/Test3.html | 10 - .../MyStaticFiles/image1.png | Bin 5700 -> 0 bytes .../MyStaticFiles/image3.png | Bin 6304 -> 0 bytes .../MyStaticFiles/images/MyImage.jpg | Bin 17982 -> 0 bytes .../MyStaticFiles/images/red-rose.jpg | Bin 83953 -> 0 bytes .../Pages/Error.cshtml | 26 - .../Pages/Error.cshtml.cs | 27 - .../Pages/Index.cshtml | 10 - .../Pages/Index.cshtml.cs | 20 - .../Pages/Privacy.cshtml | 14 - .../Pages/Privacy.cshtml.cs | 19 - .../Pages/Shared/_Layout.cshtml | 57 - .../Pages/Shared/_Layout.cshtml.css | 48 - .../Shared/_ValidationScriptsPartial.cshtml | 2 - .../MapStaticAssetsManifest/Pages/Test.cshtml | 5 - .../Pages/Test.cshtml.cs | 12 - .../Pages/_ViewImports.cshtml | 3 - .../Pages/_ViewStart.cshtml | 3 - .../9.x/MapStaticAssetsManifest/Program.cs | 445 - .../Views/Home2/Index.cshtml | 8 - .../Views/Home2/MyStaticFilesRR.cshtml | 4 - .../Views/Home2/Privacy.cshtml | 8 - .../Views/Shared/Error.cshtml | 25 - .../Shared/_ValidationScriptsPartial.cshtml | 2 - .../Views/Shared/x_Layout.cshtml | 58 - .../Views/Shared/x_Layout.cshtml.css | 48 - .../Views/_ViewImports.cshtml | 3 - .../Views/_ViewStart.cshtml | 3 - .../appsettings.Development.json | 10 - .../MapStaticAssetsManifest/appsettings.json | 9 - .../wwwroot/css/site.css | 18 - .../wwwroot/default.html | 11 - .../wwwroot/favicon.ico | Bin 5430 -> 0 bytes .../wwwroot/images/MyImage.jpg | Bin 17982 -> 0 bytes .../wwwroot/images/MyImage2.jpg | Bin 35083 -> 0 bytes .../wwwroot/images/image1.png | Bin 5700 -> 0 bytes .../wwwroot/index.html | 10 - .../wwwroot/js/site.js | 4 - .../wwwroot/lib/bootstrap/LICENSE | 22 - .../lib/bootstrap/dist/css/bootstrap-grid.css | 4997 ------- .../bootstrap/dist/css/bootstrap-grid.rtl.css | 4996 ------- .../bootstrap/dist/css/bootstrap-reboot.css | 427 - .../dist/css/bootstrap-reboot.rtl.css | 424 - .../dist/css/bootstrap-utilities.css | 4866 ------- .../dist/css/bootstrap-utilities.rtl.css | 4857 ------- .../lib/bootstrap/dist/css/bootstrap.css | 11221 ---------------- .../lib/bootstrap/dist/css/bootstrap.rtl.css | 11197 --------------- .../lib/bootstrap/dist/js/bootstrap.bundle.js | 6780 ---------- .../lib/bootstrap/dist/js/bootstrap.esm.js | 4977 ------- .../lib/bootstrap/dist/js/bootstrap.js | 5026 ------- .../jquery-validation-unobtrusive/LICENSE.txt | 12 - .../jquery.validate.unobtrusive.js | 432 - .../wwwroot/lib/jquery-validation/LICENSE.md | 22 - .../dist/additional-methods.js | 1158 -- .../jquery-validation/dist/jquery.validate.js | 1601 --- .../wwwroot/lib/jquery/LICENSE.txt | 36 - .../wwwroot/lib/jquery/dist/jquery.js | 10872 --------------- .../wwwroot/mapTest/TextFile.myapp | 1 - .../wwwroot/mapTest/TextFile.rtf | 212 - .../wwwroot/mapTest/TextFile.txt | 1 - .../wwwroot/mapTest/image1.image | Bin 5700 -> 0 bytes .../wwwroot/mapTest/test.htm3 | 10 - .../wwwroot/myIndex.html | 10 - .../wwwroot/mydefault.html | 10 - .../JwtAuthenticationOptions.cs | 15 - .../095994c0ed144d90a68a6eda794e545d.png | Bin 4054 -> 0 bytes .../samples/9.x/StaticFileAuth/Program.cs | 162 - .../9.x/StaticFileAuth/StaticFilesAuth.csproj | 20 - .../samples/9.x/StaticFileAuth/Utilities.cs | 40 - .../appsettings.Development.json | 19 - .../9.x/StaticFileAuth/appsettings.json | 19 - .../9.x/StaticFileAuth/wwwroot/index.html | 10 - .../Controllers/Home2Controller.cs | 46 - .../Models/ErrorViewModel.cs | 9 - .../MyStaticFiles/NotDefault - Copy.html | 10 - .../MyStaticFiles/Test3.html | 10 - .../MyStaticFiles/defaultFiles/default.html | 11 - .../MyStaticFiles/defaultFiles/image3.png | Bin 6304 -> 0 bytes .../MyStaticFiles/image1.png | Bin 5700 -> 0 bytes .../MyStaticFiles/image3.png | Bin 6304 -> 0 bytes .../MyStaticFiles/images/MyImage.jpg | Bin 17982 -> 0 bytes .../MyStaticFiles/images/red-rose.jpg | Bin 83953 -> 0 bytes .../9.x/StaticFilesSample/Pages/Error.cshtml | 26 - .../StaticFilesSample/Pages/Error.cshtml.cs | 27 - .../9.x/StaticFilesSample/Pages/Index.cshtml | 10 - .../StaticFilesSample/Pages/Index.cshtml.cs | 20 - .../StaticFilesSample/Pages/Privacy.cshtml | 26 - .../StaticFilesSample/Pages/Privacy.cshtml.cs | 19 - .../Pages/Shared/_Layout.cshtml | 57 - .../Pages/Shared/_Layout.cshtml.css | 48 - .../Shared/_ValidationScriptsPartial.cshtml | 2 - .../9.x/StaticFilesSample/Pages/Test.cshtml | 5 - .../StaticFilesSample/Pages/Test.cshtml.cs | 12 - .../Pages/_ViewImports.cshtml | 3 - .../StaticFilesSample/Pages/_ViewStart.cshtml | 3 - .../samples/9.x/StaticFilesSample/Program.cs | 474 - .../StaticFilesSample.csproj | 28 - .../Views/Home2/Index.cshtml | 8 - .../Views/Home2/MyStaticFilesRR.cshtml | 5 - .../Views/Home2/Privacy.cshtml | 8 - .../Views/Shared/Error.cshtml | 25 - .../Shared/_ValidationScriptsPartial.cshtml | 2 - .../Views/Shared/x_Layout.cshtml | 58 - .../Views/Shared/x_Layout.cshtml.css | 48 - .../Views/_ViewImports.cshtml | 3 - .../StaticFilesSample/Views/_ViewStart.cshtml | 3 - .../appsettings.Development.json | 9 - .../9.x/StaticFilesSample/appsettings.json | 9 - .../StaticFilesSample/wwwroot/css/site.css | 18 - .../wwwroot/def/default.html | 11 - .../StaticFilesSample/wwwroot/def/index.html | 10 - .../wwwroot/def/myIndex.html | 10 - .../wwwroot/def/mydefault.html | 10 - .../9.x/StaticFilesSample/wwwroot/favicon.ico | Bin 5430 -> 0 bytes .../wwwroot/images/MyImage.jpg | Bin 17982 -> 0 bytes .../wwwroot/images/MyImage2.jpg | Bin 35083 -> 0 bytes .../wwwroot/images/image1.png | Bin 5700 -> 0 bytes .../9.x/StaticFilesSample/wwwroot/js/site.js | 4 - .../wwwroot/lib/bootstrap/LICENSE | 22 - .../lib/bootstrap/dist/css/bootstrap-grid.css | 4997 ------- .../bootstrap/dist/css/bootstrap-grid.rtl.css | 4996 ------- .../bootstrap/dist/css/bootstrap-reboot.css | 427 - .../dist/css/bootstrap-reboot.rtl.css | 424 - .../dist/css/bootstrap-utilities.css | 4866 ------- .../dist/css/bootstrap-utilities.rtl.css | 4857 ------- .../lib/bootstrap/dist/css/bootstrap.css | 11221 ---------------- .../lib/bootstrap/dist/css/bootstrap.rtl.css | 11197 --------------- .../lib/bootstrap/dist/js/bootstrap.bundle.js | 6780 ---------- .../lib/bootstrap/dist/js/bootstrap.esm.js | 4977 ------- .../lib/bootstrap/dist/js/bootstrap.js | 5026 ------- .../jquery-validation-unobtrusive/LICENSE.txt | 12 - .../jquery.validate.unobtrusive.js | 432 - .../wwwroot/lib/jquery-validation/LICENSE.md | 22 - .../dist/additional-methods.js | 1158 -- .../jquery-validation/dist/jquery.validate.js | 1601 --- .../wwwroot/lib/jquery/LICENSE.txt | 36 - .../wwwroot/lib/jquery/dist/jquery.js | 10872 --------------- .../wwwroot/mapTest/TextFile.myapp | 1 - .../wwwroot/mapTest/TextFile.rtf | 212 - .../wwwroot/mapTest/TextFile.txt | 1 - .../wwwroot/mapTest/image1.image | Bin 5700 -> 0 bytes .../wwwroot/mapTest/test.htm3 | 10 - .../samples/9.x/WebRoot/Program.cs | 42 - .../samples/9.x/WebRoot/WebRoot.csproj | 20 - .../9.x/WebRoot/appsettings.Development.json | 8 - .../samples/9.x/WebRoot/appsettings.json | 9 - .../9.x/WebRoot/wwwroot-custom/Index.html | 9 - .../samples/9.x/WebRoot/wwwroot/Index1.html | 9 - 378 files changed, 382664 deletions(-) delete mode 100644 aspnetcore/fundamentals/static-files/samples/1.x/StaticFilesSample/StartupStaticFiles.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Areas/Identity/Pages/_ViewStart.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Data/ApplicationDbContext.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Data/Migrations/00000000000000_CreateIdentitySchema.Designer.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Data/Migrations/00000000000000_CreateIdentitySchema.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Data/Migrations/ApplicationDbContextModelSnapshot.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/MyStaticFiles/images/red-rose.jpg delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Pages/Error.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Pages/Error.cshtml.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Pages/Index.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Pages/Index.cshtml.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Pages/Privacy.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Pages/Privacy.cshtml.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Pages/Shared/_Layout.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Pages/Shared/_LoginPartial.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Pages/Shared/_ValidationScriptsPartial.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Pages/_ViewImports.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Pages/_ViewStart.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Program.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Startup.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/StaticFileAuth.csproj delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/appsettings.Development.json delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/appsettings.json delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/img/1.png delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/img/2.png delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/wwwroot/css/site.css delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/wwwroot/favicon.ico delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/wwwroot/images/1.png delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/wwwroot/images/2.png delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/wwwroot/js/site.js delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/wwwroot/lib/bootstrap/LICENSE delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/wwwroot/lib/bootstrap/dist/css/bootstrap.css delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/wwwroot/lib/bootstrap/dist/js/bootstrap.js delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/wwwroot/lib/jquery-validation/LICENSE.md delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/wwwroot/lib/jquery-validation/dist/additional-methods.js delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/wwwroot/lib/jquery-validation/dist/jquery.validate.js delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/wwwroot/lib/jquery/LICENSE.txt delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/wwwroot/lib/jquery/dist/jquery.js delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFilesSample/Controllers/HomeController.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFilesSample/Models/ErrorViewModel.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFilesSample/MyStaticFiles/NotDefault.html delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFilesSample/MyStaticFiles/image1.png delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFilesSample/MyStaticFiles/images/red-rose.jpg delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFilesSample/Program.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFilesSample/Program2.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFilesSample/Startup.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFilesSample/StartupAddHeader.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFilesSample/StartupBrowse.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFilesSample/StartupDefault.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFilesSample/StartupEmpty.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFilesSample/StartupEmpty2.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFilesSample/StartupEmpty3.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFilesSample/StartupFileExtensionContentTypeProvider.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFilesSample/StartupFileServer.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFilesSample/StartupRose.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFilesSample/StartupServeUnknownFileTypes.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFilesSample/StaticFilesSample.csproj delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFilesSample/Views/Home/Index.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFilesSample/Views/Home/Privacy.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFilesSample/Views/Shared/Error.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFilesSample/Views/Shared/_Layout.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFilesSample/Views/Shared/_ValidationScriptsPartial.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFilesSample/Views/_ViewImports.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFilesSample/Views/_ViewStart.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFilesSample/appsettings.Development.json delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFilesSample/appsettings.json delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFilesSample/default.html delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFilesSample/index.html delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFilesSample/wwwroot/css/site.css delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFilesSample/wwwroot/default.html delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFilesSample/wwwroot/favicon.ico delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFilesSample/wwwroot/images/MyImage.jpg delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFilesSample/wwwroot/images/MyImage2.jpg delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFilesSample/wwwroot/images/image1.png delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFilesSample/wwwroot/index.html delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFilesSample/wwwroot/js/site.js delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFilesSample/wwwroot/lib/bootstrap/LICENSE delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFilesSample/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFilesSample/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFilesSample/wwwroot/lib/bootstrap/dist/css/bootstrap.css delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFilesSample/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFilesSample/wwwroot/lib/bootstrap/dist/js/bootstrap.js delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFilesSample/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFilesSample/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFilesSample/wwwroot/lib/jquery-validation/LICENSE.md delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFilesSample/wwwroot/lib/jquery-validation/dist/additional-methods.js delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFilesSample/wwwroot/lib/jquery-validation/dist/jquery.validate.js delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFilesSample/wwwroot/lib/jquery/LICENSE.txt delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFilesSample/wwwroot/lib/jquery/dist/jquery.js delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFilesSample/wwwroot/myIndex.html delete mode 100644 aspnetcore/fundamentals/static-files/samples/3.x/StaticFilesSample/wwwroot/mydefault.html delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFileAuth/Areas/Identity/Pages/_ViewStart.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFileAuth/Data/ApplicationDbContext.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFileAuth/Data/Migrations/00000000000000_CreateIdentitySchema.Designer.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFileAuth/Data/Migrations/00000000000000_CreateIdentitySchema.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFileAuth/Data/Migrations/ApplicationDbContextModelSnapshot.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFileAuth/MyStaticFiles/NotDefault.html delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFileAuth/MyStaticFiles/image1.png delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFileAuth/MyStaticFiles/images/red-rose.jpg delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFileAuth/Pages/BannerImage.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFileAuth/Pages/BannerImage.cshtml.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFileAuth/Pages/Error.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFileAuth/Pages/Error.cshtml.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFileAuth/Pages/Index.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFileAuth/Pages/Index.cshtml.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFileAuth/Pages/Privacy.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFileAuth/Pages/Privacy.cshtml.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFileAuth/Pages/Shared/_Layout.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFileAuth/Pages/Shared/_Layout.cshtml.css delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFileAuth/Pages/Shared/_LoginPartial.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFileAuth/Pages/Shared/_ValidationScriptsPartial.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFileAuth/Pages/_ViewImports.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFileAuth/Pages/_ViewStart.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFileAuth/Program.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFileAuth/StaticFileAuth.csproj delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFileAuth/appsettings.Development.json delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFileAuth/appsettings.json delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFileAuth/wwwroot/css/site.css delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFileAuth/wwwroot/favicon.ico delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFileAuth/wwwroot/js/site.js delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFileAuth/wwwroot/lib/bootstrap/LICENSE delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFileAuth/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFileAuth/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFileAuth/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFileAuth/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFileAuth/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFileAuth/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFileAuth/wwwroot/lib/bootstrap/dist/css/bootstrap.css delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFileAuth/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFileAuth/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFileAuth/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFileAuth/wwwroot/lib/bootstrap/dist/js/bootstrap.js delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFileAuth/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFileAuth/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFileAuth/wwwroot/lib/jquery-validation/LICENSE.md delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFileAuth/wwwroot/lib/jquery-validation/dist/additional-methods.js delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFileAuth/wwwroot/lib/jquery-validation/dist/jquery.validate.js delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFileAuth/wwwroot/lib/jquery/LICENSE.txt delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFileAuth/wwwroot/lib/jquery/dist/jquery.js delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/Controllers/Home2Controller.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/Models/ErrorViewModel.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/MyStaticFiles/NotDefault - Copy.html delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/MyStaticFiles/Test3.html delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/MyStaticFiles/image1.png delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/MyStaticFiles/image3.png delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/MyStaticFiles/images/MyImage.jpg delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/MyStaticFiles/images/red-rose.jpg delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/Pages/Error.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/Pages/Error.cshtml.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/Pages/Index.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/Pages/Index.cshtml.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/Pages/Privacy.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/Pages/Privacy.cshtml.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/Pages/Shared/_Layout.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/Pages/Shared/_Layout.cshtml.css delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/Pages/Shared/_ValidationScriptsPartial.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/Pages/Test.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/Pages/Test.cshtml.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/Pages/_ViewImports.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/Pages/_ViewStart.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/Program.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/StaticFilesSample.csproj delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/Views/Home2/Index.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/Views/Home2/MyStaticFilesRR.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/Views/Home2/Privacy.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/Views/Shared/Error.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/Views/Shared/_ValidationScriptsPartial.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/Views/Shared/x_Layout.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/Views/Shared/x_Layout.cshtml.css delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/Views/_ViewImports.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/Views/_ViewStart.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/appsettings.Development.json delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/appsettings.json delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/wwwroot/css/site.css delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/wwwroot/default.html delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/wwwroot/favicon.ico delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/wwwroot/images/MyImage.jpg delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/wwwroot/images/MyImage2.jpg delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/wwwroot/images/image1.png delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/wwwroot/index.html delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/wwwroot/js/site.js delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/wwwroot/lib/bootstrap/LICENSE delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/wwwroot/lib/bootstrap/dist/css/bootstrap.css delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/wwwroot/lib/bootstrap/dist/js/bootstrap.js delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/wwwroot/lib/jquery-validation/LICENSE.md delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/wwwroot/lib/jquery-validation/dist/additional-methods.js delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/wwwroot/lib/jquery-validation/dist/jquery.validate.js delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/wwwroot/lib/jquery/LICENSE.txt delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/wwwroot/lib/jquery/dist/jquery.js delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/wwwroot/mapTest/TextFile.myapp delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/wwwroot/mapTest/TextFile.rtf delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/wwwroot/mapTest/TextFile.txt delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/wwwroot/mapTest/image1.image delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/wwwroot/mapTest/test.htm3 delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/wwwroot/myIndex.html delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/StaticFilesSample/wwwroot/mydefault.html delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/WebRoot/Program.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/WebRoot/WebRoot.csproj delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/WebRoot/appsettings.Development.json delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/WebRoot/appsettings.json delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/WebRoot/wwwroot-custom/Index.html delete mode 100644 aspnetcore/fundamentals/static-files/samples/6.x/WebRoot/wwwroot/Index1.html delete mode 100644 aspnetcore/fundamentals/static-files/samples/8.x/StaticFileAuth/JwtAuthenticationOptions.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/8.x/StaticFileAuth/PrivateFiles/095994c0ed144d90a68a6eda794e545d.png delete mode 100644 aspnetcore/fundamentals/static-files/samples/8.x/StaticFileAuth/Program.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/8.x/StaticFileAuth/StaticFilesAuth.csproj delete mode 100644 aspnetcore/fundamentals/static-files/samples/8.x/StaticFileAuth/Utilities.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/8.x/StaticFileAuth/appsettings.Development.json delete mode 100644 aspnetcore/fundamentals/static-files/samples/8.x/StaticFileAuth/appsettings.json delete mode 100644 aspnetcore/fundamentals/static-files/samples/8.x/StaticFileAuth/wwwroot/index.html delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/Controllers/Home2Controller.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/MapStaticManifest.csproj delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/Models/ErrorViewModel.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/MyStaticFiles/NotDefault - Copy.html delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/MyStaticFiles/Test3.html delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/MyStaticFiles/image1.png delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/MyStaticFiles/image3.png delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/MyStaticFiles/images/MyImage.jpg delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/MyStaticFiles/images/red-rose.jpg delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/Pages/Error.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/Pages/Error.cshtml.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/Pages/Index.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/Pages/Index.cshtml.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/Pages/Privacy.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/Pages/Privacy.cshtml.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/Pages/Shared/_Layout.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/Pages/Shared/_Layout.cshtml.css delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/Pages/Shared/_ValidationScriptsPartial.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/Pages/Test.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/Pages/Test.cshtml.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/Pages/_ViewImports.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/Pages/_ViewStart.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/Program.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/Views/Home2/Index.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/Views/Home2/MyStaticFilesRR.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/Views/Home2/Privacy.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/Views/Shared/Error.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/Views/Shared/_ValidationScriptsPartial.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/Views/Shared/x_Layout.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/Views/Shared/x_Layout.cshtml.css delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/Views/_ViewImports.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/Views/_ViewStart.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/appsettings.Development.json delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/appsettings.json delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/wwwroot/css/site.css delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/wwwroot/default.html delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/wwwroot/favicon.ico delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/wwwroot/images/MyImage.jpg delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/wwwroot/images/MyImage2.jpg delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/wwwroot/images/image1.png delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/wwwroot/index.html delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/wwwroot/js/site.js delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/wwwroot/lib/bootstrap/LICENSE delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/wwwroot/lib/bootstrap/dist/css/bootstrap.css delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/wwwroot/lib/bootstrap/dist/js/bootstrap.js delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/wwwroot/lib/jquery-validation/LICENSE.md delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/wwwroot/lib/jquery-validation/dist/additional-methods.js delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/wwwroot/lib/jquery-validation/dist/jquery.validate.js delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/wwwroot/lib/jquery/LICENSE.txt delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/wwwroot/lib/jquery/dist/jquery.js delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/wwwroot/mapTest/TextFile.myapp delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/wwwroot/mapTest/TextFile.rtf delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/wwwroot/mapTest/TextFile.txt delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/wwwroot/mapTest/image1.image delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/wwwroot/mapTest/test.htm3 delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/wwwroot/myIndex.html delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/MapStaticAssetsManifest/wwwroot/mydefault.html delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFileAuth/JwtAuthenticationOptions.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFileAuth/PrivateFiles/095994c0ed144d90a68a6eda794e545d.png delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFileAuth/Program.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFileAuth/StaticFilesAuth.csproj delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFileAuth/Utilities.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFileAuth/appsettings.Development.json delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFileAuth/appsettings.json delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFileAuth/wwwroot/index.html delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/Controllers/Home2Controller.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/Models/ErrorViewModel.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/MyStaticFiles/NotDefault - Copy.html delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/MyStaticFiles/Test3.html delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/MyStaticFiles/defaultFiles/default.html delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/MyStaticFiles/defaultFiles/image3.png delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/MyStaticFiles/image1.png delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/MyStaticFiles/image3.png delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/MyStaticFiles/images/MyImage.jpg delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/MyStaticFiles/images/red-rose.jpg delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/Pages/Error.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/Pages/Error.cshtml.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/Pages/Index.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/Pages/Index.cshtml.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/Pages/Privacy.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/Pages/Privacy.cshtml.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/Pages/Shared/_Layout.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/Pages/Shared/_Layout.cshtml.css delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/Pages/Shared/_ValidationScriptsPartial.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/Pages/Test.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/Pages/Test.cshtml.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/Pages/_ViewImports.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/Pages/_ViewStart.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/Program.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/StaticFilesSample.csproj delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/Views/Home2/Index.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/Views/Home2/MyStaticFilesRR.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/Views/Home2/Privacy.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/Views/Shared/Error.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/Views/Shared/_ValidationScriptsPartial.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/Views/Shared/x_Layout.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/Views/Shared/x_Layout.cshtml.css delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/Views/_ViewImports.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/Views/_ViewStart.cshtml delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/appsettings.Development.json delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/appsettings.json delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/wwwroot/css/site.css delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/wwwroot/def/default.html delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/wwwroot/def/index.html delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/wwwroot/def/myIndex.html delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/wwwroot/def/mydefault.html delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/wwwroot/favicon.ico delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/wwwroot/images/MyImage.jpg delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/wwwroot/images/MyImage2.jpg delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/wwwroot/images/image1.png delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/wwwroot/js/site.js delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/wwwroot/lib/bootstrap/LICENSE delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/wwwroot/lib/bootstrap/dist/css/bootstrap.css delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/wwwroot/lib/bootstrap/dist/js/bootstrap.js delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/wwwroot/lib/jquery-validation/LICENSE.md delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/wwwroot/lib/jquery-validation/dist/additional-methods.js delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/wwwroot/lib/jquery-validation/dist/jquery.validate.js delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/wwwroot/lib/jquery/LICENSE.txt delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/wwwroot/lib/jquery/dist/jquery.js delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/wwwroot/mapTest/TextFile.myapp delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/wwwroot/mapTest/TextFile.rtf delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/wwwroot/mapTest/TextFile.txt delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/wwwroot/mapTest/image1.image delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/StaticFilesSample/wwwroot/mapTest/test.htm3 delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/WebRoot/Program.cs delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/WebRoot/WebRoot.csproj delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/WebRoot/appsettings.Development.json delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/WebRoot/appsettings.json delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/WebRoot/wwwroot-custom/Index.html delete mode 100644 aspnetcore/fundamentals/static-files/samples/9.x/WebRoot/wwwroot/Index1.html diff --git a/aspnetcore/fundamentals/static-files/samples/1.x/StaticFilesSample/StartupStaticFiles.cs b/aspnetcore/fundamentals/static-files/samples/1.x/StaticFilesSample/StartupStaticFiles.cs deleted file mode 100644 index 3b15892aaabe..000000000000 --- a/aspnetcore/fundamentals/static-files/samples/1.x/StaticFilesSample/StartupStaticFiles.cs +++ /dev/null @@ -1,21 +0,0 @@ -using Microsoft.AspNetCore.Builder; -using Microsoft.Extensions.DependencyInjection; - -namespace StaticFiles -{ - public class StartupStaticFiles - { - // This method gets called by the runtime. Use this method to add services to the container. - public void ConfigureServices(IServiceCollection services) - { - } - - // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. - #region snippet_ConfigureMethod - public void Configure(IApplicationBuilder app) - { - app.UseStaticFiles(); - } - #endregion - } -} diff --git a/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Areas/Identity/Pages/_ViewStart.cshtml b/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Areas/Identity/Pages/_ViewStart.cshtml deleted file mode 100644 index 7bd9b6bb876b..000000000000 --- a/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Areas/Identity/Pages/_ViewStart.cshtml +++ /dev/null @@ -1,3 +0,0 @@ -@{ - Layout = "/Pages/Shared/_Layout.cshtml"; -} diff --git a/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Data/ApplicationDbContext.cs b/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Data/ApplicationDbContext.cs deleted file mode 100644 index 73cb6aecd67c..000000000000 --- a/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Data/ApplicationDbContext.cs +++ /dev/null @@ -1,16 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Text; -using Microsoft.AspNetCore.Identity.EntityFrameworkCore; -using Microsoft.EntityFrameworkCore; - -namespace StaticFileAuth.Data -{ - public class ApplicationDbContext : IdentityDbContext - { - public ApplicationDbContext(DbContextOptions options) - : base(options) - { - } - } -} diff --git a/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Data/Migrations/00000000000000_CreateIdentitySchema.Designer.cs b/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Data/Migrations/00000000000000_CreateIdentitySchema.Designer.cs deleted file mode 100644 index 2b1d226e7c3e..000000000000 --- a/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Data/Migrations/00000000000000_CreateIdentitySchema.Designer.cs +++ /dev/null @@ -1,277 +0,0 @@ -// -using System; -using StaticFileAuth.Data; -using Microsoft.EntityFrameworkCore; -using Microsoft.EntityFrameworkCore.Infrastructure; -using Microsoft.EntityFrameworkCore.Metadata; -using Microsoft.EntityFrameworkCore.Migrations; -using Microsoft.EntityFrameworkCore.Storage.ValueConversion; - -namespace StaticFileAuth.Data.Migrations -{ - [DbContext(typeof(ApplicationDbContext))] - [Migration("00000000000000_CreateIdentitySchema")] - partial class CreateIdentitySchema - { - protected override void BuildTargetModel(ModelBuilder modelBuilder) - { -#pragma warning disable 612, 618 - modelBuilder - .HasAnnotation("ProductVersion", "3.0.0") - .HasAnnotation("Relational:MaxIdentifierLength", 128) - .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); - - modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRole", b => - { - b.Property("Id") - .HasColumnType("nvarchar(450)"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasColumnType("nvarchar(max)"); - - b.Property("Name") - .HasColumnType("nvarchar(256)") - .HasMaxLength(256); - - b.Property("NormalizedName") - .HasColumnType("nvarchar(256)") - .HasMaxLength(256); - - b.HasKey("Id"); - - b.HasIndex("NormalizedName") - .IsUnique() - .HasName("RoleNameIndex") - .HasFilter("[NormalizedName] IS NOT NULL"); - - b.ToTable("AspNetRoles"); - }); - - modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("int") - .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); - - b.Property("ClaimType") - .HasColumnType("nvarchar(max)"); - - b.Property("ClaimValue") - .HasColumnType("nvarchar(max)"); - - b.Property("RoleId") - .IsRequired() - .HasColumnType("nvarchar(450)"); - - b.HasKey("Id"); - - b.HasIndex("RoleId"); - - b.ToTable("AspNetRoleClaims"); - }); - - modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUser", b => - { - b.Property("Id") - .HasColumnType("nvarchar(450)"); - - b.Property("AccessFailedCount") - .HasColumnType("int"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasColumnType("nvarchar(max)"); - - b.Property("Email") - .HasColumnType("nvarchar(256)") - .HasMaxLength(256); - - b.Property("EmailConfirmed") - .HasColumnType("bit"); - - b.Property("LockoutEnabled") - .HasColumnType("bit"); - - b.Property("LockoutEnd") - .HasColumnType("datetimeoffset"); - - b.Property("NormalizedEmail") - .HasColumnType("nvarchar(256)") - .HasMaxLength(256); - - b.Property("NormalizedUserName") - .HasColumnType("nvarchar(256)") - .HasMaxLength(256); - - b.Property("PasswordHash") - .HasColumnType("nvarchar(max)"); - - b.Property("PhoneNumber") - .HasColumnType("nvarchar(max)"); - - b.Property("PhoneNumberConfirmed") - .HasColumnType("bit"); - - b.Property("SecurityStamp") - .HasColumnType("nvarchar(max)"); - - b.Property("TwoFactorEnabled") - .HasColumnType("bit"); - - b.Property("UserName") - .HasColumnType("nvarchar(256)") - .HasMaxLength(256); - - b.HasKey("Id"); - - b.HasIndex("NormalizedEmail") - .HasName("EmailIndex"); - - b.HasIndex("NormalizedUserName") - .IsUnique() - .HasName("UserNameIndex") - .HasFilter("[NormalizedUserName] IS NOT NULL"); - - b.ToTable("AspNetUsers"); - }); - - modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("int") - .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); - - b.Property("ClaimType") - .HasColumnType("nvarchar(max)"); - - b.Property("ClaimValue") - .HasColumnType("nvarchar(max)"); - - b.Property("UserId") - .IsRequired() - .HasColumnType("nvarchar(450)"); - - b.HasKey("Id"); - - b.HasIndex("UserId"); - - b.ToTable("AspNetUserClaims"); - }); - - modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin", b => - { - b.Property("LoginProvider") - .HasColumnType("nvarchar(128)") - .HasMaxLength(128); - - b.Property("ProviderKey") - .HasColumnType("nvarchar(128)") - .HasMaxLength(128); - - b.Property("ProviderDisplayName") - .HasColumnType("nvarchar(max)"); - - b.Property("UserId") - .IsRequired() - .HasColumnType("nvarchar(450)"); - - b.HasKey("LoginProvider", "ProviderKey"); - - b.HasIndex("UserId"); - - b.ToTable("AspNetUserLogins"); - }); - - modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole", b => - { - b.Property("UserId") - .HasColumnType("nvarchar(450)"); - - b.Property("RoleId") - .HasColumnType("nvarchar(450)"); - - b.HasKey("UserId", "RoleId"); - - b.HasIndex("RoleId"); - - b.ToTable("AspNetUserRoles"); - }); - - modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken", b => - { - b.Property("UserId") - .HasColumnType("nvarchar(450)"); - - b.Property("LoginProvider") - .HasColumnType("nvarchar(128)") - .HasMaxLength(128); - - b.Property("Name") - .HasColumnType("nvarchar(128)") - .HasMaxLength(128); - - b.Property("Value") - .HasColumnType("nvarchar(max)"); - - b.HasKey("UserId", "LoginProvider", "Name"); - - b.ToTable("AspNetUserTokens"); - }); - - modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim", b => - { - b.HasOne("Microsoft.AspNetCore.Identity.IdentityRole", null) - .WithMany() - .HasForeignKey("RoleId") - .OnDelete(DeleteBehavior.Cascade) - .IsRequired(); - }); - - modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim", b => - { - b.HasOne("Microsoft.AspNetCore.Identity.IdentityUser", null) - .WithMany() - .HasForeignKey("UserId") - .OnDelete(DeleteBehavior.Cascade) - .IsRequired(); - }); - - modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin", b => - { - b.HasOne("Microsoft.AspNetCore.Identity.IdentityUser", null) - .WithMany() - .HasForeignKey("UserId") - .OnDelete(DeleteBehavior.Cascade) - .IsRequired(); - }); - - modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole", b => - { - b.HasOne("Microsoft.AspNetCore.Identity.IdentityRole", null) - .WithMany() - .HasForeignKey("RoleId") - .OnDelete(DeleteBehavior.Cascade) - .IsRequired(); - - b.HasOne("Microsoft.AspNetCore.Identity.IdentityUser", null) - .WithMany() - .HasForeignKey("UserId") - .OnDelete(DeleteBehavior.Cascade) - .IsRequired(); - }); - - modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken", b => - { - b.HasOne("Microsoft.AspNetCore.Identity.IdentityUser", null) - .WithMany() - .HasForeignKey("UserId") - .OnDelete(DeleteBehavior.Cascade) - .IsRequired(); - }); -#pragma warning restore 612, 618 - } - } -} diff --git a/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Data/Migrations/00000000000000_CreateIdentitySchema.cs b/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Data/Migrations/00000000000000_CreateIdentitySchema.cs deleted file mode 100644 index 8873d980f1b2..000000000000 --- a/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Data/Migrations/00000000000000_CreateIdentitySchema.cs +++ /dev/null @@ -1,220 +0,0 @@ -using System; -using Microsoft.EntityFrameworkCore.Metadata; -using Microsoft.EntityFrameworkCore.Migrations; - -namespace StaticFileAuth.Data.Migrations -{ - public partial class CreateIdentitySchema : Migration - { - protected override void Up(MigrationBuilder migrationBuilder) - { - migrationBuilder.CreateTable( - name: "AspNetRoles", - columns: table => new - { - Id = table.Column(nullable: false), - Name = table.Column(maxLength: 256, nullable: true), - NormalizedName = table.Column(maxLength: 256, nullable: true), - ConcurrencyStamp = table.Column(nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_AspNetRoles", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "AspNetUsers", - columns: table => new - { - Id = table.Column(nullable: false), - UserName = table.Column(maxLength: 256, nullable: true), - NormalizedUserName = table.Column(maxLength: 256, nullable: true), - Email = table.Column(maxLength: 256, nullable: true), - NormalizedEmail = table.Column(maxLength: 256, nullable: true), - EmailConfirmed = table.Column(nullable: false), - PasswordHash = table.Column(nullable: true), - SecurityStamp = table.Column(nullable: true), - ConcurrencyStamp = table.Column(nullable: true), - PhoneNumber = table.Column(nullable: true), - PhoneNumberConfirmed = table.Column(nullable: false), - TwoFactorEnabled = table.Column(nullable: false), - LockoutEnd = table.Column(nullable: true), - LockoutEnabled = table.Column(nullable: false), - AccessFailedCount = table.Column(nullable: false) - }, - constraints: table => - { - table.PrimaryKey("PK_AspNetUsers", x => x.Id); - }); - - migrationBuilder.CreateTable( - name: "AspNetRoleClaims", - columns: table => new - { - Id = table.Column(nullable: false) - .Annotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn), - RoleId = table.Column(nullable: false), - ClaimType = table.Column(nullable: true), - ClaimValue = table.Column(nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_AspNetRoleClaims", x => x.Id); - table.ForeignKey( - name: "FK_AspNetRoleClaims_AspNetRoles_RoleId", - column: x => x.RoleId, - principalTable: "AspNetRoles", - principalColumn: "Id", - onDelete: ReferentialAction.Cascade); - }); - - migrationBuilder.CreateTable( - name: "AspNetUserClaims", - columns: table => new - { - Id = table.Column(nullable: false) - .Annotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn), - UserId = table.Column(nullable: false), - ClaimType = table.Column(nullable: true), - ClaimValue = table.Column(nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_AspNetUserClaims", x => x.Id); - table.ForeignKey( - name: "FK_AspNetUserClaims_AspNetUsers_UserId", - column: x => x.UserId, - principalTable: "AspNetUsers", - principalColumn: "Id", - onDelete: ReferentialAction.Cascade); - }); - - migrationBuilder.CreateTable( - name: "AspNetUserLogins", - columns: table => new - { - LoginProvider = table.Column(maxLength: 128, nullable: false), - ProviderKey = table.Column(maxLength: 128, nullable: false), - ProviderDisplayName = table.Column(nullable: true), - UserId = table.Column(nullable: false) - }, - constraints: table => - { - table.PrimaryKey("PK_AspNetUserLogins", x => new { x.LoginProvider, x.ProviderKey }); - table.ForeignKey( - name: "FK_AspNetUserLogins_AspNetUsers_UserId", - column: x => x.UserId, - principalTable: "AspNetUsers", - principalColumn: "Id", - onDelete: ReferentialAction.Cascade); - }); - - migrationBuilder.CreateTable( - name: "AspNetUserRoles", - columns: table => new - { - UserId = table.Column(nullable: false), - RoleId = table.Column(nullable: false) - }, - constraints: table => - { - table.PrimaryKey("PK_AspNetUserRoles", x => new { x.UserId, x.RoleId }); - table.ForeignKey( - name: "FK_AspNetUserRoles_AspNetRoles_RoleId", - column: x => x.RoleId, - principalTable: "AspNetRoles", - principalColumn: "Id", - onDelete: ReferentialAction.Cascade); - table.ForeignKey( - name: "FK_AspNetUserRoles_AspNetUsers_UserId", - column: x => x.UserId, - principalTable: "AspNetUsers", - principalColumn: "Id", - onDelete: ReferentialAction.Cascade); - }); - - migrationBuilder.CreateTable( - name: "AspNetUserTokens", - columns: table => new - { - UserId = table.Column(nullable: false), - LoginProvider = table.Column(maxLength: 128, nullable: false), - Name = table.Column(maxLength: 128, nullable: false), - Value = table.Column(nullable: true) - }, - constraints: table => - { - table.PrimaryKey("PK_AspNetUserTokens", x => new { x.UserId, x.LoginProvider, x.Name }); - table.ForeignKey( - name: "FK_AspNetUserTokens_AspNetUsers_UserId", - column: x => x.UserId, - principalTable: "AspNetUsers", - principalColumn: "Id", - onDelete: ReferentialAction.Cascade); - }); - - migrationBuilder.CreateIndex( - name: "IX_AspNetRoleClaims_RoleId", - table: "AspNetRoleClaims", - column: "RoleId"); - - migrationBuilder.CreateIndex( - name: "RoleNameIndex", - table: "AspNetRoles", - column: "NormalizedName", - unique: true, - filter: "[NormalizedName] IS NOT NULL"); - - migrationBuilder.CreateIndex( - name: "IX_AspNetUserClaims_UserId", - table: "AspNetUserClaims", - column: "UserId"); - - migrationBuilder.CreateIndex( - name: "IX_AspNetUserLogins_UserId", - table: "AspNetUserLogins", - column: "UserId"); - - migrationBuilder.CreateIndex( - name: "IX_AspNetUserRoles_RoleId", - table: "AspNetUserRoles", - column: "RoleId"); - - migrationBuilder.CreateIndex( - name: "EmailIndex", - table: "AspNetUsers", - column: "NormalizedEmail"); - - migrationBuilder.CreateIndex( - name: "UserNameIndex", - table: "AspNetUsers", - column: "NormalizedUserName", - unique: true, - filter: "[NormalizedUserName] IS NOT NULL"); - } - - protected override void Down(MigrationBuilder migrationBuilder) - { - migrationBuilder.DropTable( - name: "AspNetRoleClaims"); - - migrationBuilder.DropTable( - name: "AspNetUserClaims"); - - migrationBuilder.DropTable( - name: "AspNetUserLogins"); - - migrationBuilder.DropTable( - name: "AspNetUserRoles"); - - migrationBuilder.DropTable( - name: "AspNetUserTokens"); - - migrationBuilder.DropTable( - name: "AspNetRoles"); - - migrationBuilder.DropTable( - name: "AspNetUsers"); - } - } -} diff --git a/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Data/Migrations/ApplicationDbContextModelSnapshot.cs b/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Data/Migrations/ApplicationDbContextModelSnapshot.cs deleted file mode 100644 index 278bea744fcf..000000000000 --- a/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Data/Migrations/ApplicationDbContextModelSnapshot.cs +++ /dev/null @@ -1,275 +0,0 @@ -// -using System; -using StaticFileAuth.Data; -using Microsoft.EntityFrameworkCore; -using Microsoft.EntityFrameworkCore.Infrastructure; -using Microsoft.EntityFrameworkCore.Metadata; -using Microsoft.EntityFrameworkCore.Storage.ValueConversion; - -namespace StaticFileAuth.Data.Migrations -{ - [DbContext(typeof(ApplicationDbContext))] - partial class ApplicationDbContextModelSnapshot : ModelSnapshot - { - protected override void BuildModel(ModelBuilder modelBuilder) - { -#pragma warning disable 612, 618 - modelBuilder - .HasAnnotation("ProductVersion", "3.0.0") - .HasAnnotation("Relational:MaxIdentifierLength", 128) - .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); - - modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRole", b => - { - b.Property("Id") - .HasColumnType("nvarchar(450)"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasColumnType("nvarchar(max)"); - - b.Property("Name") - .HasColumnType("nvarchar(256)") - .HasMaxLength(256); - - b.Property("NormalizedName") - .HasColumnType("nvarchar(256)") - .HasMaxLength(256); - - b.HasKey("Id"); - - b.HasIndex("NormalizedName") - .IsUnique() - .HasName("RoleNameIndex") - .HasFilter("[NormalizedName] IS NOT NULL"); - - b.ToTable("AspNetRoles"); - }); - - modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("int") - .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); - - b.Property("ClaimType") - .HasColumnType("nvarchar(max)"); - - b.Property("ClaimValue") - .HasColumnType("nvarchar(max)"); - - b.Property("RoleId") - .IsRequired() - .HasColumnType("nvarchar(450)"); - - b.HasKey("Id"); - - b.HasIndex("RoleId"); - - b.ToTable("AspNetRoleClaims"); - }); - - modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUser", b => - { - b.Property("Id") - .HasColumnType("nvarchar(450)"); - - b.Property("AccessFailedCount") - .HasColumnType("int"); - - b.Property("ConcurrencyStamp") - .IsConcurrencyToken() - .HasColumnType("nvarchar(max)"); - - b.Property("Email") - .HasColumnType("nvarchar(256)") - .HasMaxLength(256); - - b.Property("EmailConfirmed") - .HasColumnType("bit"); - - b.Property("LockoutEnabled") - .HasColumnType("bit"); - - b.Property("LockoutEnd") - .HasColumnType("datetimeoffset"); - - b.Property("NormalizedEmail") - .HasColumnType("nvarchar(256)") - .HasMaxLength(256); - - b.Property("NormalizedUserName") - .HasColumnType("nvarchar(256)") - .HasMaxLength(256); - - b.Property("PasswordHash") - .HasColumnType("nvarchar(max)"); - - b.Property("PhoneNumber") - .HasColumnType("nvarchar(max)"); - - b.Property("PhoneNumberConfirmed") - .HasColumnType("bit"); - - b.Property("SecurityStamp") - .HasColumnType("nvarchar(max)"); - - b.Property("TwoFactorEnabled") - .HasColumnType("bit"); - - b.Property("UserName") - .HasColumnType("nvarchar(256)") - .HasMaxLength(256); - - b.HasKey("Id"); - - b.HasIndex("NormalizedEmail") - .HasName("EmailIndex"); - - b.HasIndex("NormalizedUserName") - .IsUnique() - .HasName("UserNameIndex") - .HasFilter("[NormalizedUserName] IS NOT NULL"); - - b.ToTable("AspNetUsers"); - }); - - modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("int") - .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); - - b.Property("ClaimType") - .HasColumnType("nvarchar(max)"); - - b.Property("ClaimValue") - .HasColumnType("nvarchar(max)"); - - b.Property("UserId") - .IsRequired() - .HasColumnType("nvarchar(450)"); - - b.HasKey("Id"); - - b.HasIndex("UserId"); - - b.ToTable("AspNetUserClaims"); - }); - - modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin", b => - { - b.Property("LoginProvider") - .HasColumnType("nvarchar(128)") - .HasMaxLength(128); - - b.Property("ProviderKey") - .HasColumnType("nvarchar(128)") - .HasMaxLength(128); - - b.Property("ProviderDisplayName") - .HasColumnType("nvarchar(max)"); - - b.Property("UserId") - .IsRequired() - .HasColumnType("nvarchar(450)"); - - b.HasKey("LoginProvider", "ProviderKey"); - - b.HasIndex("UserId"); - - b.ToTable("AspNetUserLogins"); - }); - - modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole", b => - { - b.Property("UserId") - .HasColumnType("nvarchar(450)"); - - b.Property("RoleId") - .HasColumnType("nvarchar(450)"); - - b.HasKey("UserId", "RoleId"); - - b.HasIndex("RoleId"); - - b.ToTable("AspNetUserRoles"); - }); - - modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken", b => - { - b.Property("UserId") - .HasColumnType("nvarchar(450)"); - - b.Property("LoginProvider") - .HasColumnType("nvarchar(128)") - .HasMaxLength(128); - - b.Property("Name") - .HasColumnType("nvarchar(128)") - .HasMaxLength(128); - - b.Property("Value") - .HasColumnType("nvarchar(max)"); - - b.HasKey("UserId", "LoginProvider", "Name"); - - b.ToTable("AspNetUserTokens"); - }); - - modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim", b => - { - b.HasOne("Microsoft.AspNetCore.Identity.IdentityRole", null) - .WithMany() - .HasForeignKey("RoleId") - .OnDelete(DeleteBehavior.Cascade) - .IsRequired(); - }); - - modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim", b => - { - b.HasOne("Microsoft.AspNetCore.Identity.IdentityUser", null) - .WithMany() - .HasForeignKey("UserId") - .OnDelete(DeleteBehavior.Cascade) - .IsRequired(); - }); - - modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin", b => - { - b.HasOne("Microsoft.AspNetCore.Identity.IdentityUser", null) - .WithMany() - .HasForeignKey("UserId") - .OnDelete(DeleteBehavior.Cascade) - .IsRequired(); - }); - - modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole", b => - { - b.HasOne("Microsoft.AspNetCore.Identity.IdentityRole", null) - .WithMany() - .HasForeignKey("RoleId") - .OnDelete(DeleteBehavior.Cascade) - .IsRequired(); - - b.HasOne("Microsoft.AspNetCore.Identity.IdentityUser", null) - .WithMany() - .HasForeignKey("UserId") - .OnDelete(DeleteBehavior.Cascade) - .IsRequired(); - }); - - modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken", b => - { - b.HasOne("Microsoft.AspNetCore.Identity.IdentityUser", null) - .WithMany() - .HasForeignKey("UserId") - .OnDelete(DeleteBehavior.Cascade) - .IsRequired(); - }); -#pragma warning restore 612, 618 - } - } -} diff --git a/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/MyStaticFiles/images/red-rose.jpg b/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/MyStaticFiles/images/red-rose.jpg deleted file mode 100644 index be9a6f44c6557caf3ecfdc23c12c7737a66935e1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 83953 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 z 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. -

An error occurred while processing your request.

- -@if (Model.ShowRequestId) -{ -

- Request ID: @Model.RequestId -

-} - -

Development Mode

-

- Swapping to the Development environment displays detailed information about the error that occurred. -

-

- The Development environment shouldn't be enabled for deployed applications. - It can result in displaying sensitive information from exceptions to end users. - For local debugging, enable the Development environment by setting the ASPNETCORE_ENVIRONMENT environment variable to Development - and restarting the app. -

diff --git a/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Pages/Error.cshtml.cs b/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Pages/Error.cshtml.cs deleted file mode 100644 index b43916377081..000000000000 --- a/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Pages/Error.cshtml.cs +++ /dev/null @@ -1,31 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Diagnostics; -using System.Linq; -using System.Threading.Tasks; -using Microsoft.AspNetCore.Mvc; -using Microsoft.AspNetCore.Mvc.RazorPages; -using Microsoft.Extensions.Logging; - -namespace StaticFileAuth.Pages -{ - [ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)] - public class ErrorModel : PageModel - { - public string RequestId { get; set; } - - public bool ShowRequestId => !string.IsNullOrEmpty(RequestId); - - private readonly ILogger _logger; - - public ErrorModel(ILogger logger) - { - _logger = logger; - } - - public void OnGet() - { - RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier; - } - } -} diff --git a/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Pages/Index.cshtml b/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Pages/Index.cshtml deleted file mode 100644 index aa78f39548c8..000000000000 --- a/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Pages/Index.cshtml +++ /dev/null @@ -1,25 +0,0 @@ -@page -@model IndexModel -@{ - ViewData["Title"] = "Home page"; -} - -
- - diff --git a/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Pages/Index.cshtml.cs b/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Pages/Index.cshtml.cs deleted file mode 100644 index 194d047875f2..000000000000 --- a/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Pages/Index.cshtml.cs +++ /dev/null @@ -1,27 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; -using Microsoft.AspNetCore.Authorization; -using Microsoft.AspNetCore.Mvc; -using Microsoft.AspNetCore.Mvc.RazorPages; -using Microsoft.Extensions.Logging; - -namespace StaticFileAuth.Pages -{ - [AllowAnonymous] - public class IndexModel : PageModel - { - private readonly ILogger _logger; - - public IndexModel(ILogger logger) - { - _logger = logger; - } - - public void OnGet() - { - - } - } -} diff --git a/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Pages/Privacy.cshtml b/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Pages/Privacy.cshtml deleted file mode 100644 index 46ba96612ec3..000000000000 --- a/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Pages/Privacy.cshtml +++ /dev/null @@ -1,8 +0,0 @@ -@page -@model PrivacyModel -@{ - ViewData["Title"] = "Privacy Policy"; -} -

@ViewData["Title"]

- -

Use this page to detail your site's privacy policy.

diff --git a/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Pages/Privacy.cshtml.cs b/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Pages/Privacy.cshtml.cs deleted file mode 100644 index 81177279427d..000000000000 --- a/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Pages/Privacy.cshtml.cs +++ /dev/null @@ -1,25 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; -using Microsoft.AspNetCore.Authorization; -using Microsoft.AspNetCore.Mvc; -using Microsoft.AspNetCore.Mvc.RazorPages; -using Microsoft.Extensions.Logging; - -namespace StaticFileAuth.Pages -{ - public class PrivacyModel : PageModel - { - private readonly ILogger _logger; - - public PrivacyModel(ILogger logger) - { - _logger = logger; - } - - public void OnGet() - { - } - } -} diff --git a/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Pages/Shared/_Layout.cshtml b/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Pages/Shared/_Layout.cshtml deleted file mode 100644 index a02f339ad3cb..000000000000 --- a/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Pages/Shared/_Layout.cshtml +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - @ViewData["Title"] - StaticFileAuth - - - - -
- -
-
-
- @RenderBody() -
-
- -
-
- © 2020 - StaticFileAuth - Privacy -
-
- - - - - - @RenderSection("Scripts", required: false) - - diff --git a/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Pages/Shared/_LoginPartial.cshtml b/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Pages/Shared/_LoginPartial.cshtml deleted file mode 100644 index c45b365fd466..000000000000 --- a/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Pages/Shared/_LoginPartial.cshtml +++ /dev/null @@ -1,26 +0,0 @@ -@using Microsoft.AspNetCore.Identity -@inject SignInManager SignInManager -@inject UserManager UserManager - - diff --git a/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Pages/Shared/_ValidationScriptsPartial.cshtml b/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Pages/Shared/_ValidationScriptsPartial.cshtml deleted file mode 100644 index 21638b60442a..000000000000 --- a/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Pages/Shared/_ValidationScriptsPartial.cshtml +++ /dev/null @@ -1,2 +0,0 @@ - - diff --git a/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Pages/_ViewImports.cshtml b/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Pages/_ViewImports.cshtml deleted file mode 100644 index 3e9c989c7dc6..000000000000 --- a/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Pages/_ViewImports.cshtml +++ /dev/null @@ -1,5 +0,0 @@ -@using Microsoft.AspNetCore.Identity -@using StaticFileAuth -@using StaticFileAuth.Data -@namespace StaticFileAuth.Pages -@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers diff --git a/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Pages/_ViewStart.cshtml b/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Pages/_ViewStart.cshtml deleted file mode 100644 index a5f10045db97..000000000000 --- a/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Pages/_ViewStart.cshtml +++ /dev/null @@ -1,3 +0,0 @@ -@{ - Layout = "_Layout"; -} diff --git a/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Program.cs b/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Program.cs deleted file mode 100644 index f7a81daf2646..000000000000 --- a/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Program.cs +++ /dev/null @@ -1,26 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; -using Microsoft.AspNetCore.Hosting; -using Microsoft.Extensions.Configuration; -using Microsoft.Extensions.Hosting; -using Microsoft.Extensions.Logging; - -namespace StaticFileAuth -{ - public class Program - { - public static void Main(string[] args) - { - CreateHostBuilder(args).Build().Run(); - } - - public static IHostBuilder CreateHostBuilder(string[] args) => - Host.CreateDefaultBuilder(args) - .ConfigureWebHostDefaults(webBuilder => - { - webBuilder.UseStartup(); - }); - } -} diff --git a/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Startup.cs b/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Startup.cs deleted file mode 100644 index 68a550fbce99..000000000000 --- a/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/Startup.cs +++ /dev/null @@ -1,84 +0,0 @@ -using Microsoft.AspNetCore.Authorization; -using Microsoft.AspNetCore.Builder; -using Microsoft.AspNetCore.Hosting; -using Microsoft.AspNetCore.Identity; -using Microsoft.EntityFrameworkCore; -using Microsoft.Extensions.Configuration; -using Microsoft.Extensions.DependencyInjection; -using Microsoft.Extensions.FileProviders; -using Microsoft.Extensions.Hosting; -using StaticFileAuth.Data; -using System.IO; - -namespace StaticFileAuth -{ - #region snippet1 - public class Startup - { - public Startup(IConfiguration configuration) - { - Configuration = configuration; - } - - public IConfiguration Configuration { get; } - - public void ConfigureServices(IServiceCollection services) - { - services.AddDbContext(options => - options.UseSqlServer( - Configuration.GetConnectionString("DefaultConnection"))); - services.AddDefaultIdentity(options => options.SignIn.RequireConfirmedAccount = true) - .AddEntityFrameworkStores(); - - services.AddRazorPages(); - - services.AddAuthorization(options => - { - options.FallbackPolicy = new AuthorizationPolicyBuilder() - .RequireAuthenticatedUser() - .Build(); - }); - } - - // Remaining code ommitted for brevity. - #endregion - - #region snippet2 - public void Configure(IApplicationBuilder app, IWebHostEnvironment env) - { - if (env.IsDevelopment()) - { - app.UseDeveloperExceptionPage(); - app.UseDatabaseErrorPage(); - } - else - { - app.UseExceptionHandler("/Error"); - app.UseHsts(); - } - - app.UseHttpsRedirection(); - - // wwwroot css, JavaScript, and images don't require authentication. - app.UseStaticFiles(); - - app.UseRouting(); - - app.UseAuthentication(); - app.UseAuthorization(); - - app.UseStaticFiles(new StaticFileOptions - { - FileProvider = new PhysicalFileProvider( - Path.Combine(env.ContentRootPath, "MyStaticFiles")), - RequestPath = "/StaticFiles" - }); - - app.UseEndpoints(endpoints => - { - endpoints.MapRazorPages(); - }); - } - #endregion - } -} diff --git a/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/StaticFileAuth.csproj b/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/StaticFileAuth.csproj deleted file mode 100644 index fd26150e1c8e..000000000000 --- a/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/StaticFileAuth.csproj +++ /dev/null @@ -1,20 +0,0 @@ - - - - netcoreapp3.1 - aspnet-StaticFileAuth-E3398DE0-98EB-4C7E-8932-986B05D53428 - - - - - - - - - - - - - - - diff --git a/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/appsettings.Development.json b/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/appsettings.Development.json deleted file mode 100644 index 8983e0fc1c5e..000000000000 --- a/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/appsettings.Development.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "Logging": { - "LogLevel": { - "Default": "Information", - "Microsoft": "Warning", - "Microsoft.Hosting.Lifetime": "Information" - } - } -} diff --git a/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/appsettings.json b/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/appsettings.json deleted file mode 100644 index 37ec8d035555..000000000000 --- a/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/appsettings.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "ConnectionStrings": { - "DefaultConnection": "Server=(localdb)\\mssqllocaldb;Database=aspnet-StaticFileAuth-53bc9b9d-9d6a-45d4-8429-2a2761773502;Trusted_Connection=True;MultipleActiveResultSets=true" - }, - "Logging": { - "LogLevel": { - "Default": "Information", - "Microsoft": "Warning", - "Microsoft.Hosting.Lifetime": "Information" - } - }, - "AllowedHosts": "*" -} diff --git a/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/img/1.png b/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/img/1.png deleted file mode 100644 index 3322f51fe7e9a0a2609c0fd02c2b9840c311b99b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 26411 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

-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 diff --git a/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/img/2.png b/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/img/2.png deleted file mode 100644 index 7d22fedd0ff2119495074139a5b62122780170b4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 14953 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 .nav-link { - color: #fff; - background-color: #1b6ec2; - border-color: #1861ac; -} - -/* Sticky footer styles --------------------------------------------------- */ -html { - font-size: 14px; -} -@media (min-width: 768px) { - html { - font-size: 16px; - } -} - -.border-top { - border-top: 1px solid #e5e5e5; -} -.border-bottom { - border-bottom: 1px solid #e5e5e5; -} - -.box-shadow { - box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05); -} - -button.accept-policy { - font-size: 1rem; - line-height: inherit; -} - -/* Sticky footer styles --------------------------------------------------- */ -html { - position: relative; - min-height: 100%; -} - -body { - /* Margin bottom by footer height */ - margin-bottom: 60px; -} -.footer { - position: absolute; - bottom: 0; - width: 100%; - white-space: nowrap; - line-height: 60px; /* Vertically center the text there */ -} diff --git a/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/wwwroot/favicon.ico b/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/wwwroot/favicon.ico deleted file mode 100644 index a3a799985c43bc7309d701b2cad129023377dc71..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 32038 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

-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 diff --git a/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/wwwroot/images/2.png b/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/wwwroot/images/2.png deleted file mode 100644 index 7d22fedd0ff2119495074139a5b62122780170b4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 14953 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 .col, -.no-gutters > [class*="col-"] { - padding-right: 0; - padding-left: 0; -} - -.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, -.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, -.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, -.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, -.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, -.col-xl-auto { - position: relative; - width: 100%; - padding-right: 15px; - padding-left: 15px; -} - -.col { - -ms-flex-preferred-size: 0; - flex-basis: 0; - -ms-flex-positive: 1; - flex-grow: 1; - max-width: 100%; -} - -.col-auto { - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: auto; - max-width: 100%; -} - -.col-1 { - -ms-flex: 0 0 8.333333%; - flex: 0 0 8.333333%; - max-width: 8.333333%; -} - -.col-2 { - -ms-flex: 0 0 16.666667%; - flex: 0 0 16.666667%; - max-width: 16.666667%; -} - -.col-3 { - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25%; -} - -.col-4 { - -ms-flex: 0 0 33.333333%; - flex: 0 0 33.333333%; - max-width: 33.333333%; -} - -.col-5 { - -ms-flex: 0 0 41.666667%; - flex: 0 0 41.666667%; - max-width: 41.666667%; -} - -.col-6 { - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50%; -} - -.col-7 { - -ms-flex: 0 0 58.333333%; - flex: 0 0 58.333333%; - max-width: 58.333333%; -} - -.col-8 { - -ms-flex: 0 0 66.666667%; - flex: 0 0 66.666667%; - max-width: 66.666667%; -} - -.col-9 { - -ms-flex: 0 0 75%; - flex: 0 0 75%; - max-width: 75%; -} - -.col-10 { - -ms-flex: 0 0 83.333333%; - flex: 0 0 83.333333%; - max-width: 83.333333%; -} - -.col-11 { - -ms-flex: 0 0 91.666667%; - flex: 0 0 91.666667%; - max-width: 91.666667%; -} - -.col-12 { - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100%; -} - -.order-first { - -ms-flex-order: -1; - order: -1; -} - -.order-last { - -ms-flex-order: 13; - order: 13; -} - -.order-0 { - -ms-flex-order: 0; - order: 0; -} - -.order-1 { - -ms-flex-order: 1; - order: 1; -} - -.order-2 { - -ms-flex-order: 2; - order: 2; -} - -.order-3 { - -ms-flex-order: 3; - order: 3; -} - -.order-4 { - -ms-flex-order: 4; - order: 4; -} - -.order-5 { - -ms-flex-order: 5; - order: 5; -} - -.order-6 { - -ms-flex-order: 6; - order: 6; -} - -.order-7 { - -ms-flex-order: 7; - order: 7; -} - -.order-8 { - -ms-flex-order: 8; - order: 8; -} - -.order-9 { - -ms-flex-order: 9; - order: 9; -} - -.order-10 { - -ms-flex-order: 10; - order: 10; -} - -.order-11 { - -ms-flex-order: 11; - order: 11; -} - -.order-12 { - -ms-flex-order: 12; - order: 12; -} - -.offset-1 { - margin-left: 8.333333%; -} - -.offset-2 { - margin-left: 16.666667%; -} - -.offset-3 { - margin-left: 25%; -} - -.offset-4 { - margin-left: 33.333333%; -} - -.offset-5 { - margin-left: 41.666667%; -} - -.offset-6 { - margin-left: 50%; -} - -.offset-7 { - margin-left: 58.333333%; -} - -.offset-8 { - margin-left: 66.666667%; -} - -.offset-9 { - margin-left: 75%; -} - -.offset-10 { - margin-left: 83.333333%; -} - -.offset-11 { - margin-left: 91.666667%; -} - -@media (min-width: 576px) { - .col-sm { - -ms-flex-preferred-size: 0; - flex-basis: 0; - -ms-flex-positive: 1; - flex-grow: 1; - max-width: 100%; - } - .col-sm-auto { - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: auto; - max-width: 100%; - } - .col-sm-1 { - -ms-flex: 0 0 8.333333%; - flex: 0 0 8.333333%; - max-width: 8.333333%; - } - .col-sm-2 { - -ms-flex: 0 0 16.666667%; - flex: 0 0 16.666667%; - max-width: 16.666667%; - } - .col-sm-3 { - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25%; - } - .col-sm-4 { - -ms-flex: 0 0 33.333333%; - flex: 0 0 33.333333%; - max-width: 33.333333%; - } - .col-sm-5 { - -ms-flex: 0 0 41.666667%; - flex: 0 0 41.666667%; - max-width: 41.666667%; - } - .col-sm-6 { - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50%; - } - .col-sm-7 { - -ms-flex: 0 0 58.333333%; - flex: 0 0 58.333333%; - max-width: 58.333333%; - } - .col-sm-8 { - -ms-flex: 0 0 66.666667%; - flex: 0 0 66.666667%; - max-width: 66.666667%; - } - .col-sm-9 { - -ms-flex: 0 0 75%; - flex: 0 0 75%; - max-width: 75%; - } - .col-sm-10 { - -ms-flex: 0 0 83.333333%; - flex: 0 0 83.333333%; - max-width: 83.333333%; - } - .col-sm-11 { - -ms-flex: 0 0 91.666667%; - flex: 0 0 91.666667%; - max-width: 91.666667%; - } - .col-sm-12 { - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100%; - } - .order-sm-first { - -ms-flex-order: -1; - order: -1; - } - .order-sm-last { - -ms-flex-order: 13; - order: 13; - } - .order-sm-0 { - -ms-flex-order: 0; - order: 0; - } - .order-sm-1 { - -ms-flex-order: 1; - order: 1; - } - .order-sm-2 { - -ms-flex-order: 2; - order: 2; - } - .order-sm-3 { - -ms-flex-order: 3; - order: 3; - } - .order-sm-4 { - -ms-flex-order: 4; - order: 4; - } - .order-sm-5 { - -ms-flex-order: 5; - order: 5; - } - .order-sm-6 { - -ms-flex-order: 6; - order: 6; - } - .order-sm-7 { - -ms-flex-order: 7; - order: 7; - } - .order-sm-8 { - -ms-flex-order: 8; - order: 8; - } - .order-sm-9 { - -ms-flex-order: 9; - order: 9; - } - .order-sm-10 { - -ms-flex-order: 10; - order: 10; - } - .order-sm-11 { - -ms-flex-order: 11; - order: 11; - } - .order-sm-12 { - -ms-flex-order: 12; - order: 12; - } - .offset-sm-0 { - margin-left: 0; - } - .offset-sm-1 { - margin-left: 8.333333%; - } - .offset-sm-2 { - margin-left: 16.666667%; - } - .offset-sm-3 { - margin-left: 25%; - } - .offset-sm-4 { - margin-left: 33.333333%; - } - .offset-sm-5 { - margin-left: 41.666667%; - } - .offset-sm-6 { - margin-left: 50%; - } - .offset-sm-7 { - margin-left: 58.333333%; - } - .offset-sm-8 { - margin-left: 66.666667%; - } - .offset-sm-9 { - margin-left: 75%; - } - .offset-sm-10 { - margin-left: 83.333333%; - } - .offset-sm-11 { - margin-left: 91.666667%; - } -} - -@media (min-width: 768px) { - .col-md { - -ms-flex-preferred-size: 0; - flex-basis: 0; - -ms-flex-positive: 1; - flex-grow: 1; - max-width: 100%; - } - .col-md-auto { - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: auto; - max-width: 100%; - } - .col-md-1 { - -ms-flex: 0 0 8.333333%; - flex: 0 0 8.333333%; - max-width: 8.333333%; - } - .col-md-2 { - -ms-flex: 0 0 16.666667%; - flex: 0 0 16.666667%; - max-width: 16.666667%; - } - .col-md-3 { - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25%; - } - .col-md-4 { - -ms-flex: 0 0 33.333333%; - flex: 0 0 33.333333%; - max-width: 33.333333%; - } - .col-md-5 { - -ms-flex: 0 0 41.666667%; - flex: 0 0 41.666667%; - max-width: 41.666667%; - } - .col-md-6 { - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50%; - } - .col-md-7 { - -ms-flex: 0 0 58.333333%; - flex: 0 0 58.333333%; - max-width: 58.333333%; - } - .col-md-8 { - -ms-flex: 0 0 66.666667%; - flex: 0 0 66.666667%; - max-width: 66.666667%; - } - .col-md-9 { - -ms-flex: 0 0 75%; - flex: 0 0 75%; - max-width: 75%; - } - .col-md-10 { - -ms-flex: 0 0 83.333333%; - flex: 0 0 83.333333%; - max-width: 83.333333%; - } - .col-md-11 { - -ms-flex: 0 0 91.666667%; - flex: 0 0 91.666667%; - max-width: 91.666667%; - } - .col-md-12 { - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100%; - } - .order-md-first { - -ms-flex-order: -1; - order: -1; - } - .order-md-last { - -ms-flex-order: 13; - order: 13; - } - .order-md-0 { - -ms-flex-order: 0; - order: 0; - } - .order-md-1 { - -ms-flex-order: 1; - order: 1; - } - .order-md-2 { - -ms-flex-order: 2; - order: 2; - } - .order-md-3 { - -ms-flex-order: 3; - order: 3; - } - .order-md-4 { - -ms-flex-order: 4; - order: 4; - } - .order-md-5 { - -ms-flex-order: 5; - order: 5; - } - .order-md-6 { - -ms-flex-order: 6; - order: 6; - } - .order-md-7 { - -ms-flex-order: 7; - order: 7; - } - .order-md-8 { - -ms-flex-order: 8; - order: 8; - } - .order-md-9 { - -ms-flex-order: 9; - order: 9; - } - .order-md-10 { - -ms-flex-order: 10; - order: 10; - } - .order-md-11 { - -ms-flex-order: 11; - order: 11; - } - .order-md-12 { - -ms-flex-order: 12; - order: 12; - } - .offset-md-0 { - margin-left: 0; - } - .offset-md-1 { - margin-left: 8.333333%; - } - .offset-md-2 { - margin-left: 16.666667%; - } - .offset-md-3 { - margin-left: 25%; - } - .offset-md-4 { - margin-left: 33.333333%; - } - .offset-md-5 { - margin-left: 41.666667%; - } - .offset-md-6 { - margin-left: 50%; - } - .offset-md-7 { - margin-left: 58.333333%; - } - .offset-md-8 { - margin-left: 66.666667%; - } - .offset-md-9 { - margin-left: 75%; - } - .offset-md-10 { - margin-left: 83.333333%; - } - .offset-md-11 { - margin-left: 91.666667%; - } -} - -@media (min-width: 992px) { - .col-lg { - -ms-flex-preferred-size: 0; - flex-basis: 0; - -ms-flex-positive: 1; - flex-grow: 1; - max-width: 100%; - } - .col-lg-auto { - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: auto; - max-width: 100%; - } - .col-lg-1 { - -ms-flex: 0 0 8.333333%; - flex: 0 0 8.333333%; - max-width: 8.333333%; - } - .col-lg-2 { - -ms-flex: 0 0 16.666667%; - flex: 0 0 16.666667%; - max-width: 16.666667%; - } - .col-lg-3 { - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25%; - } - .col-lg-4 { - -ms-flex: 0 0 33.333333%; - flex: 0 0 33.333333%; - max-width: 33.333333%; - } - .col-lg-5 { - -ms-flex: 0 0 41.666667%; - flex: 0 0 41.666667%; - max-width: 41.666667%; - } - .col-lg-6 { - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50%; - } - .col-lg-7 { - -ms-flex: 0 0 58.333333%; - flex: 0 0 58.333333%; - max-width: 58.333333%; - } - .col-lg-8 { - -ms-flex: 0 0 66.666667%; - flex: 0 0 66.666667%; - max-width: 66.666667%; - } - .col-lg-9 { - -ms-flex: 0 0 75%; - flex: 0 0 75%; - max-width: 75%; - } - .col-lg-10 { - -ms-flex: 0 0 83.333333%; - flex: 0 0 83.333333%; - max-width: 83.333333%; - } - .col-lg-11 { - -ms-flex: 0 0 91.666667%; - flex: 0 0 91.666667%; - max-width: 91.666667%; - } - .col-lg-12 { - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100%; - } - .order-lg-first { - -ms-flex-order: -1; - order: -1; - } - .order-lg-last { - -ms-flex-order: 13; - order: 13; - } - .order-lg-0 { - -ms-flex-order: 0; - order: 0; - } - .order-lg-1 { - -ms-flex-order: 1; - order: 1; - } - .order-lg-2 { - -ms-flex-order: 2; - order: 2; - } - .order-lg-3 { - -ms-flex-order: 3; - order: 3; - } - .order-lg-4 { - -ms-flex-order: 4; - order: 4; - } - .order-lg-5 { - -ms-flex-order: 5; - order: 5; - } - .order-lg-6 { - -ms-flex-order: 6; - order: 6; - } - .order-lg-7 { - -ms-flex-order: 7; - order: 7; - } - .order-lg-8 { - -ms-flex-order: 8; - order: 8; - } - .order-lg-9 { - -ms-flex-order: 9; - order: 9; - } - .order-lg-10 { - -ms-flex-order: 10; - order: 10; - } - .order-lg-11 { - -ms-flex-order: 11; - order: 11; - } - .order-lg-12 { - -ms-flex-order: 12; - order: 12; - } - .offset-lg-0 { - margin-left: 0; - } - .offset-lg-1 { - margin-left: 8.333333%; - } - .offset-lg-2 { - margin-left: 16.666667%; - } - .offset-lg-3 { - margin-left: 25%; - } - .offset-lg-4 { - margin-left: 33.333333%; - } - .offset-lg-5 { - margin-left: 41.666667%; - } - .offset-lg-6 { - margin-left: 50%; - } - .offset-lg-7 { - margin-left: 58.333333%; - } - .offset-lg-8 { - margin-left: 66.666667%; - } - .offset-lg-9 { - margin-left: 75%; - } - .offset-lg-10 { - margin-left: 83.333333%; - } - .offset-lg-11 { - margin-left: 91.666667%; - } -} - -@media (min-width: 1200px) { - .col-xl { - -ms-flex-preferred-size: 0; - flex-basis: 0; - -ms-flex-positive: 1; - flex-grow: 1; - max-width: 100%; - } - .col-xl-auto { - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: auto; - max-width: 100%; - } - .col-xl-1 { - -ms-flex: 0 0 8.333333%; - flex: 0 0 8.333333%; - max-width: 8.333333%; - } - .col-xl-2 { - -ms-flex: 0 0 16.666667%; - flex: 0 0 16.666667%; - max-width: 16.666667%; - } - .col-xl-3 { - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25%; - } - .col-xl-4 { - -ms-flex: 0 0 33.333333%; - flex: 0 0 33.333333%; - max-width: 33.333333%; - } - .col-xl-5 { - -ms-flex: 0 0 41.666667%; - flex: 0 0 41.666667%; - max-width: 41.666667%; - } - .col-xl-6 { - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50%; - } - .col-xl-7 { - -ms-flex: 0 0 58.333333%; - flex: 0 0 58.333333%; - max-width: 58.333333%; - } - .col-xl-8 { - -ms-flex: 0 0 66.666667%; - flex: 0 0 66.666667%; - max-width: 66.666667%; - } - .col-xl-9 { - -ms-flex: 0 0 75%; - flex: 0 0 75%; - max-width: 75%; - } - .col-xl-10 { - -ms-flex: 0 0 83.333333%; - flex: 0 0 83.333333%; - max-width: 83.333333%; - } - .col-xl-11 { - -ms-flex: 0 0 91.666667%; - flex: 0 0 91.666667%; - max-width: 91.666667%; - } - .col-xl-12 { - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100%; - } - .order-xl-first { - -ms-flex-order: -1; - order: -1; - } - .order-xl-last { - -ms-flex-order: 13; - order: 13; - } - .order-xl-0 { - -ms-flex-order: 0; - order: 0; - } - .order-xl-1 { - -ms-flex-order: 1; - order: 1; - } - .order-xl-2 { - -ms-flex-order: 2; - order: 2; - } - .order-xl-3 { - -ms-flex-order: 3; - order: 3; - } - .order-xl-4 { - -ms-flex-order: 4; - order: 4; - } - .order-xl-5 { - -ms-flex-order: 5; - order: 5; - } - .order-xl-6 { - -ms-flex-order: 6; - order: 6; - } - .order-xl-7 { - -ms-flex-order: 7; - order: 7; - } - .order-xl-8 { - -ms-flex-order: 8; - order: 8; - } - .order-xl-9 { - -ms-flex-order: 9; - order: 9; - } - .order-xl-10 { - -ms-flex-order: 10; - order: 10; - } - .order-xl-11 { - -ms-flex-order: 11; - order: 11; - } - .order-xl-12 { - -ms-flex-order: 12; - order: 12; - } - .offset-xl-0 { - margin-left: 0; - } - .offset-xl-1 { - margin-left: 8.333333%; - } - .offset-xl-2 { - margin-left: 16.666667%; - } - .offset-xl-3 { - margin-left: 25%; - } - .offset-xl-4 { - margin-left: 33.333333%; - } - .offset-xl-5 { - margin-left: 41.666667%; - } - .offset-xl-6 { - margin-left: 50%; - } - .offset-xl-7 { - margin-left: 58.333333%; - } - .offset-xl-8 { - margin-left: 66.666667%; - } - .offset-xl-9 { - margin-left: 75%; - } - .offset-xl-10 { - margin-left: 83.333333%; - } - .offset-xl-11 { - margin-left: 91.666667%; - } -} - -.d-none { - display: none !important; -} - -.d-inline { - display: inline !important; -} - -.d-inline-block { - display: inline-block !important; -} - -.d-block { - display: block !important; -} - -.d-table { - display: table !important; -} - -.d-table-row { - display: table-row !important; -} - -.d-table-cell { - display: table-cell !important; -} - -.d-flex { - display: -ms-flexbox !important; - display: flex !important; -} - -.d-inline-flex { - display: -ms-inline-flexbox !important; - display: inline-flex !important; -} - -@media (min-width: 576px) { - .d-sm-none { - display: none !important; - } - .d-sm-inline { - display: inline !important; - } - .d-sm-inline-block { - display: inline-block !important; - } - .d-sm-block { - display: block !important; - } - .d-sm-table { - display: table !important; - } - .d-sm-table-row { - display: table-row !important; - } - .d-sm-table-cell { - display: table-cell !important; - } - .d-sm-flex { - display: -ms-flexbox !important; - display: flex !important; - } - .d-sm-inline-flex { - display: -ms-inline-flexbox !important; - display: inline-flex !important; - } -} - -@media (min-width: 768px) { - .d-md-none { - display: none !important; - } - .d-md-inline { - display: inline !important; - } - .d-md-inline-block { - display: inline-block !important; - } - .d-md-block { - display: block !important; - } - .d-md-table { - display: table !important; - } - .d-md-table-row { - display: table-row !important; - } - .d-md-table-cell { - display: table-cell !important; - } - .d-md-flex { - display: -ms-flexbox !important; - display: flex !important; - } - .d-md-inline-flex { - display: -ms-inline-flexbox !important; - display: inline-flex !important; - } -} - -@media (min-width: 992px) { - .d-lg-none { - display: none !important; - } - .d-lg-inline { - display: inline !important; - } - .d-lg-inline-block { - display: inline-block !important; - } - .d-lg-block { - display: block !important; - } - .d-lg-table { - display: table !important; - } - .d-lg-table-row { - display: table-row !important; - } - .d-lg-table-cell { - display: table-cell !important; - } - .d-lg-flex { - display: -ms-flexbox !important; - display: flex !important; - } - .d-lg-inline-flex { - display: -ms-inline-flexbox !important; - display: inline-flex !important; - } -} - -@media (min-width: 1200px) { - .d-xl-none { - display: none !important; - } - .d-xl-inline { - display: inline !important; - } - .d-xl-inline-block { - display: inline-block !important; - } - .d-xl-block { - display: block !important; - } - .d-xl-table { - display: table !important; - } - .d-xl-table-row { - display: table-row !important; - } - .d-xl-table-cell { - display: table-cell !important; - } - .d-xl-flex { - display: -ms-flexbox !important; - display: flex !important; - } - .d-xl-inline-flex { - display: -ms-inline-flexbox !important; - display: inline-flex !important; - } -} - -@media print { - .d-print-none { - display: none !important; - } - .d-print-inline { - display: inline !important; - } - .d-print-inline-block { - display: inline-block !important; - } - .d-print-block { - display: block !important; - } - .d-print-table { - display: table !important; - } - .d-print-table-row { - display: table-row !important; - } - .d-print-table-cell { - display: table-cell !important; - } - .d-print-flex { - display: -ms-flexbox !important; - display: flex !important; - } - .d-print-inline-flex { - display: -ms-inline-flexbox !important; - display: inline-flex !important; - } -} - -.flex-row { - -ms-flex-direction: row !important; - flex-direction: row !important; -} - -.flex-column { - -ms-flex-direction: column !important; - flex-direction: column !important; -} - -.flex-row-reverse { - -ms-flex-direction: row-reverse !important; - flex-direction: row-reverse !important; -} - -.flex-column-reverse { - -ms-flex-direction: column-reverse !important; - flex-direction: column-reverse !important; -} - -.flex-wrap { - -ms-flex-wrap: wrap !important; - flex-wrap: wrap !important; -} - -.flex-nowrap { - -ms-flex-wrap: nowrap !important; - flex-wrap: nowrap !important; -} - -.flex-wrap-reverse { - -ms-flex-wrap: wrap-reverse !important; - flex-wrap: wrap-reverse !important; -} - -.flex-fill { - -ms-flex: 1 1 auto !important; - flex: 1 1 auto !important; -} - -.flex-grow-0 { - -ms-flex-positive: 0 !important; - flex-grow: 0 !important; -} - -.flex-grow-1 { - -ms-flex-positive: 1 !important; - flex-grow: 1 !important; -} - -.flex-shrink-0 { - -ms-flex-negative: 0 !important; - flex-shrink: 0 !important; -} - -.flex-shrink-1 { - -ms-flex-negative: 1 !important; - flex-shrink: 1 !important; -} - -.justify-content-start { - -ms-flex-pack: start !important; - justify-content: flex-start !important; -} - -.justify-content-end { - -ms-flex-pack: end !important; - justify-content: flex-end !important; -} - -.justify-content-center { - -ms-flex-pack: center !important; - justify-content: center !important; -} - -.justify-content-between { - -ms-flex-pack: justify !important; - justify-content: space-between !important; -} - -.justify-content-around { - -ms-flex-pack: distribute !important; - justify-content: space-around !important; -} - -.align-items-start { - -ms-flex-align: start !important; - align-items: flex-start !important; -} - -.align-items-end { - -ms-flex-align: end !important; - align-items: flex-end !important; -} - -.align-items-center { - -ms-flex-align: center !important; - align-items: center !important; -} - -.align-items-baseline { - -ms-flex-align: baseline !important; - align-items: baseline !important; -} - -.align-items-stretch { - -ms-flex-align: stretch !important; - align-items: stretch !important; -} - -.align-content-start { - -ms-flex-line-pack: start !important; - align-content: flex-start !important; -} - -.align-content-end { - -ms-flex-line-pack: end !important; - align-content: flex-end !important; -} - -.align-content-center { - -ms-flex-line-pack: center !important; - align-content: center !important; -} - -.align-content-between { - -ms-flex-line-pack: justify !important; - align-content: space-between !important; -} - -.align-content-around { - -ms-flex-line-pack: distribute !important; - align-content: space-around !important; -} - -.align-content-stretch { - -ms-flex-line-pack: stretch !important; - align-content: stretch !important; -} - -.align-self-auto { - -ms-flex-item-align: auto !important; - align-self: auto !important; -} - -.align-self-start { - -ms-flex-item-align: start !important; - align-self: flex-start !important; -} - -.align-self-end { - -ms-flex-item-align: end !important; - align-self: flex-end !important; -} - -.align-self-center { - -ms-flex-item-align: center !important; - align-self: center !important; -} - -.align-self-baseline { - -ms-flex-item-align: baseline !important; - align-self: baseline !important; -} - -.align-self-stretch { - -ms-flex-item-align: stretch !important; - align-self: stretch !important; -} - -@media (min-width: 576px) { - .flex-sm-row { - -ms-flex-direction: row !important; - flex-direction: row !important; - } - .flex-sm-column { - -ms-flex-direction: column !important; - flex-direction: column !important; - } - .flex-sm-row-reverse { - -ms-flex-direction: row-reverse !important; - flex-direction: row-reverse !important; - } - .flex-sm-column-reverse { - -ms-flex-direction: column-reverse !important; - flex-direction: column-reverse !important; - } - .flex-sm-wrap { - -ms-flex-wrap: wrap !important; - flex-wrap: wrap !important; - } - .flex-sm-nowrap { - -ms-flex-wrap: nowrap !important; - flex-wrap: nowrap !important; - } - .flex-sm-wrap-reverse { - -ms-flex-wrap: wrap-reverse !important; - flex-wrap: wrap-reverse !important; - } - .flex-sm-fill { - -ms-flex: 1 1 auto !important; - flex: 1 1 auto !important; - } - .flex-sm-grow-0 { - -ms-flex-positive: 0 !important; - flex-grow: 0 !important; - } - .flex-sm-grow-1 { - -ms-flex-positive: 1 !important; - flex-grow: 1 !important; - } - .flex-sm-shrink-0 { - -ms-flex-negative: 0 !important; - flex-shrink: 0 !important; - } - .flex-sm-shrink-1 { - -ms-flex-negative: 1 !important; - flex-shrink: 1 !important; - } - .justify-content-sm-start { - -ms-flex-pack: start !important; - justify-content: flex-start !important; - } - .justify-content-sm-end { - -ms-flex-pack: end !important; - justify-content: flex-end !important; - } - .justify-content-sm-center { - -ms-flex-pack: center !important; - justify-content: center !important; - } - .justify-content-sm-between { - -ms-flex-pack: justify !important; - justify-content: space-between !important; - } - .justify-content-sm-around { - -ms-flex-pack: distribute !important; - justify-content: space-around !important; - } - .align-items-sm-start { - -ms-flex-align: start !important; - align-items: flex-start !important; - } - .align-items-sm-end { - -ms-flex-align: end !important; - align-items: flex-end !important; - } - .align-items-sm-center { - -ms-flex-align: center !important; - align-items: center !important; - } - .align-items-sm-baseline { - -ms-flex-align: baseline !important; - align-items: baseline !important; - } - .align-items-sm-stretch { - -ms-flex-align: stretch !important; - align-items: stretch !important; - } - .align-content-sm-start { - -ms-flex-line-pack: start !important; - align-content: flex-start !important; - } - .align-content-sm-end { - -ms-flex-line-pack: end !important; - align-content: flex-end !important; - } - .align-content-sm-center { - -ms-flex-line-pack: center !important; - align-content: center !important; - } - .align-content-sm-between { - -ms-flex-line-pack: justify !important; - align-content: space-between !important; - } - .align-content-sm-around { - -ms-flex-line-pack: distribute !important; - align-content: space-around !important; - } - .align-content-sm-stretch { - -ms-flex-line-pack: stretch !important; - align-content: stretch !important; - } - .align-self-sm-auto { - -ms-flex-item-align: auto !important; - align-self: auto !important; - } - .align-self-sm-start { - -ms-flex-item-align: start !important; - align-self: flex-start !important; - } - .align-self-sm-end { - -ms-flex-item-align: end !important; - align-self: flex-end !important; - } - .align-self-sm-center { - -ms-flex-item-align: center !important; - align-self: center !important; - } - .align-self-sm-baseline { - -ms-flex-item-align: baseline !important; - align-self: baseline !important; - } - .align-self-sm-stretch { - -ms-flex-item-align: stretch !important; - align-self: stretch !important; - } -} - -@media (min-width: 768px) { - .flex-md-row { - -ms-flex-direction: row !important; - flex-direction: row !important; - } - .flex-md-column { - -ms-flex-direction: column !important; - flex-direction: column !important; - } - .flex-md-row-reverse { - -ms-flex-direction: row-reverse !important; - flex-direction: row-reverse !important; - } - .flex-md-column-reverse { - -ms-flex-direction: column-reverse !important; - flex-direction: column-reverse !important; - } - .flex-md-wrap { - -ms-flex-wrap: wrap !important; - flex-wrap: wrap !important; - } - .flex-md-nowrap { - -ms-flex-wrap: nowrap !important; - flex-wrap: nowrap !important; - } - .flex-md-wrap-reverse { - -ms-flex-wrap: wrap-reverse !important; - flex-wrap: wrap-reverse !important; - } - .flex-md-fill { - -ms-flex: 1 1 auto !important; - flex: 1 1 auto !important; - } - .flex-md-grow-0 { - -ms-flex-positive: 0 !important; - flex-grow: 0 !important; - } - .flex-md-grow-1 { - -ms-flex-positive: 1 !important; - flex-grow: 1 !important; - } - .flex-md-shrink-0 { - -ms-flex-negative: 0 !important; - flex-shrink: 0 !important; - } - .flex-md-shrink-1 { - -ms-flex-negative: 1 !important; - flex-shrink: 1 !important; - } - .justify-content-md-start { - -ms-flex-pack: start !important; - justify-content: flex-start !important; - } - .justify-content-md-end { - -ms-flex-pack: end !important; - justify-content: flex-end !important; - } - .justify-content-md-center { - -ms-flex-pack: center !important; - justify-content: center !important; - } - .justify-content-md-between { - -ms-flex-pack: justify !important; - justify-content: space-between !important; - } - .justify-content-md-around { - -ms-flex-pack: distribute !important; - justify-content: space-around !important; - } - .align-items-md-start { - -ms-flex-align: start !important; - align-items: flex-start !important; - } - .align-items-md-end { - -ms-flex-align: end !important; - align-items: flex-end !important; - } - .align-items-md-center { - -ms-flex-align: center !important; - align-items: center !important; - } - .align-items-md-baseline { - -ms-flex-align: baseline !important; - align-items: baseline !important; - } - .align-items-md-stretch { - -ms-flex-align: stretch !important; - align-items: stretch !important; - } - .align-content-md-start { - -ms-flex-line-pack: start !important; - align-content: flex-start !important; - } - .align-content-md-end { - -ms-flex-line-pack: end !important; - align-content: flex-end !important; - } - .align-content-md-center { - -ms-flex-line-pack: center !important; - align-content: center !important; - } - .align-content-md-between { - -ms-flex-line-pack: justify !important; - align-content: space-between !important; - } - .align-content-md-around { - -ms-flex-line-pack: distribute !important; - align-content: space-around !important; - } - .align-content-md-stretch { - -ms-flex-line-pack: stretch !important; - align-content: stretch !important; - } - .align-self-md-auto { - -ms-flex-item-align: auto !important; - align-self: auto !important; - } - .align-self-md-start { - -ms-flex-item-align: start !important; - align-self: flex-start !important; - } - .align-self-md-end { - -ms-flex-item-align: end !important; - align-self: flex-end !important; - } - .align-self-md-center { - -ms-flex-item-align: center !important; - align-self: center !important; - } - .align-self-md-baseline { - -ms-flex-item-align: baseline !important; - align-self: baseline !important; - } - .align-self-md-stretch { - -ms-flex-item-align: stretch !important; - align-self: stretch !important; - } -} - -@media (min-width: 992px) { - .flex-lg-row { - -ms-flex-direction: row !important; - flex-direction: row !important; - } - .flex-lg-column { - -ms-flex-direction: column !important; - flex-direction: column !important; - } - .flex-lg-row-reverse { - -ms-flex-direction: row-reverse !important; - flex-direction: row-reverse !important; - } - .flex-lg-column-reverse { - -ms-flex-direction: column-reverse !important; - flex-direction: column-reverse !important; - } - .flex-lg-wrap { - -ms-flex-wrap: wrap !important; - flex-wrap: wrap !important; - } - .flex-lg-nowrap { - -ms-flex-wrap: nowrap !important; - flex-wrap: nowrap !important; - } - .flex-lg-wrap-reverse { - -ms-flex-wrap: wrap-reverse !important; - flex-wrap: wrap-reverse !important; - } - .flex-lg-fill { - -ms-flex: 1 1 auto !important; - flex: 1 1 auto !important; - } - .flex-lg-grow-0 { - -ms-flex-positive: 0 !important; - flex-grow: 0 !important; - } - .flex-lg-grow-1 { - -ms-flex-positive: 1 !important; - flex-grow: 1 !important; - } - .flex-lg-shrink-0 { - -ms-flex-negative: 0 !important; - flex-shrink: 0 !important; - } - .flex-lg-shrink-1 { - -ms-flex-negative: 1 !important; - flex-shrink: 1 !important; - } - .justify-content-lg-start { - -ms-flex-pack: start !important; - justify-content: flex-start !important; - } - .justify-content-lg-end { - -ms-flex-pack: end !important; - justify-content: flex-end !important; - } - .justify-content-lg-center { - -ms-flex-pack: center !important; - justify-content: center !important; - } - .justify-content-lg-between { - -ms-flex-pack: justify !important; - justify-content: space-between !important; - } - .justify-content-lg-around { - -ms-flex-pack: distribute !important; - justify-content: space-around !important; - } - .align-items-lg-start { - -ms-flex-align: start !important; - align-items: flex-start !important; - } - .align-items-lg-end { - -ms-flex-align: end !important; - align-items: flex-end !important; - } - .align-items-lg-center { - -ms-flex-align: center !important; - align-items: center !important; - } - .align-items-lg-baseline { - -ms-flex-align: baseline !important; - align-items: baseline !important; - } - .align-items-lg-stretch { - -ms-flex-align: stretch !important; - align-items: stretch !important; - } - .align-content-lg-start { - -ms-flex-line-pack: start !important; - align-content: flex-start !important; - } - .align-content-lg-end { - -ms-flex-line-pack: end !important; - align-content: flex-end !important; - } - .align-content-lg-center { - -ms-flex-line-pack: center !important; - align-content: center !important; - } - .align-content-lg-between { - -ms-flex-line-pack: justify !important; - align-content: space-between !important; - } - .align-content-lg-around { - -ms-flex-line-pack: distribute !important; - align-content: space-around !important; - } - .align-content-lg-stretch { - -ms-flex-line-pack: stretch !important; - align-content: stretch !important; - } - .align-self-lg-auto { - -ms-flex-item-align: auto !important; - align-self: auto !important; - } - .align-self-lg-start { - -ms-flex-item-align: start !important; - align-self: flex-start !important; - } - .align-self-lg-end { - -ms-flex-item-align: end !important; - align-self: flex-end !important; - } - .align-self-lg-center { - -ms-flex-item-align: center !important; - align-self: center !important; - } - .align-self-lg-baseline { - -ms-flex-item-align: baseline !important; - align-self: baseline !important; - } - .align-self-lg-stretch { - -ms-flex-item-align: stretch !important; - align-self: stretch !important; - } -} - -@media (min-width: 1200px) { - .flex-xl-row { - -ms-flex-direction: row !important; - flex-direction: row !important; - } - .flex-xl-column { - -ms-flex-direction: column !important; - flex-direction: column !important; - } - .flex-xl-row-reverse { - -ms-flex-direction: row-reverse !important; - flex-direction: row-reverse !important; - } - .flex-xl-column-reverse { - -ms-flex-direction: column-reverse !important; - flex-direction: column-reverse !important; - } - .flex-xl-wrap { - -ms-flex-wrap: wrap !important; - flex-wrap: wrap !important; - } - .flex-xl-nowrap { - -ms-flex-wrap: nowrap !important; - flex-wrap: nowrap !important; - } - .flex-xl-wrap-reverse { - -ms-flex-wrap: wrap-reverse !important; - flex-wrap: wrap-reverse !important; - } - .flex-xl-fill { - -ms-flex: 1 1 auto !important; - flex: 1 1 auto !important; - } - .flex-xl-grow-0 { - -ms-flex-positive: 0 !important; - flex-grow: 0 !important; - } - .flex-xl-grow-1 { - -ms-flex-positive: 1 !important; - flex-grow: 1 !important; - } - .flex-xl-shrink-0 { - -ms-flex-negative: 0 !important; - flex-shrink: 0 !important; - } - .flex-xl-shrink-1 { - -ms-flex-negative: 1 !important; - flex-shrink: 1 !important; - } - .justify-content-xl-start { - -ms-flex-pack: start !important; - justify-content: flex-start !important; - } - .justify-content-xl-end { - -ms-flex-pack: end !important; - justify-content: flex-end !important; - } - .justify-content-xl-center { - -ms-flex-pack: center !important; - justify-content: center !important; - } - .justify-content-xl-between { - -ms-flex-pack: justify !important; - justify-content: space-between !important; - } - .justify-content-xl-around { - -ms-flex-pack: distribute !important; - justify-content: space-around !important; - } - .align-items-xl-start { - -ms-flex-align: start !important; - align-items: flex-start !important; - } - .align-items-xl-end { - -ms-flex-align: end !important; - align-items: flex-end !important; - } - .align-items-xl-center { - -ms-flex-align: center !important; - align-items: center !important; - } - .align-items-xl-baseline { - -ms-flex-align: baseline !important; - align-items: baseline !important; - } - .align-items-xl-stretch { - -ms-flex-align: stretch !important; - align-items: stretch !important; - } - .align-content-xl-start { - -ms-flex-line-pack: start !important; - align-content: flex-start !important; - } - .align-content-xl-end { - -ms-flex-line-pack: end !important; - align-content: flex-end !important; - } - .align-content-xl-center { - -ms-flex-line-pack: center !important; - align-content: center !important; - } - .align-content-xl-between { - -ms-flex-line-pack: justify !important; - align-content: space-between !important; - } - .align-content-xl-around { - -ms-flex-line-pack: distribute !important; - align-content: space-around !important; - } - .align-content-xl-stretch { - -ms-flex-line-pack: stretch !important; - align-content: stretch !important; - } - .align-self-xl-auto { - -ms-flex-item-align: auto !important; - align-self: auto !important; - } - .align-self-xl-start { - -ms-flex-item-align: start !important; - align-self: flex-start !important; - } - .align-self-xl-end { - -ms-flex-item-align: end !important; - align-self: flex-end !important; - } - .align-self-xl-center { - -ms-flex-item-align: center !important; - align-self: center !important; - } - .align-self-xl-baseline { - -ms-flex-item-align: baseline !important; - align-self: baseline !important; - } - .align-self-xl-stretch { - -ms-flex-item-align: stretch !important; - align-self: stretch !important; - } -} - -.m-0 { - margin: 0 !important; -} - -.mt-0, -.my-0 { - margin-top: 0 !important; -} - -.mr-0, -.mx-0 { - margin-right: 0 !important; -} - -.mb-0, -.my-0 { - margin-bottom: 0 !important; -} - -.ml-0, -.mx-0 { - margin-left: 0 !important; -} - -.m-1 { - margin: 0.25rem !important; -} - -.mt-1, -.my-1 { - margin-top: 0.25rem !important; -} - -.mr-1, -.mx-1 { - margin-right: 0.25rem !important; -} - -.mb-1, -.my-1 { - margin-bottom: 0.25rem !important; -} - -.ml-1, -.mx-1 { - margin-left: 0.25rem !important; -} - -.m-2 { - margin: 0.5rem !important; -} - -.mt-2, -.my-2 { - margin-top: 0.5rem !important; -} - -.mr-2, -.mx-2 { - margin-right: 0.5rem !important; -} - -.mb-2, -.my-2 { - margin-bottom: 0.5rem !important; -} - -.ml-2, -.mx-2 { - margin-left: 0.5rem !important; -} - -.m-3 { - margin: 1rem !important; -} - -.mt-3, -.my-3 { - margin-top: 1rem !important; -} - -.mr-3, -.mx-3 { - margin-right: 1rem !important; -} - -.mb-3, -.my-3 { - margin-bottom: 1rem !important; -} - -.ml-3, -.mx-3 { - margin-left: 1rem !important; -} - -.m-4 { - margin: 1.5rem !important; -} - -.mt-4, -.my-4 { - margin-top: 1.5rem !important; -} - -.mr-4, -.mx-4 { - margin-right: 1.5rem !important; -} - -.mb-4, -.my-4 { - margin-bottom: 1.5rem !important; -} - -.ml-4, -.mx-4 { - margin-left: 1.5rem !important; -} - -.m-5 { - margin: 3rem !important; -} - -.mt-5, -.my-5 { - margin-top: 3rem !important; -} - -.mr-5, -.mx-5 { - margin-right: 3rem !important; -} - -.mb-5, -.my-5 { - margin-bottom: 3rem !important; -} - -.ml-5, -.mx-5 { - margin-left: 3rem !important; -} - -.p-0 { - padding: 0 !important; -} - -.pt-0, -.py-0 { - padding-top: 0 !important; -} - -.pr-0, -.px-0 { - padding-right: 0 !important; -} - -.pb-0, -.py-0 { - padding-bottom: 0 !important; -} - -.pl-0, -.px-0 { - padding-left: 0 !important; -} - -.p-1 { - padding: 0.25rem !important; -} - -.pt-1, -.py-1 { - padding-top: 0.25rem !important; -} - -.pr-1, -.px-1 { - padding-right: 0.25rem !important; -} - -.pb-1, -.py-1 { - padding-bottom: 0.25rem !important; -} - -.pl-1, -.px-1 { - padding-left: 0.25rem !important; -} - -.p-2 { - padding: 0.5rem !important; -} - -.pt-2, -.py-2 { - padding-top: 0.5rem !important; -} - -.pr-2, -.px-2 { - padding-right: 0.5rem !important; -} - -.pb-2, -.py-2 { - padding-bottom: 0.5rem !important; -} - -.pl-2, -.px-2 { - padding-left: 0.5rem !important; -} - -.p-3 { - padding: 1rem !important; -} - -.pt-3, -.py-3 { - padding-top: 1rem !important; -} - -.pr-3, -.px-3 { - padding-right: 1rem !important; -} - -.pb-3, -.py-3 { - padding-bottom: 1rem !important; -} - -.pl-3, -.px-3 { - padding-left: 1rem !important; -} - -.p-4 { - padding: 1.5rem !important; -} - -.pt-4, -.py-4 { - padding-top: 1.5rem !important; -} - -.pr-4, -.px-4 { - padding-right: 1.5rem !important; -} - -.pb-4, -.py-4 { - padding-bottom: 1.5rem !important; -} - -.pl-4, -.px-4 { - padding-left: 1.5rem !important; -} - -.p-5 { - padding: 3rem !important; -} - -.pt-5, -.py-5 { - padding-top: 3rem !important; -} - -.pr-5, -.px-5 { - padding-right: 3rem !important; -} - -.pb-5, -.py-5 { - padding-bottom: 3rem !important; -} - -.pl-5, -.px-5 { - padding-left: 3rem !important; -} - -.m-n1 { - margin: -0.25rem !important; -} - -.mt-n1, -.my-n1 { - margin-top: -0.25rem !important; -} - -.mr-n1, -.mx-n1 { - margin-right: -0.25rem !important; -} - -.mb-n1, -.my-n1 { - margin-bottom: -0.25rem !important; -} - -.ml-n1, -.mx-n1 { - margin-left: -0.25rem !important; -} - -.m-n2 { - margin: -0.5rem !important; -} - -.mt-n2, -.my-n2 { - margin-top: -0.5rem !important; -} - -.mr-n2, -.mx-n2 { - margin-right: -0.5rem !important; -} - -.mb-n2, -.my-n2 { - margin-bottom: -0.5rem !important; -} - -.ml-n2, -.mx-n2 { - margin-left: -0.5rem !important; -} - -.m-n3 { - margin: -1rem !important; -} - -.mt-n3, -.my-n3 { - margin-top: -1rem !important; -} - -.mr-n3, -.mx-n3 { - margin-right: -1rem !important; -} - -.mb-n3, -.my-n3 { - margin-bottom: -1rem !important; -} - -.ml-n3, -.mx-n3 { - margin-left: -1rem !important; -} - -.m-n4 { - margin: -1.5rem !important; -} - -.mt-n4, -.my-n4 { - margin-top: -1.5rem !important; -} - -.mr-n4, -.mx-n4 { - margin-right: -1.5rem !important; -} - -.mb-n4, -.my-n4 { - margin-bottom: -1.5rem !important; -} - -.ml-n4, -.mx-n4 { - margin-left: -1.5rem !important; -} - -.m-n5 { - margin: -3rem !important; -} - -.mt-n5, -.my-n5 { - margin-top: -3rem !important; -} - -.mr-n5, -.mx-n5 { - margin-right: -3rem !important; -} - -.mb-n5, -.my-n5 { - margin-bottom: -3rem !important; -} - -.ml-n5, -.mx-n5 { - margin-left: -3rem !important; -} - -.m-auto { - margin: auto !important; -} - -.mt-auto, -.my-auto { - margin-top: auto !important; -} - -.mr-auto, -.mx-auto { - margin-right: auto !important; -} - -.mb-auto, -.my-auto { - margin-bottom: auto !important; -} - -.ml-auto, -.mx-auto { - margin-left: auto !important; -} - -@media (min-width: 576px) { - .m-sm-0 { - margin: 0 !important; - } - .mt-sm-0, - .my-sm-0 { - margin-top: 0 !important; - } - .mr-sm-0, - .mx-sm-0 { - margin-right: 0 !important; - } - .mb-sm-0, - .my-sm-0 { - margin-bottom: 0 !important; - } - .ml-sm-0, - .mx-sm-0 { - margin-left: 0 !important; - } - .m-sm-1 { - margin: 0.25rem !important; - } - .mt-sm-1, - .my-sm-1 { - margin-top: 0.25rem !important; - } - .mr-sm-1, - .mx-sm-1 { - margin-right: 0.25rem !important; - } - .mb-sm-1, - .my-sm-1 { - margin-bottom: 0.25rem !important; - } - .ml-sm-1, - .mx-sm-1 { - margin-left: 0.25rem !important; - } - .m-sm-2 { - margin: 0.5rem !important; - } - .mt-sm-2, - .my-sm-2 { - margin-top: 0.5rem !important; - } - .mr-sm-2, - .mx-sm-2 { - margin-right: 0.5rem !important; - } - .mb-sm-2, - .my-sm-2 { - margin-bottom: 0.5rem !important; - } - .ml-sm-2, - .mx-sm-2 { - margin-left: 0.5rem !important; - } - .m-sm-3 { - margin: 1rem !important; - } - .mt-sm-3, - .my-sm-3 { - margin-top: 1rem !important; - } - .mr-sm-3, - .mx-sm-3 { - margin-right: 1rem !important; - } - .mb-sm-3, - .my-sm-3 { - margin-bottom: 1rem !important; - } - .ml-sm-3, - .mx-sm-3 { - margin-left: 1rem !important; - } - .m-sm-4 { - margin: 1.5rem !important; - } - .mt-sm-4, - .my-sm-4 { - margin-top: 1.5rem !important; - } - .mr-sm-4, - .mx-sm-4 { - margin-right: 1.5rem !important; - } - .mb-sm-4, - .my-sm-4 { - margin-bottom: 1.5rem !important; - } - .ml-sm-4, - .mx-sm-4 { - margin-left: 1.5rem !important; - } - .m-sm-5 { - margin: 3rem !important; - } - .mt-sm-5, - .my-sm-5 { - margin-top: 3rem !important; - } - .mr-sm-5, - .mx-sm-5 { - margin-right: 3rem !important; - } - .mb-sm-5, - .my-sm-5 { - margin-bottom: 3rem !important; - } - .ml-sm-5, - .mx-sm-5 { - margin-left: 3rem !important; - } - .p-sm-0 { - padding: 0 !important; - } - .pt-sm-0, - .py-sm-0 { - padding-top: 0 !important; - } - .pr-sm-0, - .px-sm-0 { - padding-right: 0 !important; - } - .pb-sm-0, - .py-sm-0 { - padding-bottom: 0 !important; - } - .pl-sm-0, - .px-sm-0 { - padding-left: 0 !important; - } - .p-sm-1 { - padding: 0.25rem !important; - } - .pt-sm-1, - .py-sm-1 { - padding-top: 0.25rem !important; - } - .pr-sm-1, - .px-sm-1 { - padding-right: 0.25rem !important; - } - .pb-sm-1, - .py-sm-1 { - padding-bottom: 0.25rem !important; - } - .pl-sm-1, - .px-sm-1 { - padding-left: 0.25rem !important; - } - .p-sm-2 { - padding: 0.5rem !important; - } - .pt-sm-2, - .py-sm-2 { - padding-top: 0.5rem !important; - } - .pr-sm-2, - .px-sm-2 { - padding-right: 0.5rem !important; - } - .pb-sm-2, - .py-sm-2 { - padding-bottom: 0.5rem !important; - } - .pl-sm-2, - .px-sm-2 { - padding-left: 0.5rem !important; - } - .p-sm-3 { - padding: 1rem !important; - } - .pt-sm-3, - .py-sm-3 { - padding-top: 1rem !important; - } - .pr-sm-3, - .px-sm-3 { - padding-right: 1rem !important; - } - .pb-sm-3, - .py-sm-3 { - padding-bottom: 1rem !important; - } - .pl-sm-3, - .px-sm-3 { - padding-left: 1rem !important; - } - .p-sm-4 { - padding: 1.5rem !important; - } - .pt-sm-4, - .py-sm-4 { - padding-top: 1.5rem !important; - } - .pr-sm-4, - .px-sm-4 { - padding-right: 1.5rem !important; - } - .pb-sm-4, - .py-sm-4 { - padding-bottom: 1.5rem !important; - } - .pl-sm-4, - .px-sm-4 { - padding-left: 1.5rem !important; - } - .p-sm-5 { - padding: 3rem !important; - } - .pt-sm-5, - .py-sm-5 { - padding-top: 3rem !important; - } - .pr-sm-5, - .px-sm-5 { - padding-right: 3rem !important; - } - .pb-sm-5, - .py-sm-5 { - padding-bottom: 3rem !important; - } - .pl-sm-5, - .px-sm-5 { - padding-left: 3rem !important; - } - .m-sm-n1 { - margin: -0.25rem !important; - } - .mt-sm-n1, - .my-sm-n1 { - margin-top: -0.25rem !important; - } - .mr-sm-n1, - .mx-sm-n1 { - margin-right: -0.25rem !important; - } - .mb-sm-n1, - .my-sm-n1 { - margin-bottom: -0.25rem !important; - } - .ml-sm-n1, - .mx-sm-n1 { - margin-left: -0.25rem !important; - } - .m-sm-n2 { - margin: -0.5rem !important; - } - .mt-sm-n2, - .my-sm-n2 { - margin-top: -0.5rem !important; - } - .mr-sm-n2, - .mx-sm-n2 { - margin-right: -0.5rem !important; - } - .mb-sm-n2, - .my-sm-n2 { - margin-bottom: -0.5rem !important; - } - .ml-sm-n2, - .mx-sm-n2 { - margin-left: -0.5rem !important; - } - .m-sm-n3 { - margin: -1rem !important; - } - .mt-sm-n3, - .my-sm-n3 { - margin-top: -1rem !important; - } - .mr-sm-n3, - .mx-sm-n3 { - margin-right: -1rem !important; - } - .mb-sm-n3, - .my-sm-n3 { - margin-bottom: -1rem !important; - } - .ml-sm-n3, - .mx-sm-n3 { - margin-left: -1rem !important; - } - .m-sm-n4 { - margin: -1.5rem !important; - } - .mt-sm-n4, - .my-sm-n4 { - margin-top: -1.5rem !important; - } - .mr-sm-n4, - .mx-sm-n4 { - margin-right: -1.5rem !important; - } - .mb-sm-n4, - .my-sm-n4 { - margin-bottom: -1.5rem !important; - } - .ml-sm-n4, - .mx-sm-n4 { - margin-left: -1.5rem !important; - } - .m-sm-n5 { - margin: -3rem !important; - } - .mt-sm-n5, - .my-sm-n5 { - margin-top: -3rem !important; - } - .mr-sm-n5, - .mx-sm-n5 { - margin-right: -3rem !important; - } - .mb-sm-n5, - .my-sm-n5 { - margin-bottom: -3rem !important; - } - .ml-sm-n5, - .mx-sm-n5 { - margin-left: -3rem !important; - } - .m-sm-auto { - margin: auto !important; - } - .mt-sm-auto, - .my-sm-auto { - margin-top: auto !important; - } - .mr-sm-auto, - .mx-sm-auto { - margin-right: auto !important; - } - .mb-sm-auto, - .my-sm-auto { - margin-bottom: auto !important; - } - .ml-sm-auto, - .mx-sm-auto { - margin-left: auto !important; - } -} - -@media (min-width: 768px) { - .m-md-0 { - margin: 0 !important; - } - .mt-md-0, - .my-md-0 { - margin-top: 0 !important; - } - .mr-md-0, - .mx-md-0 { - margin-right: 0 !important; - } - .mb-md-0, - .my-md-0 { - margin-bottom: 0 !important; - } - .ml-md-0, - .mx-md-0 { - margin-left: 0 !important; - } - .m-md-1 { - margin: 0.25rem !important; - } - .mt-md-1, - .my-md-1 { - margin-top: 0.25rem !important; - } - .mr-md-1, - .mx-md-1 { - margin-right: 0.25rem !important; - } - .mb-md-1, - .my-md-1 { - margin-bottom: 0.25rem !important; - } - .ml-md-1, - .mx-md-1 { - margin-left: 0.25rem !important; - } - .m-md-2 { - margin: 0.5rem !important; - } - .mt-md-2, - .my-md-2 { - margin-top: 0.5rem !important; - } - .mr-md-2, - .mx-md-2 { - margin-right: 0.5rem !important; - } - .mb-md-2, - .my-md-2 { - margin-bottom: 0.5rem !important; - } - .ml-md-2, - .mx-md-2 { - margin-left: 0.5rem !important; - } - .m-md-3 { - margin: 1rem !important; - } - .mt-md-3, - .my-md-3 { - margin-top: 1rem !important; - } - .mr-md-3, - .mx-md-3 { - margin-right: 1rem !important; - } - .mb-md-3, - .my-md-3 { - margin-bottom: 1rem !important; - } - .ml-md-3, - .mx-md-3 { - margin-left: 1rem !important; - } - .m-md-4 { - margin: 1.5rem !important; - } - .mt-md-4, - .my-md-4 { - margin-top: 1.5rem !important; - } - .mr-md-4, - .mx-md-4 { - margin-right: 1.5rem !important; - } - .mb-md-4, - .my-md-4 { - margin-bottom: 1.5rem !important; - } - .ml-md-4, - .mx-md-4 { - margin-left: 1.5rem !important; - } - .m-md-5 { - margin: 3rem !important; - } - .mt-md-5, - .my-md-5 { - margin-top: 3rem !important; - } - .mr-md-5, - .mx-md-5 { - margin-right: 3rem !important; - } - .mb-md-5, - .my-md-5 { - margin-bottom: 3rem !important; - } - .ml-md-5, - .mx-md-5 { - margin-left: 3rem !important; - } - .p-md-0 { - padding: 0 !important; - } - .pt-md-0, - .py-md-0 { - padding-top: 0 !important; - } - .pr-md-0, - .px-md-0 { - padding-right: 0 !important; - } - .pb-md-0, - .py-md-0 { - padding-bottom: 0 !important; - } - .pl-md-0, - .px-md-0 { - padding-left: 0 !important; - } - .p-md-1 { - padding: 0.25rem !important; - } - .pt-md-1, - .py-md-1 { - padding-top: 0.25rem !important; - } - .pr-md-1, - .px-md-1 { - padding-right: 0.25rem !important; - } - .pb-md-1, - .py-md-1 { - padding-bottom: 0.25rem !important; - } - .pl-md-1, - .px-md-1 { - padding-left: 0.25rem !important; - } - .p-md-2 { - padding: 0.5rem !important; - } - .pt-md-2, - .py-md-2 { - padding-top: 0.5rem !important; - } - .pr-md-2, - .px-md-2 { - padding-right: 0.5rem !important; - } - .pb-md-2, - .py-md-2 { - padding-bottom: 0.5rem !important; - } - .pl-md-2, - .px-md-2 { - padding-left: 0.5rem !important; - } - .p-md-3 { - padding: 1rem !important; - } - .pt-md-3, - .py-md-3 { - padding-top: 1rem !important; - } - .pr-md-3, - .px-md-3 { - padding-right: 1rem !important; - } - .pb-md-3, - .py-md-3 { - padding-bottom: 1rem !important; - } - .pl-md-3, - .px-md-3 { - padding-left: 1rem !important; - } - .p-md-4 { - padding: 1.5rem !important; - } - .pt-md-4, - .py-md-4 { - padding-top: 1.5rem !important; - } - .pr-md-4, - .px-md-4 { - padding-right: 1.5rem !important; - } - .pb-md-4, - .py-md-4 { - padding-bottom: 1.5rem !important; - } - .pl-md-4, - .px-md-4 { - padding-left: 1.5rem !important; - } - .p-md-5 { - padding: 3rem !important; - } - .pt-md-5, - .py-md-5 { - padding-top: 3rem !important; - } - .pr-md-5, - .px-md-5 { - padding-right: 3rem !important; - } - .pb-md-5, - .py-md-5 { - padding-bottom: 3rem !important; - } - .pl-md-5, - .px-md-5 { - padding-left: 3rem !important; - } - .m-md-n1 { - margin: -0.25rem !important; - } - .mt-md-n1, - .my-md-n1 { - margin-top: -0.25rem !important; - } - .mr-md-n1, - .mx-md-n1 { - margin-right: -0.25rem !important; - } - .mb-md-n1, - .my-md-n1 { - margin-bottom: -0.25rem !important; - } - .ml-md-n1, - .mx-md-n1 { - margin-left: -0.25rem !important; - } - .m-md-n2 { - margin: -0.5rem !important; - } - .mt-md-n2, - .my-md-n2 { - margin-top: -0.5rem !important; - } - .mr-md-n2, - .mx-md-n2 { - margin-right: -0.5rem !important; - } - .mb-md-n2, - .my-md-n2 { - margin-bottom: -0.5rem !important; - } - .ml-md-n2, - .mx-md-n2 { - margin-left: -0.5rem !important; - } - .m-md-n3 { - margin: -1rem !important; - } - .mt-md-n3, - .my-md-n3 { - margin-top: -1rem !important; - } - .mr-md-n3, - .mx-md-n3 { - margin-right: -1rem !important; - } - .mb-md-n3, - .my-md-n3 { - margin-bottom: -1rem !important; - } - .ml-md-n3, - .mx-md-n3 { - margin-left: -1rem !important; - } - .m-md-n4 { - margin: -1.5rem !important; - } - .mt-md-n4, - .my-md-n4 { - margin-top: -1.5rem !important; - } - .mr-md-n4, - .mx-md-n4 { - margin-right: -1.5rem !important; - } - .mb-md-n4, - .my-md-n4 { - margin-bottom: -1.5rem !important; - } - .ml-md-n4, - .mx-md-n4 { - margin-left: -1.5rem !important; - } - .m-md-n5 { - margin: -3rem !important; - } - .mt-md-n5, - .my-md-n5 { - margin-top: -3rem !important; - } - .mr-md-n5, - .mx-md-n5 { - margin-right: -3rem !important; - } - .mb-md-n5, - .my-md-n5 { - margin-bottom: -3rem !important; - } - .ml-md-n5, - .mx-md-n5 { - margin-left: -3rem !important; - } - .m-md-auto { - margin: auto !important; - } - .mt-md-auto, - .my-md-auto { - margin-top: auto !important; - } - .mr-md-auto, - .mx-md-auto { - margin-right: auto !important; - } - .mb-md-auto, - .my-md-auto { - margin-bottom: auto !important; - } - .ml-md-auto, - .mx-md-auto { - margin-left: auto !important; - } -} - -@media (min-width: 992px) { - .m-lg-0 { - margin: 0 !important; - } - .mt-lg-0, - .my-lg-0 { - margin-top: 0 !important; - } - .mr-lg-0, - .mx-lg-0 { - margin-right: 0 !important; - } - .mb-lg-0, - .my-lg-0 { - margin-bottom: 0 !important; - } - .ml-lg-0, - .mx-lg-0 { - margin-left: 0 !important; - } - .m-lg-1 { - margin: 0.25rem !important; - } - .mt-lg-1, - .my-lg-1 { - margin-top: 0.25rem !important; - } - .mr-lg-1, - .mx-lg-1 { - margin-right: 0.25rem !important; - } - .mb-lg-1, - .my-lg-1 { - margin-bottom: 0.25rem !important; - } - .ml-lg-1, - .mx-lg-1 { - margin-left: 0.25rem !important; - } - .m-lg-2 { - margin: 0.5rem !important; - } - .mt-lg-2, - .my-lg-2 { - margin-top: 0.5rem !important; - } - .mr-lg-2, - .mx-lg-2 { - margin-right: 0.5rem !important; - } - .mb-lg-2, - .my-lg-2 { - margin-bottom: 0.5rem !important; - } - .ml-lg-2, - .mx-lg-2 { - margin-left: 0.5rem !important; - } - .m-lg-3 { - margin: 1rem !important; - } - .mt-lg-3, - .my-lg-3 { - margin-top: 1rem !important; - } - .mr-lg-3, - .mx-lg-3 { - margin-right: 1rem !important; - } - .mb-lg-3, - .my-lg-3 { - margin-bottom: 1rem !important; - } - .ml-lg-3, - .mx-lg-3 { - margin-left: 1rem !important; - } - .m-lg-4 { - margin: 1.5rem !important; - } - .mt-lg-4, - .my-lg-4 { - margin-top: 1.5rem !important; - } - .mr-lg-4, - .mx-lg-4 { - margin-right: 1.5rem !important; - } - .mb-lg-4, - .my-lg-4 { - margin-bottom: 1.5rem !important; - } - .ml-lg-4, - .mx-lg-4 { - margin-left: 1.5rem !important; - } - .m-lg-5 { - margin: 3rem !important; - } - .mt-lg-5, - .my-lg-5 { - margin-top: 3rem !important; - } - .mr-lg-5, - .mx-lg-5 { - margin-right: 3rem !important; - } - .mb-lg-5, - .my-lg-5 { - margin-bottom: 3rem !important; - } - .ml-lg-5, - .mx-lg-5 { - margin-left: 3rem !important; - } - .p-lg-0 { - padding: 0 !important; - } - .pt-lg-0, - .py-lg-0 { - padding-top: 0 !important; - } - .pr-lg-0, - .px-lg-0 { - padding-right: 0 !important; - } - .pb-lg-0, - .py-lg-0 { - padding-bottom: 0 !important; - } - .pl-lg-0, - .px-lg-0 { - padding-left: 0 !important; - } - .p-lg-1 { - padding: 0.25rem !important; - } - .pt-lg-1, - .py-lg-1 { - padding-top: 0.25rem !important; - } - .pr-lg-1, - .px-lg-1 { - padding-right: 0.25rem !important; - } - .pb-lg-1, - .py-lg-1 { - padding-bottom: 0.25rem !important; - } - .pl-lg-1, - .px-lg-1 { - padding-left: 0.25rem !important; - } - .p-lg-2 { - padding: 0.5rem !important; - } - .pt-lg-2, - .py-lg-2 { - padding-top: 0.5rem !important; - } - .pr-lg-2, - .px-lg-2 { - padding-right: 0.5rem !important; - } - .pb-lg-2, - .py-lg-2 { - padding-bottom: 0.5rem !important; - } - .pl-lg-2, - .px-lg-2 { - padding-left: 0.5rem !important; - } - .p-lg-3 { - padding: 1rem !important; - } - .pt-lg-3, - .py-lg-3 { - padding-top: 1rem !important; - } - .pr-lg-3, - .px-lg-3 { - padding-right: 1rem !important; - } - .pb-lg-3, - .py-lg-3 { - padding-bottom: 1rem !important; - } - .pl-lg-3, - .px-lg-3 { - padding-left: 1rem !important; - } - .p-lg-4 { - padding: 1.5rem !important; - } - .pt-lg-4, - .py-lg-4 { - padding-top: 1.5rem !important; - } - .pr-lg-4, - .px-lg-4 { - padding-right: 1.5rem !important; - } - .pb-lg-4, - .py-lg-4 { - padding-bottom: 1.5rem !important; - } - .pl-lg-4, - .px-lg-4 { - padding-left: 1.5rem !important; - } - .p-lg-5 { - padding: 3rem !important; - } - .pt-lg-5, - .py-lg-5 { - padding-top: 3rem !important; - } - .pr-lg-5, - .px-lg-5 { - padding-right: 3rem !important; - } - .pb-lg-5, - .py-lg-5 { - padding-bottom: 3rem !important; - } - .pl-lg-5, - .px-lg-5 { - padding-left: 3rem !important; - } - .m-lg-n1 { - margin: -0.25rem !important; - } - .mt-lg-n1, - .my-lg-n1 { - margin-top: -0.25rem !important; - } - .mr-lg-n1, - .mx-lg-n1 { - margin-right: -0.25rem !important; - } - .mb-lg-n1, - .my-lg-n1 { - margin-bottom: -0.25rem !important; - } - .ml-lg-n1, - .mx-lg-n1 { - margin-left: -0.25rem !important; - } - .m-lg-n2 { - margin: -0.5rem !important; - } - .mt-lg-n2, - .my-lg-n2 { - margin-top: -0.5rem !important; - } - .mr-lg-n2, - .mx-lg-n2 { - margin-right: -0.5rem !important; - } - .mb-lg-n2, - .my-lg-n2 { - margin-bottom: -0.5rem !important; - } - .ml-lg-n2, - .mx-lg-n2 { - margin-left: -0.5rem !important; - } - .m-lg-n3 { - margin: -1rem !important; - } - .mt-lg-n3, - .my-lg-n3 { - margin-top: -1rem !important; - } - .mr-lg-n3, - .mx-lg-n3 { - margin-right: -1rem !important; - } - .mb-lg-n3, - .my-lg-n3 { - margin-bottom: -1rem !important; - } - .ml-lg-n3, - .mx-lg-n3 { - margin-left: -1rem !important; - } - .m-lg-n4 { - margin: -1.5rem !important; - } - .mt-lg-n4, - .my-lg-n4 { - margin-top: -1.5rem !important; - } - .mr-lg-n4, - .mx-lg-n4 { - margin-right: -1.5rem !important; - } - .mb-lg-n4, - .my-lg-n4 { - margin-bottom: -1.5rem !important; - } - .ml-lg-n4, - .mx-lg-n4 { - margin-left: -1.5rem !important; - } - .m-lg-n5 { - margin: -3rem !important; - } - .mt-lg-n5, - .my-lg-n5 { - margin-top: -3rem !important; - } - .mr-lg-n5, - .mx-lg-n5 { - margin-right: -3rem !important; - } - .mb-lg-n5, - .my-lg-n5 { - margin-bottom: -3rem !important; - } - .ml-lg-n5, - .mx-lg-n5 { - margin-left: -3rem !important; - } - .m-lg-auto { - margin: auto !important; - } - .mt-lg-auto, - .my-lg-auto { - margin-top: auto !important; - } - .mr-lg-auto, - .mx-lg-auto { - margin-right: auto !important; - } - .mb-lg-auto, - .my-lg-auto { - margin-bottom: auto !important; - } - .ml-lg-auto, - .mx-lg-auto { - margin-left: auto !important; - } -} - -@media (min-width: 1200px) { - .m-xl-0 { - margin: 0 !important; - } - .mt-xl-0, - .my-xl-0 { - margin-top: 0 !important; - } - .mr-xl-0, - .mx-xl-0 { - margin-right: 0 !important; - } - .mb-xl-0, - .my-xl-0 { - margin-bottom: 0 !important; - } - .ml-xl-0, - .mx-xl-0 { - margin-left: 0 !important; - } - .m-xl-1 { - margin: 0.25rem !important; - } - .mt-xl-1, - .my-xl-1 { - margin-top: 0.25rem !important; - } - .mr-xl-1, - .mx-xl-1 { - margin-right: 0.25rem !important; - } - .mb-xl-1, - .my-xl-1 { - margin-bottom: 0.25rem !important; - } - .ml-xl-1, - .mx-xl-1 { - margin-left: 0.25rem !important; - } - .m-xl-2 { - margin: 0.5rem !important; - } - .mt-xl-2, - .my-xl-2 { - margin-top: 0.5rem !important; - } - .mr-xl-2, - .mx-xl-2 { - margin-right: 0.5rem !important; - } - .mb-xl-2, - .my-xl-2 { - margin-bottom: 0.5rem !important; - } - .ml-xl-2, - .mx-xl-2 { - margin-left: 0.5rem !important; - } - .m-xl-3 { - margin: 1rem !important; - } - .mt-xl-3, - .my-xl-3 { - margin-top: 1rem !important; - } - .mr-xl-3, - .mx-xl-3 { - margin-right: 1rem !important; - } - .mb-xl-3, - .my-xl-3 { - margin-bottom: 1rem !important; - } - .ml-xl-3, - .mx-xl-3 { - margin-left: 1rem !important; - } - .m-xl-4 { - margin: 1.5rem !important; - } - .mt-xl-4, - .my-xl-4 { - margin-top: 1.5rem !important; - } - .mr-xl-4, - .mx-xl-4 { - margin-right: 1.5rem !important; - } - .mb-xl-4, - .my-xl-4 { - margin-bottom: 1.5rem !important; - } - .ml-xl-4, - .mx-xl-4 { - margin-left: 1.5rem !important; - } - .m-xl-5 { - margin: 3rem !important; - } - .mt-xl-5, - .my-xl-5 { - margin-top: 3rem !important; - } - .mr-xl-5, - .mx-xl-5 { - margin-right: 3rem !important; - } - .mb-xl-5, - .my-xl-5 { - margin-bottom: 3rem !important; - } - .ml-xl-5, - .mx-xl-5 { - margin-left: 3rem !important; - } - .p-xl-0 { - padding: 0 !important; - } - .pt-xl-0, - .py-xl-0 { - padding-top: 0 !important; - } - .pr-xl-0, - .px-xl-0 { - padding-right: 0 !important; - } - .pb-xl-0, - .py-xl-0 { - padding-bottom: 0 !important; - } - .pl-xl-0, - .px-xl-0 { - padding-left: 0 !important; - } - .p-xl-1 { - padding: 0.25rem !important; - } - .pt-xl-1, - .py-xl-1 { - padding-top: 0.25rem !important; - } - .pr-xl-1, - .px-xl-1 { - padding-right: 0.25rem !important; - } - .pb-xl-1, - .py-xl-1 { - padding-bottom: 0.25rem !important; - } - .pl-xl-1, - .px-xl-1 { - padding-left: 0.25rem !important; - } - .p-xl-2 { - padding: 0.5rem !important; - } - .pt-xl-2, - .py-xl-2 { - padding-top: 0.5rem !important; - } - .pr-xl-2, - .px-xl-2 { - padding-right: 0.5rem !important; - } - .pb-xl-2, - .py-xl-2 { - padding-bottom: 0.5rem !important; - } - .pl-xl-2, - .px-xl-2 { - padding-left: 0.5rem !important; - } - .p-xl-3 { - padding: 1rem !important; - } - .pt-xl-3, - .py-xl-3 { - padding-top: 1rem !important; - } - .pr-xl-3, - .px-xl-3 { - padding-right: 1rem !important; - } - .pb-xl-3, - .py-xl-3 { - padding-bottom: 1rem !important; - } - .pl-xl-3, - .px-xl-3 { - padding-left: 1rem !important; - } - .p-xl-4 { - padding: 1.5rem !important; - } - .pt-xl-4, - .py-xl-4 { - padding-top: 1.5rem !important; - } - .pr-xl-4, - .px-xl-4 { - padding-right: 1.5rem !important; - } - .pb-xl-4, - .py-xl-4 { - padding-bottom: 1.5rem !important; - } - .pl-xl-4, - .px-xl-4 { - padding-left: 1.5rem !important; - } - .p-xl-5 { - padding: 3rem !important; - } - .pt-xl-5, - .py-xl-5 { - padding-top: 3rem !important; - } - .pr-xl-5, - .px-xl-5 { - padding-right: 3rem !important; - } - .pb-xl-5, - .py-xl-5 { - padding-bottom: 3rem !important; - } - .pl-xl-5, - .px-xl-5 { - padding-left: 3rem !important; - } - .m-xl-n1 { - margin: -0.25rem !important; - } - .mt-xl-n1, - .my-xl-n1 { - margin-top: -0.25rem !important; - } - .mr-xl-n1, - .mx-xl-n1 { - margin-right: -0.25rem !important; - } - .mb-xl-n1, - .my-xl-n1 { - margin-bottom: -0.25rem !important; - } - .ml-xl-n1, - .mx-xl-n1 { - margin-left: -0.25rem !important; - } - .m-xl-n2 { - margin: -0.5rem !important; - } - .mt-xl-n2, - .my-xl-n2 { - margin-top: -0.5rem !important; - } - .mr-xl-n2, - .mx-xl-n2 { - margin-right: -0.5rem !important; - } - .mb-xl-n2, - .my-xl-n2 { - margin-bottom: -0.5rem !important; - } - .ml-xl-n2, - .mx-xl-n2 { - margin-left: -0.5rem !important; - } - .m-xl-n3 { - margin: -1rem !important; - } - .mt-xl-n3, - .my-xl-n3 { - margin-top: -1rem !important; - } - .mr-xl-n3, - .mx-xl-n3 { - margin-right: -1rem !important; - } - .mb-xl-n3, - .my-xl-n3 { - margin-bottom: -1rem !important; - } - .ml-xl-n3, - .mx-xl-n3 { - margin-left: -1rem !important; - } - .m-xl-n4 { - margin: -1.5rem !important; - } - .mt-xl-n4, - .my-xl-n4 { - margin-top: -1.5rem !important; - } - .mr-xl-n4, - .mx-xl-n4 { - margin-right: -1.5rem !important; - } - .mb-xl-n4, - .my-xl-n4 { - margin-bottom: -1.5rem !important; - } - .ml-xl-n4, - .mx-xl-n4 { - margin-left: -1.5rem !important; - } - .m-xl-n5 { - margin: -3rem !important; - } - .mt-xl-n5, - .my-xl-n5 { - margin-top: -3rem !important; - } - .mr-xl-n5, - .mx-xl-n5 { - margin-right: -3rem !important; - } - .mb-xl-n5, - .my-xl-n5 { - margin-bottom: -3rem !important; - } - .ml-xl-n5, - .mx-xl-n5 { - margin-left: -3rem !important; - } - .m-xl-auto { - margin: auto !important; - } - .mt-xl-auto, - .my-xl-auto { - margin-top: auto !important; - } - .mr-xl-auto, - .mx-xl-auto { - margin-right: auto !important; - } - .mb-xl-auto, - .my-xl-auto { - margin-bottom: auto !important; - } - .ml-xl-auto, - .mx-xl-auto { - margin-left: auto !important; - } -} -/*# sourceMappingURL=bootstrap-grid.css.map */ \ No newline at end of file diff --git a/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css b/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css deleted file mode 100644 index 09cf98693fe0..000000000000 --- a/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css +++ /dev/null @@ -1,331 +0,0 @@ -/*! - * Bootstrap Reboot v4.3.1 (https://getbootstrap.com/) - * Copyright 2011-2019 The Bootstrap Authors - * Copyright 2011-2019 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md) - */ -*, -*::before, -*::after { - box-sizing: border-box; -} - -html { - font-family: sans-serif; - line-height: 1.15; - -webkit-text-size-adjust: 100%; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); -} - -article, aside, figcaption, figure, footer, header, hgroup, main, nav, section { - display: block; -} - -body { - margin: 0; - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #212529; - text-align: left; - background-color: #fff; -} - -[tabindex="-1"]:focus { - outline: 0 !important; -} - -hr { - box-sizing: content-box; - height: 0; - overflow: visible; -} - -h1, h2, h3, h4, h5, h6 { - margin-top: 0; - margin-bottom: 0.5rem; -} - -p { - margin-top: 0; - margin-bottom: 1rem; -} - -abbr[title], -abbr[data-original-title] { - text-decoration: underline; - -webkit-text-decoration: underline dotted; - text-decoration: underline dotted; - cursor: help; - border-bottom: 0; - -webkit-text-decoration-skip-ink: none; - text-decoration-skip-ink: none; -} - -address { - margin-bottom: 1rem; - font-style: normal; - line-height: inherit; -} - -ol, -ul, -dl { - margin-top: 0; - margin-bottom: 1rem; -} - -ol ol, -ul ul, -ol ul, -ul ol { - margin-bottom: 0; -} - -dt { - font-weight: 700; -} - -dd { - margin-bottom: .5rem; - margin-left: 0; -} - -blockquote { - margin: 0 0 1rem; -} - -b, -strong { - font-weight: bolder; -} - -small { - font-size: 80%; -} - -sub, -sup { - position: relative; - font-size: 75%; - line-height: 0; - vertical-align: baseline; -} - -sub { - bottom: -.25em; -} - -sup { - top: -.5em; -} - -a { - color: #007bff; - text-decoration: none; - background-color: transparent; -} - -a:hover { - color: #0056b3; - text-decoration: underline; -} - -a:not([href]):not([tabindex]) { - color: inherit; - text-decoration: none; -} - -a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus { - color: inherit; - text-decoration: none; -} - -a:not([href]):not([tabindex]):focus { - outline: 0; -} - -pre, -code, -kbd, -samp { - font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; - font-size: 1em; -} - -pre { - margin-top: 0; - margin-bottom: 1rem; - overflow: auto; -} - -figure { - margin: 0 0 1rem; -} - -img { - vertical-align: middle; - border-style: none; -} - -svg { - overflow: hidden; - vertical-align: middle; -} - -table { - border-collapse: collapse; -} - -caption { - padding-top: 0.75rem; - padding-bottom: 0.75rem; - color: #6c757d; - text-align: left; - caption-side: bottom; -} - -th { - text-align: inherit; -} - -label { - display: inline-block; - margin-bottom: 0.5rem; -} - -button { - border-radius: 0; -} - -button:focus { - outline: 1px dotted; - outline: 5px auto -webkit-focus-ring-color; -} - -input, -button, -select, -optgroup, -textarea { - margin: 0; - font-family: inherit; - font-size: inherit; - line-height: inherit; -} - -button, -input { - overflow: visible; -} - -button, -select { - text-transform: none; -} - -select { - word-wrap: normal; -} - -button, -[type="button"], -[type="reset"], -[type="submit"] { - -webkit-appearance: button; -} - -button:not(:disabled), -[type="button"]:not(:disabled), -[type="reset"]:not(:disabled), -[type="submit"]:not(:disabled) { - cursor: pointer; -} - -button::-moz-focus-inner, -[type="button"]::-moz-focus-inner, -[type="reset"]::-moz-focus-inner, -[type="submit"]::-moz-focus-inner { - padding: 0; - border-style: none; -} - -input[type="radio"], -input[type="checkbox"] { - box-sizing: border-box; - padding: 0; -} - -input[type="date"], -input[type="time"], -input[type="datetime-local"], -input[type="month"] { - -webkit-appearance: listbox; -} - -textarea { - overflow: auto; - resize: vertical; -} - -fieldset { - min-width: 0; - padding: 0; - margin: 0; - border: 0; -} - -legend { - display: block; - width: 100%; - max-width: 100%; - padding: 0; - margin-bottom: .5rem; - font-size: 1.5rem; - line-height: inherit; - color: inherit; - white-space: normal; -} - -progress { - vertical-align: baseline; -} - -[type="number"]::-webkit-inner-spin-button, -[type="number"]::-webkit-outer-spin-button { - height: auto; -} - -[type="search"] { - outline-offset: -2px; - -webkit-appearance: none; -} - -[type="search"]::-webkit-search-decoration { - -webkit-appearance: none; -} - -::-webkit-file-upload-button { - font: inherit; - -webkit-appearance: button; -} - -output { - display: inline-block; -} - -summary { - display: list-item; - cursor: pointer; -} - -template { - display: none; -} - -[hidden] { - display: none !important; -} -/*# sourceMappingURL=bootstrap-reboot.css.map */ \ No newline at end of file diff --git a/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/wwwroot/lib/bootstrap/dist/css/bootstrap.css b/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/wwwroot/lib/bootstrap/dist/css/bootstrap.css deleted file mode 100644 index 8f4758923aa8..000000000000 --- a/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/wwwroot/lib/bootstrap/dist/css/bootstrap.css +++ /dev/null @@ -1,10038 +0,0 @@ -/*! - * Bootstrap v4.3.1 (https://getbootstrap.com/) - * Copyright 2011-2019 The Bootstrap Authors - * Copyright 2011-2019 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - */ -:root { - --blue: #007bff; - --indigo: #6610f2; - --purple: #6f42c1; - --pink: #e83e8c; - --red: #dc3545; - --orange: #fd7e14; - --yellow: #ffc107; - --green: #28a745; - --teal: #20c997; - --cyan: #17a2b8; - --white: #fff; - --gray: #6c757d; - --gray-dark: #343a40; - --primary: #007bff; - --secondary: #6c757d; - --success: #28a745; - --info: #17a2b8; - --warning: #ffc107; - --danger: #dc3545; - --light: #f8f9fa; - --dark: #343a40; - --breakpoint-xs: 0; - --breakpoint-sm: 576px; - --breakpoint-md: 768px; - --breakpoint-lg: 992px; - --breakpoint-xl: 1200px; - --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; - --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; -} - -*, -*::before, -*::after { - box-sizing: border-box; -} - -html { - font-family: sans-serif; - line-height: 1.15; - -webkit-text-size-adjust: 100%; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); -} - -article, aside, figcaption, figure, footer, header, hgroup, main, nav, section { - display: block; -} - -body { - margin: 0; - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #212529; - text-align: left; - background-color: #fff; -} - -[tabindex="-1"]:focus { - outline: 0 !important; -} - -hr { - box-sizing: content-box; - height: 0; - overflow: visible; -} - -h1, h2, h3, h4, h5, h6 { - margin-top: 0; - margin-bottom: 0.5rem; -} - -p { - margin-top: 0; - margin-bottom: 1rem; -} - -abbr[title], -abbr[data-original-title] { - text-decoration: underline; - -webkit-text-decoration: underline dotted; - text-decoration: underline dotted; - cursor: help; - border-bottom: 0; - -webkit-text-decoration-skip-ink: none; - text-decoration-skip-ink: none; -} - -address { - margin-bottom: 1rem; - font-style: normal; - line-height: inherit; -} - -ol, -ul, -dl { - margin-top: 0; - margin-bottom: 1rem; -} - -ol ol, -ul ul, -ol ul, -ul ol { - margin-bottom: 0; -} - -dt { - font-weight: 700; -} - -dd { - margin-bottom: .5rem; - margin-left: 0; -} - -blockquote { - margin: 0 0 1rem; -} - -b, -strong { - font-weight: bolder; -} - -small { - font-size: 80%; -} - -sub, -sup { - position: relative; - font-size: 75%; - line-height: 0; - vertical-align: baseline; -} - -sub { - bottom: -.25em; -} - -sup { - top: -.5em; -} - -a { - color: #007bff; - text-decoration: none; - background-color: transparent; -} - -a:hover { - color: #0056b3; - text-decoration: underline; -} - -a:not([href]):not([tabindex]) { - color: inherit; - text-decoration: none; -} - -a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus { - color: inherit; - text-decoration: none; -} - -a:not([href]):not([tabindex]):focus { - outline: 0; -} - -pre, -code, -kbd, -samp { - font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; - font-size: 1em; -} - -pre { - margin-top: 0; - margin-bottom: 1rem; - overflow: auto; -} - -figure { - margin: 0 0 1rem; -} - -img { - vertical-align: middle; - border-style: none; -} - -svg { - overflow: hidden; - vertical-align: middle; -} - -table { - border-collapse: collapse; -} - -caption { - padding-top: 0.75rem; - padding-bottom: 0.75rem; - color: #6c757d; - text-align: left; - caption-side: bottom; -} - -th { - text-align: inherit; -} - -label { - display: inline-block; - margin-bottom: 0.5rem; -} - -button { - border-radius: 0; -} - -button:focus { - outline: 1px dotted; - outline: 5px auto -webkit-focus-ring-color; -} - -input, -button, -select, -optgroup, -textarea { - margin: 0; - font-family: inherit; - font-size: inherit; - line-height: inherit; -} - -button, -input { - overflow: visible; -} - -button, -select { - text-transform: none; -} - -select { - word-wrap: normal; -} - -button, -[type="button"], -[type="reset"], -[type="submit"] { - -webkit-appearance: button; -} - -button:not(:disabled), -[type="button"]:not(:disabled), -[type="reset"]:not(:disabled), -[type="submit"]:not(:disabled) { - cursor: pointer; -} - -button::-moz-focus-inner, -[type="button"]::-moz-focus-inner, -[type="reset"]::-moz-focus-inner, -[type="submit"]::-moz-focus-inner { - padding: 0; - border-style: none; -} - -input[type="radio"], -input[type="checkbox"] { - box-sizing: border-box; - padding: 0; -} - -input[type="date"], -input[type="time"], -input[type="datetime-local"], -input[type="month"] { - -webkit-appearance: listbox; -} - -textarea { - overflow: auto; - resize: vertical; -} - -fieldset { - min-width: 0; - padding: 0; - margin: 0; - border: 0; -} - -legend { - display: block; - width: 100%; - max-width: 100%; - padding: 0; - margin-bottom: .5rem; - font-size: 1.5rem; - line-height: inherit; - color: inherit; - white-space: normal; -} - -progress { - vertical-align: baseline; -} - -[type="number"]::-webkit-inner-spin-button, -[type="number"]::-webkit-outer-spin-button { - height: auto; -} - -[type="search"] { - outline-offset: -2px; - -webkit-appearance: none; -} - -[type="search"]::-webkit-search-decoration { - -webkit-appearance: none; -} - -::-webkit-file-upload-button { - font: inherit; - -webkit-appearance: button; -} - -output { - display: inline-block; -} - -summary { - display: list-item; - cursor: pointer; -} - -template { - display: none; -} - -[hidden] { - display: none !important; -} - -h1, h2, h3, h4, h5, h6, -.h1, .h2, .h3, .h4, .h5, .h6 { - margin-bottom: 0.5rem; - font-weight: 500; - line-height: 1.2; -} - -h1, .h1 { - font-size: 2.5rem; -} - -h2, .h2 { - font-size: 2rem; -} - -h3, .h3 { - font-size: 1.75rem; -} - -h4, .h4 { - font-size: 1.5rem; -} - -h5, .h5 { - font-size: 1.25rem; -} - -h6, .h6 { - font-size: 1rem; -} - -.lead { - font-size: 1.25rem; - font-weight: 300; -} - -.display-1 { - font-size: 6rem; - font-weight: 300; - line-height: 1.2; -} - -.display-2 { - font-size: 5.5rem; - font-weight: 300; - line-height: 1.2; -} - -.display-3 { - font-size: 4.5rem; - font-weight: 300; - line-height: 1.2; -} - -.display-4 { - font-size: 3.5rem; - font-weight: 300; - line-height: 1.2; -} - -hr { - margin-top: 1rem; - margin-bottom: 1rem; - border: 0; - border-top: 1px solid rgba(0, 0, 0, 0.1); -} - -small, -.small { - font-size: 80%; - font-weight: 400; -} - -mark, -.mark { - padding: 0.2em; - background-color: #fcf8e3; -} - -.list-unstyled { - padding-left: 0; - list-style: none; -} - -.list-inline { - padding-left: 0; - list-style: none; -} - -.list-inline-item { - display: inline-block; -} - -.list-inline-item:not(:last-child) { - margin-right: 0.5rem; -} - -.initialism { - font-size: 90%; - text-transform: uppercase; -} - -.blockquote { - margin-bottom: 1rem; - font-size: 1.25rem; -} - -.blockquote-footer { - display: block; - font-size: 80%; - color: #6c757d; -} - -.blockquote-footer::before { - content: "\2014\00A0"; -} - -.img-fluid { - max-width: 100%; - height: auto; -} - -.img-thumbnail { - padding: 0.25rem; - background-color: #fff; - border: 1px solid #dee2e6; - border-radius: 0.25rem; - max-width: 100%; - height: auto; -} - -.figure { - display: inline-block; -} - -.figure-img { - margin-bottom: 0.5rem; - line-height: 1; -} - -.figure-caption { - font-size: 90%; - color: #6c757d; -} - -code { - font-size: 87.5%; - color: #e83e8c; - word-break: break-word; -} - -a > code { - color: inherit; -} - -kbd { - padding: 0.2rem 0.4rem; - font-size: 87.5%; - color: #fff; - background-color: #212529; - border-radius: 0.2rem; -} - -kbd kbd { - padding: 0; - font-size: 100%; - font-weight: 700; -} - -pre { - display: block; - font-size: 87.5%; - color: #212529; -} - -pre code { - font-size: inherit; - color: inherit; - word-break: normal; -} - -.pre-scrollable { - max-height: 340px; - overflow-y: scroll; -} - -.container { - width: 100%; - padding-right: 15px; - padding-left: 15px; - margin-right: auto; - margin-left: auto; -} - -@media (min-width: 576px) { - .container { - max-width: 540px; - } -} - -@media (min-width: 768px) { - .container { - max-width: 720px; - } -} - -@media (min-width: 992px) { - .container { - max-width: 960px; - } -} - -@media (min-width: 1200px) { - .container { - max-width: 1140px; - } -} - -.container-fluid { - width: 100%; - padding-right: 15px; - padding-left: 15px; - margin-right: auto; - margin-left: auto; -} - -.row { - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -15px; - margin-left: -15px; -} - -.no-gutters { - margin-right: 0; - margin-left: 0; -} - -.no-gutters > .col, -.no-gutters > [class*="col-"] { - padding-right: 0; - padding-left: 0; -} - -.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, -.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, -.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, -.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, -.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, -.col-xl-auto { - position: relative; - width: 100%; - padding-right: 15px; - padding-left: 15px; -} - -.col { - -ms-flex-preferred-size: 0; - flex-basis: 0; - -ms-flex-positive: 1; - flex-grow: 1; - max-width: 100%; -} - -.col-auto { - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: auto; - max-width: 100%; -} - -.col-1 { - -ms-flex: 0 0 8.333333%; - flex: 0 0 8.333333%; - max-width: 8.333333%; -} - -.col-2 { - -ms-flex: 0 0 16.666667%; - flex: 0 0 16.666667%; - max-width: 16.666667%; -} - -.col-3 { - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25%; -} - -.col-4 { - -ms-flex: 0 0 33.333333%; - flex: 0 0 33.333333%; - max-width: 33.333333%; -} - -.col-5 { - -ms-flex: 0 0 41.666667%; - flex: 0 0 41.666667%; - max-width: 41.666667%; -} - -.col-6 { - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50%; -} - -.col-7 { - -ms-flex: 0 0 58.333333%; - flex: 0 0 58.333333%; - max-width: 58.333333%; -} - -.col-8 { - -ms-flex: 0 0 66.666667%; - flex: 0 0 66.666667%; - max-width: 66.666667%; -} - -.col-9 { - -ms-flex: 0 0 75%; - flex: 0 0 75%; - max-width: 75%; -} - -.col-10 { - -ms-flex: 0 0 83.333333%; - flex: 0 0 83.333333%; - max-width: 83.333333%; -} - -.col-11 { - -ms-flex: 0 0 91.666667%; - flex: 0 0 91.666667%; - max-width: 91.666667%; -} - -.col-12 { - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100%; -} - -.order-first { - -ms-flex-order: -1; - order: -1; -} - -.order-last { - -ms-flex-order: 13; - order: 13; -} - -.order-0 { - -ms-flex-order: 0; - order: 0; -} - -.order-1 { - -ms-flex-order: 1; - order: 1; -} - -.order-2 { - -ms-flex-order: 2; - order: 2; -} - -.order-3 { - -ms-flex-order: 3; - order: 3; -} - -.order-4 { - -ms-flex-order: 4; - order: 4; -} - -.order-5 { - -ms-flex-order: 5; - order: 5; -} - -.order-6 { - -ms-flex-order: 6; - order: 6; -} - -.order-7 { - -ms-flex-order: 7; - order: 7; -} - -.order-8 { - -ms-flex-order: 8; - order: 8; -} - -.order-9 { - -ms-flex-order: 9; - order: 9; -} - -.order-10 { - -ms-flex-order: 10; - order: 10; -} - -.order-11 { - -ms-flex-order: 11; - order: 11; -} - -.order-12 { - -ms-flex-order: 12; - order: 12; -} - -.offset-1 { - margin-left: 8.333333%; -} - -.offset-2 { - margin-left: 16.666667%; -} - -.offset-3 { - margin-left: 25%; -} - -.offset-4 { - margin-left: 33.333333%; -} - -.offset-5 { - margin-left: 41.666667%; -} - -.offset-6 { - margin-left: 50%; -} - -.offset-7 { - margin-left: 58.333333%; -} - -.offset-8 { - margin-left: 66.666667%; -} - -.offset-9 { - margin-left: 75%; -} - -.offset-10 { - margin-left: 83.333333%; -} - -.offset-11 { - margin-left: 91.666667%; -} - -@media (min-width: 576px) { - .col-sm { - -ms-flex-preferred-size: 0; - flex-basis: 0; - -ms-flex-positive: 1; - flex-grow: 1; - max-width: 100%; - } - .col-sm-auto { - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: auto; - max-width: 100%; - } - .col-sm-1 { - -ms-flex: 0 0 8.333333%; - flex: 0 0 8.333333%; - max-width: 8.333333%; - } - .col-sm-2 { - -ms-flex: 0 0 16.666667%; - flex: 0 0 16.666667%; - max-width: 16.666667%; - } - .col-sm-3 { - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25%; - } - .col-sm-4 { - -ms-flex: 0 0 33.333333%; - flex: 0 0 33.333333%; - max-width: 33.333333%; - } - .col-sm-5 { - -ms-flex: 0 0 41.666667%; - flex: 0 0 41.666667%; - max-width: 41.666667%; - } - .col-sm-6 { - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50%; - } - .col-sm-7 { - -ms-flex: 0 0 58.333333%; - flex: 0 0 58.333333%; - max-width: 58.333333%; - } - .col-sm-8 { - -ms-flex: 0 0 66.666667%; - flex: 0 0 66.666667%; - max-width: 66.666667%; - } - .col-sm-9 { - -ms-flex: 0 0 75%; - flex: 0 0 75%; - max-width: 75%; - } - .col-sm-10 { - -ms-flex: 0 0 83.333333%; - flex: 0 0 83.333333%; - max-width: 83.333333%; - } - .col-sm-11 { - -ms-flex: 0 0 91.666667%; - flex: 0 0 91.666667%; - max-width: 91.666667%; - } - .col-sm-12 { - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100%; - } - .order-sm-first { - -ms-flex-order: -1; - order: -1; - } - .order-sm-last { - -ms-flex-order: 13; - order: 13; - } - .order-sm-0 { - -ms-flex-order: 0; - order: 0; - } - .order-sm-1 { - -ms-flex-order: 1; - order: 1; - } - .order-sm-2 { - -ms-flex-order: 2; - order: 2; - } - .order-sm-3 { - -ms-flex-order: 3; - order: 3; - } - .order-sm-4 { - -ms-flex-order: 4; - order: 4; - } - .order-sm-5 { - -ms-flex-order: 5; - order: 5; - } - .order-sm-6 { - -ms-flex-order: 6; - order: 6; - } - .order-sm-7 { - -ms-flex-order: 7; - order: 7; - } - .order-sm-8 { - -ms-flex-order: 8; - order: 8; - } - .order-sm-9 { - -ms-flex-order: 9; - order: 9; - } - .order-sm-10 { - -ms-flex-order: 10; - order: 10; - } - .order-sm-11 { - -ms-flex-order: 11; - order: 11; - } - .order-sm-12 { - -ms-flex-order: 12; - order: 12; - } - .offset-sm-0 { - margin-left: 0; - } - .offset-sm-1 { - margin-left: 8.333333%; - } - .offset-sm-2 { - margin-left: 16.666667%; - } - .offset-sm-3 { - margin-left: 25%; - } - .offset-sm-4 { - margin-left: 33.333333%; - } - .offset-sm-5 { - margin-left: 41.666667%; - } - .offset-sm-6 { - margin-left: 50%; - } - .offset-sm-7 { - margin-left: 58.333333%; - } - .offset-sm-8 { - margin-left: 66.666667%; - } - .offset-sm-9 { - margin-left: 75%; - } - .offset-sm-10 { - margin-left: 83.333333%; - } - .offset-sm-11 { - margin-left: 91.666667%; - } -} - -@media (min-width: 768px) { - .col-md { - -ms-flex-preferred-size: 0; - flex-basis: 0; - -ms-flex-positive: 1; - flex-grow: 1; - max-width: 100%; - } - .col-md-auto { - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: auto; - max-width: 100%; - } - .col-md-1 { - -ms-flex: 0 0 8.333333%; - flex: 0 0 8.333333%; - max-width: 8.333333%; - } - .col-md-2 { - -ms-flex: 0 0 16.666667%; - flex: 0 0 16.666667%; - max-width: 16.666667%; - } - .col-md-3 { - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25%; - } - .col-md-4 { - -ms-flex: 0 0 33.333333%; - flex: 0 0 33.333333%; - max-width: 33.333333%; - } - .col-md-5 { - -ms-flex: 0 0 41.666667%; - flex: 0 0 41.666667%; - max-width: 41.666667%; - } - .col-md-6 { - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50%; - } - .col-md-7 { - -ms-flex: 0 0 58.333333%; - flex: 0 0 58.333333%; - max-width: 58.333333%; - } - .col-md-8 { - -ms-flex: 0 0 66.666667%; - flex: 0 0 66.666667%; - max-width: 66.666667%; - } - .col-md-9 { - -ms-flex: 0 0 75%; - flex: 0 0 75%; - max-width: 75%; - } - .col-md-10 { - -ms-flex: 0 0 83.333333%; - flex: 0 0 83.333333%; - max-width: 83.333333%; - } - .col-md-11 { - -ms-flex: 0 0 91.666667%; - flex: 0 0 91.666667%; - max-width: 91.666667%; - } - .col-md-12 { - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100%; - } - .order-md-first { - -ms-flex-order: -1; - order: -1; - } - .order-md-last { - -ms-flex-order: 13; - order: 13; - } - .order-md-0 { - -ms-flex-order: 0; - order: 0; - } - .order-md-1 { - -ms-flex-order: 1; - order: 1; - } - .order-md-2 { - -ms-flex-order: 2; - order: 2; - } - .order-md-3 { - -ms-flex-order: 3; - order: 3; - } - .order-md-4 { - -ms-flex-order: 4; - order: 4; - } - .order-md-5 { - -ms-flex-order: 5; - order: 5; - } - .order-md-6 { - -ms-flex-order: 6; - order: 6; - } - .order-md-7 { - -ms-flex-order: 7; - order: 7; - } - .order-md-8 { - -ms-flex-order: 8; - order: 8; - } - .order-md-9 { - -ms-flex-order: 9; - order: 9; - } - .order-md-10 { - -ms-flex-order: 10; - order: 10; - } - .order-md-11 { - -ms-flex-order: 11; - order: 11; - } - .order-md-12 { - -ms-flex-order: 12; - order: 12; - } - .offset-md-0 { - margin-left: 0; - } - .offset-md-1 { - margin-left: 8.333333%; - } - .offset-md-2 { - margin-left: 16.666667%; - } - .offset-md-3 { - margin-left: 25%; - } - .offset-md-4 { - margin-left: 33.333333%; - } - .offset-md-5 { - margin-left: 41.666667%; - } - .offset-md-6 { - margin-left: 50%; - } - .offset-md-7 { - margin-left: 58.333333%; - } - .offset-md-8 { - margin-left: 66.666667%; - } - .offset-md-9 { - margin-left: 75%; - } - .offset-md-10 { - margin-left: 83.333333%; - } - .offset-md-11 { - margin-left: 91.666667%; - } -} - -@media (min-width: 992px) { - .col-lg { - -ms-flex-preferred-size: 0; - flex-basis: 0; - -ms-flex-positive: 1; - flex-grow: 1; - max-width: 100%; - } - .col-lg-auto { - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: auto; - max-width: 100%; - } - .col-lg-1 { - -ms-flex: 0 0 8.333333%; - flex: 0 0 8.333333%; - max-width: 8.333333%; - } - .col-lg-2 { - -ms-flex: 0 0 16.666667%; - flex: 0 0 16.666667%; - max-width: 16.666667%; - } - .col-lg-3 { - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25%; - } - .col-lg-4 { - -ms-flex: 0 0 33.333333%; - flex: 0 0 33.333333%; - max-width: 33.333333%; - } - .col-lg-5 { - -ms-flex: 0 0 41.666667%; - flex: 0 0 41.666667%; - max-width: 41.666667%; - } - .col-lg-6 { - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50%; - } - .col-lg-7 { - -ms-flex: 0 0 58.333333%; - flex: 0 0 58.333333%; - max-width: 58.333333%; - } - .col-lg-8 { - -ms-flex: 0 0 66.666667%; - flex: 0 0 66.666667%; - max-width: 66.666667%; - } - .col-lg-9 { - -ms-flex: 0 0 75%; - flex: 0 0 75%; - max-width: 75%; - } - .col-lg-10 { - -ms-flex: 0 0 83.333333%; - flex: 0 0 83.333333%; - max-width: 83.333333%; - } - .col-lg-11 { - -ms-flex: 0 0 91.666667%; - flex: 0 0 91.666667%; - max-width: 91.666667%; - } - .col-lg-12 { - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100%; - } - .order-lg-first { - -ms-flex-order: -1; - order: -1; - } - .order-lg-last { - -ms-flex-order: 13; - order: 13; - } - .order-lg-0 { - -ms-flex-order: 0; - order: 0; - } - .order-lg-1 { - -ms-flex-order: 1; - order: 1; - } - .order-lg-2 { - -ms-flex-order: 2; - order: 2; - } - .order-lg-3 { - -ms-flex-order: 3; - order: 3; - } - .order-lg-4 { - -ms-flex-order: 4; - order: 4; - } - .order-lg-5 { - -ms-flex-order: 5; - order: 5; - } - .order-lg-6 { - -ms-flex-order: 6; - order: 6; - } - .order-lg-7 { - -ms-flex-order: 7; - order: 7; - } - .order-lg-8 { - -ms-flex-order: 8; - order: 8; - } - .order-lg-9 { - -ms-flex-order: 9; - order: 9; - } - .order-lg-10 { - -ms-flex-order: 10; - order: 10; - } - .order-lg-11 { - -ms-flex-order: 11; - order: 11; - } - .order-lg-12 { - -ms-flex-order: 12; - order: 12; - } - .offset-lg-0 { - margin-left: 0; - } - .offset-lg-1 { - margin-left: 8.333333%; - } - .offset-lg-2 { - margin-left: 16.666667%; - } - .offset-lg-3 { - margin-left: 25%; - } - .offset-lg-4 { - margin-left: 33.333333%; - } - .offset-lg-5 { - margin-left: 41.666667%; - } - .offset-lg-6 { - margin-left: 50%; - } - .offset-lg-7 { - margin-left: 58.333333%; - } - .offset-lg-8 { - margin-left: 66.666667%; - } - .offset-lg-9 { - margin-left: 75%; - } - .offset-lg-10 { - margin-left: 83.333333%; - } - .offset-lg-11 { - margin-left: 91.666667%; - } -} - -@media (min-width: 1200px) { - .col-xl { - -ms-flex-preferred-size: 0; - flex-basis: 0; - -ms-flex-positive: 1; - flex-grow: 1; - max-width: 100%; - } - .col-xl-auto { - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: auto; - max-width: 100%; - } - .col-xl-1 { - -ms-flex: 0 0 8.333333%; - flex: 0 0 8.333333%; - max-width: 8.333333%; - } - .col-xl-2 { - -ms-flex: 0 0 16.666667%; - flex: 0 0 16.666667%; - max-width: 16.666667%; - } - .col-xl-3 { - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25%; - } - .col-xl-4 { - -ms-flex: 0 0 33.333333%; - flex: 0 0 33.333333%; - max-width: 33.333333%; - } - .col-xl-5 { - -ms-flex: 0 0 41.666667%; - flex: 0 0 41.666667%; - max-width: 41.666667%; - } - .col-xl-6 { - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50%; - } - .col-xl-7 { - -ms-flex: 0 0 58.333333%; - flex: 0 0 58.333333%; - max-width: 58.333333%; - } - .col-xl-8 { - -ms-flex: 0 0 66.666667%; - flex: 0 0 66.666667%; - max-width: 66.666667%; - } - .col-xl-9 { - -ms-flex: 0 0 75%; - flex: 0 0 75%; - max-width: 75%; - } - .col-xl-10 { - -ms-flex: 0 0 83.333333%; - flex: 0 0 83.333333%; - max-width: 83.333333%; - } - .col-xl-11 { - -ms-flex: 0 0 91.666667%; - flex: 0 0 91.666667%; - max-width: 91.666667%; - } - .col-xl-12 { - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100%; - } - .order-xl-first { - -ms-flex-order: -1; - order: -1; - } - .order-xl-last { - -ms-flex-order: 13; - order: 13; - } - .order-xl-0 { - -ms-flex-order: 0; - order: 0; - } - .order-xl-1 { - -ms-flex-order: 1; - order: 1; - } - .order-xl-2 { - -ms-flex-order: 2; - order: 2; - } - .order-xl-3 { - -ms-flex-order: 3; - order: 3; - } - .order-xl-4 { - -ms-flex-order: 4; - order: 4; - } - .order-xl-5 { - -ms-flex-order: 5; - order: 5; - } - .order-xl-6 { - -ms-flex-order: 6; - order: 6; - } - .order-xl-7 { - -ms-flex-order: 7; - order: 7; - } - .order-xl-8 { - -ms-flex-order: 8; - order: 8; - } - .order-xl-9 { - -ms-flex-order: 9; - order: 9; - } - .order-xl-10 { - -ms-flex-order: 10; - order: 10; - } - .order-xl-11 { - -ms-flex-order: 11; - order: 11; - } - .order-xl-12 { - -ms-flex-order: 12; - order: 12; - } - .offset-xl-0 { - margin-left: 0; - } - .offset-xl-1 { - margin-left: 8.333333%; - } - .offset-xl-2 { - margin-left: 16.666667%; - } - .offset-xl-3 { - margin-left: 25%; - } - .offset-xl-4 { - margin-left: 33.333333%; - } - .offset-xl-5 { - margin-left: 41.666667%; - } - .offset-xl-6 { - margin-left: 50%; - } - .offset-xl-7 { - margin-left: 58.333333%; - } - .offset-xl-8 { - margin-left: 66.666667%; - } - .offset-xl-9 { - margin-left: 75%; - } - .offset-xl-10 { - margin-left: 83.333333%; - } - .offset-xl-11 { - margin-left: 91.666667%; - } -} - -.table { - width: 100%; - margin-bottom: 1rem; - color: #212529; -} - -.table th, -.table td { - padding: 0.75rem; - vertical-align: top; - border-top: 1px solid #dee2e6; -} - -.table thead th { - vertical-align: bottom; - border-bottom: 2px solid #dee2e6; -} - -.table tbody + tbody { - border-top: 2px solid #dee2e6; -} - -.table-sm th, -.table-sm td { - padding: 0.3rem; -} - -.table-bordered { - border: 1px solid #dee2e6; -} - -.table-bordered th, -.table-bordered td { - border: 1px solid #dee2e6; -} - -.table-bordered thead th, -.table-bordered thead td { - border-bottom-width: 2px; -} - -.table-borderless th, -.table-borderless td, -.table-borderless thead th, -.table-borderless tbody + tbody { - border: 0; -} - -.table-striped tbody tr:nth-of-type(odd) { - background-color: rgba(0, 0, 0, 0.05); -} - -.table-hover tbody tr:hover { - color: #212529; - background-color: rgba(0, 0, 0, 0.075); -} - -.table-primary, -.table-primary > th, -.table-primary > td { - background-color: #b8daff; -} - -.table-primary th, -.table-primary td, -.table-primary thead th, -.table-primary tbody + tbody { - border-color: #7abaff; -} - -.table-hover .table-primary:hover { - background-color: #9fcdff; -} - -.table-hover .table-primary:hover > td, -.table-hover .table-primary:hover > th { - background-color: #9fcdff; -} - -.table-secondary, -.table-secondary > th, -.table-secondary > td { - background-color: #d6d8db; -} - -.table-secondary th, -.table-secondary td, -.table-secondary thead th, -.table-secondary tbody + tbody { - border-color: #b3b7bb; -} - -.table-hover .table-secondary:hover { - background-color: #c8cbcf; -} - -.table-hover .table-secondary:hover > td, -.table-hover .table-secondary:hover > th { - background-color: #c8cbcf; -} - -.table-success, -.table-success > th, -.table-success > td { - background-color: #c3e6cb; -} - -.table-success th, -.table-success td, -.table-success thead th, -.table-success tbody + tbody { - border-color: #8fd19e; -} - -.table-hover .table-success:hover { - background-color: #b1dfbb; -} - -.table-hover .table-success:hover > td, -.table-hover .table-success:hover > th { - background-color: #b1dfbb; -} - -.table-info, -.table-info > th, -.table-info > td { - background-color: #bee5eb; -} - -.table-info th, -.table-info td, -.table-info thead th, -.table-info tbody + tbody { - border-color: #86cfda; -} - -.table-hover .table-info:hover { - background-color: #abdde5; -} - -.table-hover .table-info:hover > td, -.table-hover .table-info:hover > th { - background-color: #abdde5; -} - -.table-warning, -.table-warning > th, -.table-warning > td { - background-color: #ffeeba; -} - -.table-warning th, -.table-warning td, -.table-warning thead th, -.table-warning tbody + tbody { - border-color: #ffdf7e; -} - -.table-hover .table-warning:hover { - background-color: #ffe8a1; -} - -.table-hover .table-warning:hover > td, -.table-hover .table-warning:hover > th { - background-color: #ffe8a1; -} - -.table-danger, -.table-danger > th, -.table-danger > td { - background-color: #f5c6cb; -} - -.table-danger th, -.table-danger td, -.table-danger thead th, -.table-danger tbody + tbody { - border-color: #ed969e; -} - -.table-hover .table-danger:hover { - background-color: #f1b0b7; -} - -.table-hover .table-danger:hover > td, -.table-hover .table-danger:hover > th { - background-color: #f1b0b7; -} - -.table-light, -.table-light > th, -.table-light > td { - background-color: #fdfdfe; -} - -.table-light th, -.table-light td, -.table-light thead th, -.table-light tbody + tbody { - border-color: #fbfcfc; -} - -.table-hover .table-light:hover { - background-color: #ececf6; -} - -.table-hover .table-light:hover > td, -.table-hover .table-light:hover > th { - background-color: #ececf6; -} - -.table-dark, -.table-dark > th, -.table-dark > td { - background-color: #c6c8ca; -} - -.table-dark th, -.table-dark td, -.table-dark thead th, -.table-dark tbody + tbody { - border-color: #95999c; -} - -.table-hover .table-dark:hover { - background-color: #b9bbbe; -} - -.table-hover .table-dark:hover > td, -.table-hover .table-dark:hover > th { - background-color: #b9bbbe; -} - -.table-active, -.table-active > th, -.table-active > td { - background-color: rgba(0, 0, 0, 0.075); -} - -.table-hover .table-active:hover { - background-color: rgba(0, 0, 0, 0.075); -} - -.table-hover .table-active:hover > td, -.table-hover .table-active:hover > th { - background-color: rgba(0, 0, 0, 0.075); -} - -.table .thead-dark th { - color: #fff; - background-color: #343a40; - border-color: #454d55; -} - -.table .thead-light th { - color: #495057; - background-color: #e9ecef; - border-color: #dee2e6; -} - -.table-dark { - color: #fff; - background-color: #343a40; -} - -.table-dark th, -.table-dark td, -.table-dark thead th { - border-color: #454d55; -} - -.table-dark.table-bordered { - border: 0; -} - -.table-dark.table-striped tbody tr:nth-of-type(odd) { - background-color: rgba(255, 255, 255, 0.05); -} - -.table-dark.table-hover tbody tr:hover { - color: #fff; - background-color: rgba(255, 255, 255, 0.075); -} - -@media (max-width: 575.98px) { - .table-responsive-sm { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; - } - .table-responsive-sm > .table-bordered { - border: 0; - } -} - -@media (max-width: 767.98px) { - .table-responsive-md { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; - } - .table-responsive-md > .table-bordered { - border: 0; - } -} - -@media (max-width: 991.98px) { - .table-responsive-lg { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; - } - .table-responsive-lg > .table-bordered { - border: 0; - } -} - -@media (max-width: 1199.98px) { - .table-responsive-xl { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; - } - .table-responsive-xl > .table-bordered { - border: 0; - } -} - -.table-responsive { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; -} - -.table-responsive > .table-bordered { - border: 0; -} - -.form-control { - display: block; - width: 100%; - height: calc(1.5em + 0.75rem + 2px); - padding: 0.375rem 0.75rem; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #495057; - background-color: #fff; - background-clip: padding-box; - border: 1px solid #ced4da; - border-radius: 0.25rem; - transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; -} - -@media (prefers-reduced-motion: reduce) { - .form-control { - transition: none; - } -} - -.form-control::-ms-expand { - background-color: transparent; - border: 0; -} - -.form-control:focus { - color: #495057; - background-color: #fff; - border-color: #80bdff; - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); -} - -.form-control::-webkit-input-placeholder { - color: #6c757d; - opacity: 1; -} - -.form-control::-moz-placeholder { - color: #6c757d; - opacity: 1; -} - -.form-control:-ms-input-placeholder { - color: #6c757d; - opacity: 1; -} - -.form-control::-ms-input-placeholder { - color: #6c757d; - opacity: 1; -} - -.form-control::placeholder { - color: #6c757d; - opacity: 1; -} - -.form-control:disabled, .form-control[readonly] { - background-color: #e9ecef; - opacity: 1; -} - -select.form-control:focus::-ms-value { - color: #495057; - background-color: #fff; -} - -.form-control-file, -.form-control-range { - display: block; - width: 100%; -} - -.col-form-label { - padding-top: calc(0.375rem + 1px); - padding-bottom: calc(0.375rem + 1px); - margin-bottom: 0; - font-size: inherit; - line-height: 1.5; -} - -.col-form-label-lg { - padding-top: calc(0.5rem + 1px); - padding-bottom: calc(0.5rem + 1px); - font-size: 1.25rem; - line-height: 1.5; -} - -.col-form-label-sm { - padding-top: calc(0.25rem + 1px); - padding-bottom: calc(0.25rem + 1px); - font-size: 0.875rem; - line-height: 1.5; -} - -.form-control-plaintext { - display: block; - width: 100%; - padding-top: 0.375rem; - padding-bottom: 0.375rem; - margin-bottom: 0; - line-height: 1.5; - color: #212529; - background-color: transparent; - border: solid transparent; - border-width: 1px 0; -} - -.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg { - padding-right: 0; - padding-left: 0; -} - -.form-control-sm { - height: calc(1.5em + 0.5rem + 2px); - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - line-height: 1.5; - border-radius: 0.2rem; -} - -.form-control-lg { - height: calc(1.5em + 1rem + 2px); - padding: 0.5rem 1rem; - font-size: 1.25rem; - line-height: 1.5; - border-radius: 0.3rem; -} - -select.form-control[size], select.form-control[multiple] { - height: auto; -} - -textarea.form-control { - height: auto; -} - -.form-group { - margin-bottom: 1rem; -} - -.form-text { - display: block; - margin-top: 0.25rem; -} - -.form-row { - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -5px; - margin-left: -5px; -} - -.form-row > .col, -.form-row > [class*="col-"] { - padding-right: 5px; - padding-left: 5px; -} - -.form-check { - position: relative; - display: block; - padding-left: 1.25rem; -} - -.form-check-input { - position: absolute; - margin-top: 0.3rem; - margin-left: -1.25rem; -} - -.form-check-input:disabled ~ .form-check-label { - color: #6c757d; -} - -.form-check-label { - margin-bottom: 0; -} - -.form-check-inline { - display: -ms-inline-flexbox; - display: inline-flex; - -ms-flex-align: center; - align-items: center; - padding-left: 0; - margin-right: 0.75rem; -} - -.form-check-inline .form-check-input { - position: static; - margin-top: 0; - margin-right: 0.3125rem; - margin-left: 0; -} - -.valid-feedback { - display: none; - width: 100%; - margin-top: 0.25rem; - font-size: 80%; - color: #28a745; -} - -.valid-tooltip { - position: absolute; - top: 100%; - z-index: 5; - display: none; - max-width: 100%; - padding: 0.25rem 0.5rem; - margin-top: .1rem; - font-size: 0.875rem; - line-height: 1.5; - color: #fff; - background-color: rgba(40, 167, 69, 0.9); - border-radius: 0.25rem; -} - -.was-validated .form-control:valid, .form-control.is-valid { - border-color: #28a745; - padding-right: calc(1.5em + 0.75rem); - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e"); - background-repeat: no-repeat; - background-position: center right calc(0.375em + 0.1875rem); - background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); -} - -.was-validated .form-control:valid:focus, .form-control.is-valid:focus { - border-color: #28a745; - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); -} - -.was-validated .form-control:valid ~ .valid-feedback, -.was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback, -.form-control.is-valid ~ .valid-tooltip { - display: block; -} - -.was-validated textarea.form-control:valid, textarea.form-control.is-valid { - padding-right: calc(1.5em + 0.75rem); - background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); -} - -.was-validated .custom-select:valid, .custom-select.is-valid { - border-color: #28a745; - padding-right: calc((1em + 0.75rem) * 3 / 4 + 1.75rem); - background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); -} - -.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus { - border-color: #28a745; - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); -} - -.was-validated .custom-select:valid ~ .valid-feedback, -.was-validated .custom-select:valid ~ .valid-tooltip, .custom-select.is-valid ~ .valid-feedback, -.custom-select.is-valid ~ .valid-tooltip { - display: block; -} - -.was-validated .form-control-file:valid ~ .valid-feedback, -.was-validated .form-control-file:valid ~ .valid-tooltip, .form-control-file.is-valid ~ .valid-feedback, -.form-control-file.is-valid ~ .valid-tooltip { - display: block; -} - -.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label { - color: #28a745; -} - -.was-validated .form-check-input:valid ~ .valid-feedback, -.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback, -.form-check-input.is-valid ~ .valid-tooltip { - display: block; -} - -.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label { - color: #28a745; -} - -.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before { - border-color: #28a745; -} - -.was-validated .custom-control-input:valid ~ .valid-feedback, -.was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback, -.custom-control-input.is-valid ~ .valid-tooltip { - display: block; -} - -.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before { - border-color: #34ce57; - background-color: #34ce57; -} - -.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before { - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); -} - -.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before { - border-color: #28a745; -} - -.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label { - border-color: #28a745; -} - -.was-validated .custom-file-input:valid ~ .valid-feedback, -.was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback, -.custom-file-input.is-valid ~ .valid-tooltip { - display: block; -} - -.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label { - border-color: #28a745; - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); -} - -.invalid-feedback { - display: none; - width: 100%; - margin-top: 0.25rem; - font-size: 80%; - color: #dc3545; -} - -.invalid-tooltip { - position: absolute; - top: 100%; - z-index: 5; - display: none; - max-width: 100%; - padding: 0.25rem 0.5rem; - margin-top: .1rem; - font-size: 0.875rem; - line-height: 1.5; - color: #fff; - background-color: rgba(220, 53, 69, 0.9); - border-radius: 0.25rem; -} - -.was-validated .form-control:invalid, .form-control.is-invalid { - border-color: #dc3545; - padding-right: calc(1.5em + 0.75rem); - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E"); - background-repeat: no-repeat; - background-position: center right calc(0.375em + 0.1875rem); - background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); -} - -.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus { - border-color: #dc3545; - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); -} - -.was-validated .form-control:invalid ~ .invalid-feedback, -.was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback, -.form-control.is-invalid ~ .invalid-tooltip { - display: block; -} - -.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid { - padding-right: calc(1.5em + 0.75rem); - background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); -} - -.was-validated .custom-select:invalid, .custom-select.is-invalid { - border-color: #dc3545; - padding-right: calc((1em + 0.75rem) * 3 / 4 + 1.75rem); - background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); -} - -.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus { - border-color: #dc3545; - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); -} - -.was-validated .custom-select:invalid ~ .invalid-feedback, -.was-validated .custom-select:invalid ~ .invalid-tooltip, .custom-select.is-invalid ~ .invalid-feedback, -.custom-select.is-invalid ~ .invalid-tooltip { - display: block; -} - -.was-validated .form-control-file:invalid ~ .invalid-feedback, -.was-validated .form-control-file:invalid ~ .invalid-tooltip, .form-control-file.is-invalid ~ .invalid-feedback, -.form-control-file.is-invalid ~ .invalid-tooltip { - display: block; -} - -.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label { - color: #dc3545; -} - -.was-validated .form-check-input:invalid ~ .invalid-feedback, -.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback, -.form-check-input.is-invalid ~ .invalid-tooltip { - display: block; -} - -.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label { - color: #dc3545; -} - -.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before { - border-color: #dc3545; -} - -.was-validated .custom-control-input:invalid ~ .invalid-feedback, -.was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback, -.custom-control-input.is-invalid ~ .invalid-tooltip { - display: block; -} - -.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before { - border-color: #e4606d; - background-color: #e4606d; -} - -.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before { - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); -} - -.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before { - border-color: #dc3545; -} - -.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label { - border-color: #dc3545; -} - -.was-validated .custom-file-input:invalid ~ .invalid-feedback, -.was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback, -.custom-file-input.is-invalid ~ .invalid-tooltip { - display: block; -} - -.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label { - border-color: #dc3545; - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); -} - -.form-inline { - display: -ms-flexbox; - display: flex; - -ms-flex-flow: row wrap; - flex-flow: row wrap; - -ms-flex-align: center; - align-items: center; -} - -.form-inline .form-check { - width: 100%; -} - -@media (min-width: 576px) { - .form-inline label { - display: -ms-flexbox; - display: flex; - -ms-flex-align: center; - align-items: center; - -ms-flex-pack: center; - justify-content: center; - margin-bottom: 0; - } - .form-inline .form-group { - display: -ms-flexbox; - display: flex; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - -ms-flex-flow: row wrap; - flex-flow: row wrap; - -ms-flex-align: center; - align-items: center; - margin-bottom: 0; - } - .form-inline .form-control { - display: inline-block; - width: auto; - vertical-align: middle; - } - .form-inline .form-control-plaintext { - display: inline-block; - } - .form-inline .input-group, - .form-inline .custom-select { - width: auto; - } - .form-inline .form-check { - display: -ms-flexbox; - display: flex; - -ms-flex-align: center; - align-items: center; - -ms-flex-pack: center; - justify-content: center; - width: auto; - padding-left: 0; - } - .form-inline .form-check-input { - position: relative; - -ms-flex-negative: 0; - flex-shrink: 0; - margin-top: 0; - margin-right: 0.25rem; - margin-left: 0; - } - .form-inline .custom-control { - -ms-flex-align: center; - align-items: center; - -ms-flex-pack: center; - justify-content: center; - } - .form-inline .custom-control-label { - margin-bottom: 0; - } -} - -.btn { - display: inline-block; - font-weight: 400; - color: #212529; - text-align: center; - vertical-align: middle; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - background-color: transparent; - border: 1px solid transparent; - padding: 0.375rem 0.75rem; - font-size: 1rem; - line-height: 1.5; - border-radius: 0.25rem; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; -} - -@media (prefers-reduced-motion: reduce) { - .btn { - transition: none; - } -} - -.btn:hover { - color: #212529; - text-decoration: none; -} - -.btn:focus, .btn.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); -} - -.btn.disabled, .btn:disabled { - opacity: 0.65; -} - -a.btn.disabled, -fieldset:disabled a.btn { - pointer-events: none; -} - -.btn-primary { - color: #fff; - background-color: #007bff; - border-color: #007bff; -} - -.btn-primary:hover { - color: #fff; - background-color: #0069d9; - border-color: #0062cc; -} - -.btn-primary:focus, .btn-primary.focus { - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); -} - -.btn-primary.disabled, .btn-primary:disabled { - color: #fff; - background-color: #007bff; - border-color: #007bff; -} - -.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, -.show > .btn-primary.dropdown-toggle { - color: #fff; - background-color: #0062cc; - border-color: #005cbf; -} - -.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, -.show > .btn-primary.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); -} - -.btn-secondary { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; -} - -.btn-secondary:hover { - color: #fff; - background-color: #5a6268; - border-color: #545b62; -} - -.btn-secondary:focus, .btn-secondary.focus { - box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5); -} - -.btn-secondary.disabled, .btn-secondary:disabled { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; -} - -.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, -.show > .btn-secondary.dropdown-toggle { - color: #fff; - background-color: #545b62; - border-color: #4e555b; -} - -.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, -.show > .btn-secondary.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5); -} - -.btn-success { - color: #fff; - background-color: #28a745; - border-color: #28a745; -} - -.btn-success:hover { - color: #fff; - background-color: #218838; - border-color: #1e7e34; -} - -.btn-success:focus, .btn-success.focus { - box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5); -} - -.btn-success.disabled, .btn-success:disabled { - color: #fff; - background-color: #28a745; - border-color: #28a745; -} - -.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, -.show > .btn-success.dropdown-toggle { - color: #fff; - background-color: #1e7e34; - border-color: #1c7430; -} - -.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, -.show > .btn-success.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5); -} - -.btn-info { - color: #fff; - background-color: #17a2b8; - border-color: #17a2b8; -} - -.btn-info:hover { - color: #fff; - background-color: #138496; - border-color: #117a8b; -} - -.btn-info:focus, .btn-info.focus { - box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5); -} - -.btn-info.disabled, .btn-info:disabled { - color: #fff; - background-color: #17a2b8; - border-color: #17a2b8; -} - -.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, -.show > .btn-info.dropdown-toggle { - color: #fff; - background-color: #117a8b; - border-color: #10707f; -} - -.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, -.show > .btn-info.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5); -} - -.btn-warning { - color: #212529; - background-color: #ffc107; - border-color: #ffc107; -} - -.btn-warning:hover { - color: #212529; - background-color: #e0a800; - border-color: #d39e00; -} - -.btn-warning:focus, .btn-warning.focus { - box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5); -} - -.btn-warning.disabled, .btn-warning:disabled { - color: #212529; - background-color: #ffc107; - border-color: #ffc107; -} - -.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, -.show > .btn-warning.dropdown-toggle { - color: #212529; - background-color: #d39e00; - border-color: #c69500; -} - -.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, -.show > .btn-warning.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5); -} - -.btn-danger { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; -} - -.btn-danger:hover { - color: #fff; - background-color: #c82333; - border-color: #bd2130; -} - -.btn-danger:focus, .btn-danger.focus { - box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5); -} - -.btn-danger.disabled, .btn-danger:disabled { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; -} - -.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, -.show > .btn-danger.dropdown-toggle { - color: #fff; - background-color: #bd2130; - border-color: #b21f2d; -} - -.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, -.show > .btn-danger.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5); -} - -.btn-light { - color: #212529; - background-color: #f8f9fa; - border-color: #f8f9fa; -} - -.btn-light:hover { - color: #212529; - background-color: #e2e6ea; - border-color: #dae0e5; -} - -.btn-light:focus, .btn-light.focus { - box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5); -} - -.btn-light.disabled, .btn-light:disabled { - color: #212529; - background-color: #f8f9fa; - border-color: #f8f9fa; -} - -.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, -.show > .btn-light.dropdown-toggle { - color: #212529; - background-color: #dae0e5; - border-color: #d3d9df; -} - -.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, -.show > .btn-light.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5); -} - -.btn-dark { - color: #fff; - background-color: #343a40; - border-color: #343a40; -} - -.btn-dark:hover { - color: #fff; - background-color: #23272b; - border-color: #1d2124; -} - -.btn-dark:focus, .btn-dark.focus { - box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5); -} - -.btn-dark.disabled, .btn-dark:disabled { - color: #fff; - background-color: #343a40; - border-color: #343a40; -} - -.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, -.show > .btn-dark.dropdown-toggle { - color: #fff; - background-color: #1d2124; - border-color: #171a1d; -} - -.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, -.show > .btn-dark.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5); -} - -.btn-outline-primary { - color: #007bff; - border-color: #007bff; -} - -.btn-outline-primary:hover { - color: #fff; - background-color: #007bff; - border-color: #007bff; -} - -.btn-outline-primary:focus, .btn-outline-primary.focus { - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); -} - -.btn-outline-primary.disabled, .btn-outline-primary:disabled { - color: #007bff; - background-color: transparent; -} - -.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, -.show > .btn-outline-primary.dropdown-toggle { - color: #fff; - background-color: #007bff; - border-color: #007bff; -} - -.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, -.show > .btn-outline-primary.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); -} - -.btn-outline-secondary { - color: #6c757d; - border-color: #6c757d; -} - -.btn-outline-secondary:hover { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; -} - -.btn-outline-secondary:focus, .btn-outline-secondary.focus { - box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); -} - -.btn-outline-secondary.disabled, .btn-outline-secondary:disabled { - color: #6c757d; - background-color: transparent; -} - -.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, -.show > .btn-outline-secondary.dropdown-toggle { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; -} - -.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, -.show > .btn-outline-secondary.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); -} - -.btn-outline-success { - color: #28a745; - border-color: #28a745; -} - -.btn-outline-success:hover { - color: #fff; - background-color: #28a745; - border-color: #28a745; -} - -.btn-outline-success:focus, .btn-outline-success.focus { - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); -} - -.btn-outline-success.disabled, .btn-outline-success:disabled { - color: #28a745; - background-color: transparent; -} - -.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, -.show > .btn-outline-success.dropdown-toggle { - color: #fff; - background-color: #28a745; - border-color: #28a745; -} - -.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, -.show > .btn-outline-success.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); -} - -.btn-outline-info { - color: #17a2b8; - border-color: #17a2b8; -} - -.btn-outline-info:hover { - color: #fff; - background-color: #17a2b8; - border-color: #17a2b8; -} - -.btn-outline-info:focus, .btn-outline-info.focus { - box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); -} - -.btn-outline-info.disabled, .btn-outline-info:disabled { - color: #17a2b8; - background-color: transparent; -} - -.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, -.show > .btn-outline-info.dropdown-toggle { - color: #fff; - background-color: #17a2b8; - border-color: #17a2b8; -} - -.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, -.show > .btn-outline-info.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); -} - -.btn-outline-warning { - color: #ffc107; - border-color: #ffc107; -} - -.btn-outline-warning:hover { - color: #212529; - background-color: #ffc107; - border-color: #ffc107; -} - -.btn-outline-warning:focus, .btn-outline-warning.focus { - box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); -} - -.btn-outline-warning.disabled, .btn-outline-warning:disabled { - color: #ffc107; - background-color: transparent; -} - -.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, -.show > .btn-outline-warning.dropdown-toggle { - color: #212529; - background-color: #ffc107; - border-color: #ffc107; -} - -.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, -.show > .btn-outline-warning.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); -} - -.btn-outline-danger { - color: #dc3545; - border-color: #dc3545; -} - -.btn-outline-danger:hover { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; -} - -.btn-outline-danger:focus, .btn-outline-danger.focus { - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); -} - -.btn-outline-danger.disabled, .btn-outline-danger:disabled { - color: #dc3545; - background-color: transparent; -} - -.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, -.show > .btn-outline-danger.dropdown-toggle { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; -} - -.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, -.show > .btn-outline-danger.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); -} - -.btn-outline-light { - color: #f8f9fa; - border-color: #f8f9fa; -} - -.btn-outline-light:hover { - color: #212529; - background-color: #f8f9fa; - border-color: #f8f9fa; -} - -.btn-outline-light:focus, .btn-outline-light.focus { - box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); -} - -.btn-outline-light.disabled, .btn-outline-light:disabled { - color: #f8f9fa; - background-color: transparent; -} - -.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, -.show > .btn-outline-light.dropdown-toggle { - color: #212529; - background-color: #f8f9fa; - border-color: #f8f9fa; -} - -.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, -.show > .btn-outline-light.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); -} - -.btn-outline-dark { - color: #343a40; - border-color: #343a40; -} - -.btn-outline-dark:hover { - color: #fff; - background-color: #343a40; - border-color: #343a40; -} - -.btn-outline-dark:focus, .btn-outline-dark.focus { - box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); -} - -.btn-outline-dark.disabled, .btn-outline-dark:disabled { - color: #343a40; - background-color: transparent; -} - -.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, -.show > .btn-outline-dark.dropdown-toggle { - color: #fff; - background-color: #343a40; - border-color: #343a40; -} - -.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, -.show > .btn-outline-dark.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); -} - -.btn-link { - font-weight: 400; - color: #007bff; - text-decoration: none; -} - -.btn-link:hover { - color: #0056b3; - text-decoration: underline; -} - -.btn-link:focus, .btn-link.focus { - text-decoration: underline; - box-shadow: none; -} - -.btn-link:disabled, .btn-link.disabled { - color: #6c757d; - pointer-events: none; -} - -.btn-lg, .btn-group-lg > .btn { - padding: 0.5rem 1rem; - font-size: 1.25rem; - line-height: 1.5; - border-radius: 0.3rem; -} - -.btn-sm, .btn-group-sm > .btn { - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - line-height: 1.5; - border-radius: 0.2rem; -} - -.btn-block { - display: block; - width: 100%; -} - -.btn-block + .btn-block { - margin-top: 0.5rem; -} - -input[type="submit"].btn-block, -input[type="reset"].btn-block, -input[type="button"].btn-block { - width: 100%; -} - -.fade { - transition: opacity 0.15s linear; -} - -@media (prefers-reduced-motion: reduce) { - .fade { - transition: none; - } -} - -.fade:not(.show) { - opacity: 0; -} - -.collapse:not(.show) { - display: none; -} - -.collapsing { - position: relative; - height: 0; - overflow: hidden; - transition: height 0.35s ease; -} - -@media (prefers-reduced-motion: reduce) { - .collapsing { - transition: none; - } -} - -.dropup, -.dropright, -.dropdown, -.dropleft { - position: relative; -} - -.dropdown-toggle { - white-space: nowrap; -} - -.dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0.3em solid; - border-right: 0.3em solid transparent; - border-bottom: 0; - border-left: 0.3em solid transparent; -} - -.dropdown-toggle:empty::after { - margin-left: 0; -} - -.dropdown-menu { - position: absolute; - top: 100%; - left: 0; - z-index: 1000; - display: none; - float: left; - min-width: 10rem; - padding: 0.5rem 0; - margin: 0.125rem 0 0; - font-size: 1rem; - color: #212529; - text-align: left; - list-style: none; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.15); - border-radius: 0.25rem; -} - -.dropdown-menu-left { - right: auto; - left: 0; -} - -.dropdown-menu-right { - right: 0; - left: auto; -} - -@media (min-width: 576px) { - .dropdown-menu-sm-left { - right: auto; - left: 0; - } - .dropdown-menu-sm-right { - right: 0; - left: auto; - } -} - -@media (min-width: 768px) { - .dropdown-menu-md-left { - right: auto; - left: 0; - } - .dropdown-menu-md-right { - right: 0; - left: auto; - } -} - -@media (min-width: 992px) { - .dropdown-menu-lg-left { - right: auto; - left: 0; - } - .dropdown-menu-lg-right { - right: 0; - left: auto; - } -} - -@media (min-width: 1200px) { - .dropdown-menu-xl-left { - right: auto; - left: 0; - } - .dropdown-menu-xl-right { - right: 0; - left: auto; - } -} - -.dropup .dropdown-menu { - top: auto; - bottom: 100%; - margin-top: 0; - margin-bottom: 0.125rem; -} - -.dropup .dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0; - border-right: 0.3em solid transparent; - border-bottom: 0.3em solid; - border-left: 0.3em solid transparent; -} - -.dropup .dropdown-toggle:empty::after { - margin-left: 0; -} - -.dropright .dropdown-menu { - top: 0; - right: auto; - left: 100%; - margin-top: 0; - margin-left: 0.125rem; -} - -.dropright .dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0.3em solid transparent; - border-right: 0; - border-bottom: 0.3em solid transparent; - border-left: 0.3em solid; -} - -.dropright .dropdown-toggle:empty::after { - margin-left: 0; -} - -.dropright .dropdown-toggle::after { - vertical-align: 0; -} - -.dropleft .dropdown-menu { - top: 0; - right: 100%; - left: auto; - margin-top: 0; - margin-right: 0.125rem; -} - -.dropleft .dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; -} - -.dropleft .dropdown-toggle::after { - display: none; -} - -.dropleft .dropdown-toggle::before { - display: inline-block; - margin-right: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0.3em solid transparent; - border-right: 0.3em solid; - border-bottom: 0.3em solid transparent; -} - -.dropleft .dropdown-toggle:empty::after { - margin-left: 0; -} - -.dropleft .dropdown-toggle::before { - vertical-align: 0; -} - -.dropdown-menu[x-placement^="top"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"] { - right: auto; - bottom: auto; -} - -.dropdown-divider { - height: 0; - margin: 0.5rem 0; - overflow: hidden; - border-top: 1px solid #e9ecef; -} - -.dropdown-item { - display: block; - width: 100%; - padding: 0.25rem 1.5rem; - clear: both; - font-weight: 400; - color: #212529; - text-align: inherit; - white-space: nowrap; - background-color: transparent; - border: 0; -} - -.dropdown-item:hover, .dropdown-item:focus { - color: #16181b; - text-decoration: none; - background-color: #f8f9fa; -} - -.dropdown-item.active, .dropdown-item:active { - color: #fff; - text-decoration: none; - background-color: #007bff; -} - -.dropdown-item.disabled, .dropdown-item:disabled { - color: #6c757d; - pointer-events: none; - background-color: transparent; -} - -.dropdown-menu.show { - display: block; -} - -.dropdown-header { - display: block; - padding: 0.5rem 1.5rem; - margin-bottom: 0; - font-size: 0.875rem; - color: #6c757d; - white-space: nowrap; -} - -.dropdown-item-text { - display: block; - padding: 0.25rem 1.5rem; - color: #212529; -} - -.btn-group, -.btn-group-vertical { - position: relative; - display: -ms-inline-flexbox; - display: inline-flex; - vertical-align: middle; -} - -.btn-group > .btn, -.btn-group-vertical > .btn { - position: relative; - -ms-flex: 1 1 auto; - flex: 1 1 auto; -} - -.btn-group > .btn:hover, -.btn-group-vertical > .btn:hover { - z-index: 1; -} - -.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, -.btn-group-vertical > .btn:focus, -.btn-group-vertical > .btn:active, -.btn-group-vertical > .btn.active { - z-index: 1; -} - -.btn-toolbar { - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -ms-flex-pack: start; - justify-content: flex-start; -} - -.btn-toolbar .input-group { - width: auto; -} - -.btn-group > .btn:not(:first-child), -.btn-group > .btn-group:not(:first-child) { - margin-left: -1px; -} - -.btn-group > .btn:not(:last-child):not(.dropdown-toggle), -.btn-group > .btn-group:not(:last-child) > .btn { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} - -.btn-group > .btn:not(:first-child), -.btn-group > .btn-group:not(:first-child) > .btn { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} - -.dropdown-toggle-split { - padding-right: 0.5625rem; - padding-left: 0.5625rem; -} - -.dropdown-toggle-split::after, -.dropup .dropdown-toggle-split::after, -.dropright .dropdown-toggle-split::after { - margin-left: 0; -} - -.dropleft .dropdown-toggle-split::before { - margin-right: 0; -} - -.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split { - padding-right: 0.375rem; - padding-left: 0.375rem; -} - -.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split { - padding-right: 0.75rem; - padding-left: 0.75rem; -} - -.btn-group-vertical { - -ms-flex-direction: column; - flex-direction: column; - -ms-flex-align: start; - align-items: flex-start; - -ms-flex-pack: center; - justify-content: center; -} - -.btn-group-vertical > .btn, -.btn-group-vertical > .btn-group { - width: 100%; -} - -.btn-group-vertical > .btn:not(:first-child), -.btn-group-vertical > .btn-group:not(:first-child) { - margin-top: -1px; -} - -.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), -.btn-group-vertical > .btn-group:not(:last-child) > .btn { - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} - -.btn-group-vertical > .btn:not(:first-child), -.btn-group-vertical > .btn-group:not(:first-child) > .btn { - border-top-left-radius: 0; - border-top-right-radius: 0; -} - -.btn-group-toggle > .btn, -.btn-group-toggle > .btn-group > .btn { - margin-bottom: 0; -} - -.btn-group-toggle > .btn input[type="radio"], -.btn-group-toggle > .btn input[type="checkbox"], -.btn-group-toggle > .btn-group > .btn input[type="radio"], -.btn-group-toggle > .btn-group > .btn input[type="checkbox"] { - position: absolute; - clip: rect(0, 0, 0, 0); - pointer-events: none; -} - -.input-group { - position: relative; - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -ms-flex-align: stretch; - align-items: stretch; - width: 100%; -} - -.input-group > .form-control, -.input-group > .form-control-plaintext, -.input-group > .custom-select, -.input-group > .custom-file { - position: relative; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - width: 1%; - margin-bottom: 0; -} - -.input-group > .form-control + .form-control, -.input-group > .form-control + .custom-select, -.input-group > .form-control + .custom-file, -.input-group > .form-control-plaintext + .form-control, -.input-group > .form-control-plaintext + .custom-select, -.input-group > .form-control-plaintext + .custom-file, -.input-group > .custom-select + .form-control, -.input-group > .custom-select + .custom-select, -.input-group > .custom-select + .custom-file, -.input-group > .custom-file + .form-control, -.input-group > .custom-file + .custom-select, -.input-group > .custom-file + .custom-file { - margin-left: -1px; -} - -.input-group > .form-control:focus, -.input-group > .custom-select:focus, -.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label { - z-index: 3; -} - -.input-group > .custom-file .custom-file-input:focus { - z-index: 4; -} - -.input-group > .form-control:not(:last-child), -.input-group > .custom-select:not(:last-child) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} - -.input-group > .form-control:not(:first-child), -.input-group > .custom-select:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} - -.input-group > .custom-file { - display: -ms-flexbox; - display: flex; - -ms-flex-align: center; - align-items: center; -} - -.input-group > .custom-file:not(:last-child) .custom-file-label, -.input-group > .custom-file:not(:last-child) .custom-file-label::after { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} - -.input-group > .custom-file:not(:first-child) .custom-file-label { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} - -.input-group-prepend, -.input-group-append { - display: -ms-flexbox; - display: flex; -} - -.input-group-prepend .btn, -.input-group-append .btn { - position: relative; - z-index: 2; -} - -.input-group-prepend .btn:focus, -.input-group-append .btn:focus { - z-index: 3; -} - -.input-group-prepend .btn + .btn, -.input-group-prepend .btn + .input-group-text, -.input-group-prepend .input-group-text + .input-group-text, -.input-group-prepend .input-group-text + .btn, -.input-group-append .btn + .btn, -.input-group-append .btn + .input-group-text, -.input-group-append .input-group-text + .input-group-text, -.input-group-append .input-group-text + .btn { - margin-left: -1px; -} - -.input-group-prepend { - margin-right: -1px; -} - -.input-group-append { - margin-left: -1px; -} - -.input-group-text { - display: -ms-flexbox; - display: flex; - -ms-flex-align: center; - align-items: center; - padding: 0.375rem 0.75rem; - margin-bottom: 0; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #495057; - text-align: center; - white-space: nowrap; - background-color: #e9ecef; - border: 1px solid #ced4da; - border-radius: 0.25rem; -} - -.input-group-text input[type="radio"], -.input-group-text input[type="checkbox"] { - margin-top: 0; -} - -.input-group-lg > .form-control:not(textarea), -.input-group-lg > .custom-select { - height: calc(1.5em + 1rem + 2px); -} - -.input-group-lg > .form-control, -.input-group-lg > .custom-select, -.input-group-lg > .input-group-prepend > .input-group-text, -.input-group-lg > .input-group-append > .input-group-text, -.input-group-lg > .input-group-prepend > .btn, -.input-group-lg > .input-group-append > .btn { - padding: 0.5rem 1rem; - font-size: 1.25rem; - line-height: 1.5; - border-radius: 0.3rem; -} - -.input-group-sm > .form-control:not(textarea), -.input-group-sm > .custom-select { - height: calc(1.5em + 0.5rem + 2px); -} - -.input-group-sm > .form-control, -.input-group-sm > .custom-select, -.input-group-sm > .input-group-prepend > .input-group-text, -.input-group-sm > .input-group-append > .input-group-text, -.input-group-sm > .input-group-prepend > .btn, -.input-group-sm > .input-group-append > .btn { - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - line-height: 1.5; - border-radius: 0.2rem; -} - -.input-group-lg > .custom-select, -.input-group-sm > .custom-select { - padding-right: 1.75rem; -} - -.input-group > .input-group-prepend > .btn, -.input-group > .input-group-prepend > .input-group-text, -.input-group > .input-group-append:not(:last-child) > .btn, -.input-group > .input-group-append:not(:last-child) > .input-group-text, -.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle), -.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} - -.input-group > .input-group-append > .btn, -.input-group > .input-group-append > .input-group-text, -.input-group > .input-group-prepend:not(:first-child) > .btn, -.input-group > .input-group-prepend:not(:first-child) > .input-group-text, -.input-group > .input-group-prepend:first-child > .btn:not(:first-child), -.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} - -.custom-control { - position: relative; - display: block; - min-height: 1.5rem; - padding-left: 1.5rem; -} - -.custom-control-inline { - display: -ms-inline-flexbox; - display: inline-flex; - margin-right: 1rem; -} - -.custom-control-input { - position: absolute; - z-index: -1; - opacity: 0; -} - -.custom-control-input:checked ~ .custom-control-label::before { - color: #fff; - border-color: #007bff; - background-color: #007bff; -} - -.custom-control-input:focus ~ .custom-control-label::before { - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); -} - -.custom-control-input:focus:not(:checked) ~ .custom-control-label::before { - border-color: #80bdff; -} - -.custom-control-input:not(:disabled):active ~ .custom-control-label::before { - color: #fff; - background-color: #b3d7ff; - border-color: #b3d7ff; -} - -.custom-control-input:disabled ~ .custom-control-label { - color: #6c757d; -} - -.custom-control-input:disabled ~ .custom-control-label::before { - background-color: #e9ecef; -} - -.custom-control-label { - position: relative; - margin-bottom: 0; - vertical-align: top; -} - -.custom-control-label::before { - position: absolute; - top: 0.25rem; - left: -1.5rem; - display: block; - width: 1rem; - height: 1rem; - pointer-events: none; - content: ""; - background-color: #fff; - border: #adb5bd solid 1px; -} - -.custom-control-label::after { - position: absolute; - top: 0.25rem; - left: -1.5rem; - display: block; - width: 1rem; - height: 1rem; - content: ""; - background: no-repeat 50% / 50% 50%; -} - -.custom-checkbox .custom-control-label::before { - border-radius: 0.25rem; -} - -.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e"); -} - -.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before { - border-color: #007bff; - background-color: #007bff; -} - -.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e"); -} - -.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before { - background-color: rgba(0, 123, 255, 0.5); -} - -.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before { - background-color: rgba(0, 123, 255, 0.5); -} - -.custom-radio .custom-control-label::before { - border-radius: 50%; -} - -.custom-radio .custom-control-input:checked ~ .custom-control-label::after { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e"); -} - -.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before { - background-color: rgba(0, 123, 255, 0.5); -} - -.custom-switch { - padding-left: 2.25rem; -} - -.custom-switch .custom-control-label::before { - left: -2.25rem; - width: 1.75rem; - pointer-events: all; - border-radius: 0.5rem; -} - -.custom-switch .custom-control-label::after { - top: calc(0.25rem + 2px); - left: calc(-2.25rem + 2px); - width: calc(1rem - 4px); - height: calc(1rem - 4px); - background-color: #adb5bd; - border-radius: 0.5rem; - transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out; - transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; - transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out; -} - -@media (prefers-reduced-motion: reduce) { - .custom-switch .custom-control-label::after { - transition: none; - } -} - -.custom-switch .custom-control-input:checked ~ .custom-control-label::after { - background-color: #fff; - -webkit-transform: translateX(0.75rem); - transform: translateX(0.75rem); -} - -.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before { - background-color: rgba(0, 123, 255, 0.5); -} - -.custom-select { - display: inline-block; - width: 100%; - height: calc(1.5em + 0.75rem + 2px); - padding: 0.375rem 1.75rem 0.375rem 0.75rem; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #495057; - vertical-align: middle; - background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px; - background-color: #fff; - border: 1px solid #ced4da; - border-radius: 0.25rem; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; -} - -.custom-select:focus { - border-color: #80bdff; - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); -} - -.custom-select:focus::-ms-value { - color: #495057; - background-color: #fff; -} - -.custom-select[multiple], .custom-select[size]:not([size="1"]) { - height: auto; - padding-right: 0.75rem; - background-image: none; -} - -.custom-select:disabled { - color: #6c757d; - background-color: #e9ecef; -} - -.custom-select::-ms-expand { - display: none; -} - -.custom-select-sm { - height: calc(1.5em + 0.5rem + 2px); - padding-top: 0.25rem; - padding-bottom: 0.25rem; - padding-left: 0.5rem; - font-size: 0.875rem; -} - -.custom-select-lg { - height: calc(1.5em + 1rem + 2px); - padding-top: 0.5rem; - padding-bottom: 0.5rem; - padding-left: 1rem; - font-size: 1.25rem; -} - -.custom-file { - position: relative; - display: inline-block; - width: 100%; - height: calc(1.5em + 0.75rem + 2px); - margin-bottom: 0; -} - -.custom-file-input { - position: relative; - z-index: 2; - width: 100%; - height: calc(1.5em + 0.75rem + 2px); - margin: 0; - opacity: 0; -} - -.custom-file-input:focus ~ .custom-file-label { - border-color: #80bdff; - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); -} - -.custom-file-input:disabled ~ .custom-file-label { - background-color: #e9ecef; -} - -.custom-file-input:lang(en) ~ .custom-file-label::after { - content: "Browse"; -} - -.custom-file-input ~ .custom-file-label[data-browse]::after { - content: attr(data-browse); -} - -.custom-file-label { - position: absolute; - top: 0; - right: 0; - left: 0; - z-index: 1; - height: calc(1.5em + 0.75rem + 2px); - padding: 0.375rem 0.75rem; - font-weight: 400; - line-height: 1.5; - color: #495057; - background-color: #fff; - border: 1px solid #ced4da; - border-radius: 0.25rem; -} - -.custom-file-label::after { - position: absolute; - top: 0; - right: 0; - bottom: 0; - z-index: 3; - display: block; - height: calc(1.5em + 0.75rem); - padding: 0.375rem 0.75rem; - line-height: 1.5; - color: #495057; - content: "Browse"; - background-color: #e9ecef; - border-left: inherit; - border-radius: 0 0.25rem 0.25rem 0; -} - -.custom-range { - width: 100%; - height: calc(1rem + 0.4rem); - padding: 0; - background-color: transparent; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; -} - -.custom-range:focus { - outline: none; -} - -.custom-range:focus::-webkit-slider-thumb { - box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); -} - -.custom-range:focus::-moz-range-thumb { - box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); -} - -.custom-range:focus::-ms-thumb { - box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); -} - -.custom-range::-moz-focus-outer { - border: 0; -} - -.custom-range::-webkit-slider-thumb { - width: 1rem; - height: 1rem; - margin-top: -0.25rem; - background-color: #007bff; - border: 0; - border-radius: 1rem; - transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; - -webkit-appearance: none; - appearance: none; -} - -@media (prefers-reduced-motion: reduce) { - .custom-range::-webkit-slider-thumb { - transition: none; - } -} - -.custom-range::-webkit-slider-thumb:active { - background-color: #b3d7ff; -} - -.custom-range::-webkit-slider-runnable-track { - width: 100%; - height: 0.5rem; - color: transparent; - cursor: pointer; - background-color: #dee2e6; - border-color: transparent; - border-radius: 1rem; -} - -.custom-range::-moz-range-thumb { - width: 1rem; - height: 1rem; - background-color: #007bff; - border: 0; - border-radius: 1rem; - transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; - -moz-appearance: none; - appearance: none; -} - -@media (prefers-reduced-motion: reduce) { - .custom-range::-moz-range-thumb { - transition: none; - } -} - -.custom-range::-moz-range-thumb:active { - background-color: #b3d7ff; -} - -.custom-range::-moz-range-track { - width: 100%; - height: 0.5rem; - color: transparent; - cursor: pointer; - background-color: #dee2e6; - border-color: transparent; - border-radius: 1rem; -} - -.custom-range::-ms-thumb { - width: 1rem; - height: 1rem; - margin-top: 0; - margin-right: 0.2rem; - margin-left: 0.2rem; - background-color: #007bff; - border: 0; - border-radius: 1rem; - transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; - appearance: none; -} - -@media (prefers-reduced-motion: reduce) { - .custom-range::-ms-thumb { - transition: none; - } -} - -.custom-range::-ms-thumb:active { - background-color: #b3d7ff; -} - -.custom-range::-ms-track { - width: 100%; - height: 0.5rem; - color: transparent; - cursor: pointer; - background-color: transparent; - border-color: transparent; - border-width: 0.5rem; -} - -.custom-range::-ms-fill-lower { - background-color: #dee2e6; - border-radius: 1rem; -} - -.custom-range::-ms-fill-upper { - margin-right: 15px; - background-color: #dee2e6; - border-radius: 1rem; -} - -.custom-range:disabled::-webkit-slider-thumb { - background-color: #adb5bd; -} - -.custom-range:disabled::-webkit-slider-runnable-track { - cursor: default; -} - -.custom-range:disabled::-moz-range-thumb { - background-color: #adb5bd; -} - -.custom-range:disabled::-moz-range-track { - cursor: default; -} - -.custom-range:disabled::-ms-thumb { - background-color: #adb5bd; -} - -.custom-control-label::before, -.custom-file-label, -.custom-select { - transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; -} - -@media (prefers-reduced-motion: reduce) { - .custom-control-label::before, - .custom-file-label, - .custom-select { - transition: none; - } -} - -.nav { - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - padding-left: 0; - margin-bottom: 0; - list-style: none; -} - -.nav-link { - display: block; - padding: 0.5rem 1rem; -} - -.nav-link:hover, .nav-link:focus { - text-decoration: none; -} - -.nav-link.disabled { - color: #6c757d; - pointer-events: none; - cursor: default; -} - -.nav-tabs { - border-bottom: 1px solid #dee2e6; -} - -.nav-tabs .nav-item { - margin-bottom: -1px; -} - -.nav-tabs .nav-link { - border: 1px solid transparent; - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; -} - -.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus { - border-color: #e9ecef #e9ecef #dee2e6; -} - -.nav-tabs .nav-link.disabled { - color: #6c757d; - background-color: transparent; - border-color: transparent; -} - -.nav-tabs .nav-link.active, -.nav-tabs .nav-item.show .nav-link { - color: #495057; - background-color: #fff; - border-color: #dee2e6 #dee2e6 #fff; -} - -.nav-tabs .dropdown-menu { - margin-top: -1px; - border-top-left-radius: 0; - border-top-right-radius: 0; -} - -.nav-pills .nav-link { - border-radius: 0.25rem; -} - -.nav-pills .nav-link.active, -.nav-pills .show > .nav-link { - color: #fff; - background-color: #007bff; -} - -.nav-fill .nav-item { - -ms-flex: 1 1 auto; - flex: 1 1 auto; - text-align: center; -} - -.nav-justified .nav-item { - -ms-flex-preferred-size: 0; - flex-basis: 0; - -ms-flex-positive: 1; - flex-grow: 1; - text-align: center; -} - -.tab-content > .tab-pane { - display: none; -} - -.tab-content > .active { - display: block; -} - -.navbar { - position: relative; - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -ms-flex-align: center; - align-items: center; - -ms-flex-pack: justify; - justify-content: space-between; - padding: 0.5rem 1rem; -} - -.navbar > .container, -.navbar > .container-fluid { - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -ms-flex-align: center; - align-items: center; - -ms-flex-pack: justify; - justify-content: space-between; -} - -.navbar-brand { - display: inline-block; - padding-top: 0.3125rem; - padding-bottom: 0.3125rem; - margin-right: 1rem; - font-size: 1.25rem; - line-height: inherit; - white-space: nowrap; -} - -.navbar-brand:hover, .navbar-brand:focus { - text-decoration: none; -} - -.navbar-nav { - display: -ms-flexbox; - display: flex; - -ms-flex-direction: column; - flex-direction: column; - padding-left: 0; - margin-bottom: 0; - list-style: none; -} - -.navbar-nav .nav-link { - padding-right: 0; - padding-left: 0; -} - -.navbar-nav .dropdown-menu { - position: static; - float: none; -} - -.navbar-text { - display: inline-block; - padding-top: 0.5rem; - padding-bottom: 0.5rem; -} - -.navbar-collapse { - -ms-flex-preferred-size: 100%; - flex-basis: 100%; - -ms-flex-positive: 1; - flex-grow: 1; - -ms-flex-align: center; - align-items: center; -} - -.navbar-toggler { - padding: 0.25rem 0.75rem; - font-size: 1.25rem; - line-height: 1; - background-color: transparent; - border: 1px solid transparent; - border-radius: 0.25rem; -} - -.navbar-toggler:hover, .navbar-toggler:focus { - text-decoration: none; -} - -.navbar-toggler-icon { - display: inline-block; - width: 1.5em; - height: 1.5em; - vertical-align: middle; - content: ""; - background: no-repeat center center; - background-size: 100% 100%; -} - -@media (max-width: 575.98px) { - .navbar-expand-sm > .container, - .navbar-expand-sm > .container-fluid { - padding-right: 0; - padding-left: 0; - } -} - -@media (min-width: 576px) { - .navbar-expand-sm { - -ms-flex-flow: row nowrap; - flex-flow: row nowrap; - -ms-flex-pack: start; - justify-content: flex-start; - } - .navbar-expand-sm .navbar-nav { - -ms-flex-direction: row; - flex-direction: row; - } - .navbar-expand-sm .navbar-nav .dropdown-menu { - position: absolute; - } - .navbar-expand-sm .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; - } - .navbar-expand-sm > .container, - .navbar-expand-sm > .container-fluid { - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - } - .navbar-expand-sm .navbar-collapse { - display: -ms-flexbox !important; - display: flex !important; - -ms-flex-preferred-size: auto; - flex-basis: auto; - } - .navbar-expand-sm .navbar-toggler { - display: none; - } -} - -@media (max-width: 767.98px) { - .navbar-expand-md > .container, - .navbar-expand-md > .container-fluid { - padding-right: 0; - padding-left: 0; - } -} - -@media (min-width: 768px) { - .navbar-expand-md { - -ms-flex-flow: row nowrap; - flex-flow: row nowrap; - -ms-flex-pack: start; - justify-content: flex-start; - } - .navbar-expand-md .navbar-nav { - -ms-flex-direction: row; - flex-direction: row; - } - .navbar-expand-md .navbar-nav .dropdown-menu { - position: absolute; - } - .navbar-expand-md .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; - } - .navbar-expand-md > .container, - .navbar-expand-md > .container-fluid { - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - } - .navbar-expand-md .navbar-collapse { - display: -ms-flexbox !important; - display: flex !important; - -ms-flex-preferred-size: auto; - flex-basis: auto; - } - .navbar-expand-md .navbar-toggler { - display: none; - } -} - -@media (max-width: 991.98px) { - .navbar-expand-lg > .container, - .navbar-expand-lg > .container-fluid { - padding-right: 0; - padding-left: 0; - } -} - -@media (min-width: 992px) { - .navbar-expand-lg { - -ms-flex-flow: row nowrap; - flex-flow: row nowrap; - -ms-flex-pack: start; - justify-content: flex-start; - } - .navbar-expand-lg .navbar-nav { - -ms-flex-direction: row; - flex-direction: row; - } - .navbar-expand-lg .navbar-nav .dropdown-menu { - position: absolute; - } - .navbar-expand-lg .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; - } - .navbar-expand-lg > .container, - .navbar-expand-lg > .container-fluid { - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - } - .navbar-expand-lg .navbar-collapse { - display: -ms-flexbox !important; - display: flex !important; - -ms-flex-preferred-size: auto; - flex-basis: auto; - } - .navbar-expand-lg .navbar-toggler { - display: none; - } -} - -@media (max-width: 1199.98px) { - .navbar-expand-xl > .container, - .navbar-expand-xl > .container-fluid { - padding-right: 0; - padding-left: 0; - } -} - -@media (min-width: 1200px) { - .navbar-expand-xl { - -ms-flex-flow: row nowrap; - flex-flow: row nowrap; - -ms-flex-pack: start; - justify-content: flex-start; - } - .navbar-expand-xl .navbar-nav { - -ms-flex-direction: row; - flex-direction: row; - } - .navbar-expand-xl .navbar-nav .dropdown-menu { - position: absolute; - } - .navbar-expand-xl .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; - } - .navbar-expand-xl > .container, - .navbar-expand-xl > .container-fluid { - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - } - .navbar-expand-xl .navbar-collapse { - display: -ms-flexbox !important; - display: flex !important; - -ms-flex-preferred-size: auto; - flex-basis: auto; - } - .navbar-expand-xl .navbar-toggler { - display: none; - } -} - -.navbar-expand { - -ms-flex-flow: row nowrap; - flex-flow: row nowrap; - -ms-flex-pack: start; - justify-content: flex-start; -} - -.navbar-expand > .container, -.navbar-expand > .container-fluid { - padding-right: 0; - padding-left: 0; -} - -.navbar-expand .navbar-nav { - -ms-flex-direction: row; - flex-direction: row; -} - -.navbar-expand .navbar-nav .dropdown-menu { - position: absolute; -} - -.navbar-expand .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; -} - -.navbar-expand > .container, -.navbar-expand > .container-fluid { - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; -} - -.navbar-expand .navbar-collapse { - display: -ms-flexbox !important; - display: flex !important; - -ms-flex-preferred-size: auto; - flex-basis: auto; -} - -.navbar-expand .navbar-toggler { - display: none; -} - -.navbar-light .navbar-brand { - color: rgba(0, 0, 0, 0.9); -} - -.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus { - color: rgba(0, 0, 0, 0.9); -} - -.navbar-light .navbar-nav .nav-link { - color: rgba(0, 0, 0, 0.5); -} - -.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus { - color: rgba(0, 0, 0, 0.7); -} - -.navbar-light .navbar-nav .nav-link.disabled { - color: rgba(0, 0, 0, 0.3); -} - -.navbar-light .navbar-nav .show > .nav-link, -.navbar-light .navbar-nav .active > .nav-link, -.navbar-light .navbar-nav .nav-link.show, -.navbar-light .navbar-nav .nav-link.active { - color: rgba(0, 0, 0, 0.9); -} - -.navbar-light .navbar-toggler { - color: rgba(0, 0, 0, 0.5); - border-color: rgba(0, 0, 0, 0.1); -} - -.navbar-light .navbar-toggler-icon { - background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); -} - -.navbar-light .navbar-text { - color: rgba(0, 0, 0, 0.5); -} - -.navbar-light .navbar-text a { - color: rgba(0, 0, 0, 0.9); -} - -.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus { - color: rgba(0, 0, 0, 0.9); -} - -.navbar-dark .navbar-brand { - color: #fff; -} - -.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus { - color: #fff; -} - -.navbar-dark .navbar-nav .nav-link { - color: rgba(255, 255, 255, 0.5); -} - -.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus { - color: rgba(255, 255, 255, 0.75); -} - -.navbar-dark .navbar-nav .nav-link.disabled { - color: rgba(255, 255, 255, 0.25); -} - -.navbar-dark .navbar-nav .show > .nav-link, -.navbar-dark .navbar-nav .active > .nav-link, -.navbar-dark .navbar-nav .nav-link.show, -.navbar-dark .navbar-nav .nav-link.active { - color: #fff; -} - -.navbar-dark .navbar-toggler { - color: rgba(255, 255, 255, 0.5); - border-color: rgba(255, 255, 255, 0.1); -} - -.navbar-dark .navbar-toggler-icon { - background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); -} - -.navbar-dark .navbar-text { - color: rgba(255, 255, 255, 0.5); -} - -.navbar-dark .navbar-text a { - color: #fff; -} - -.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus { - color: #fff; -} - -.card { - position: relative; - display: -ms-flexbox; - display: flex; - -ms-flex-direction: column; - flex-direction: column; - min-width: 0; - word-wrap: break-word; - background-color: #fff; - background-clip: border-box; - border: 1px solid rgba(0, 0, 0, 0.125); - border-radius: 0.25rem; -} - -.card > hr { - margin-right: 0; - margin-left: 0; -} - -.card > .list-group:first-child .list-group-item:first-child { - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; -} - -.card > .list-group:last-child .list-group-item:last-child { - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; -} - -.card-body { - -ms-flex: 1 1 auto; - flex: 1 1 auto; - padding: 1.25rem; -} - -.card-title { - margin-bottom: 0.75rem; -} - -.card-subtitle { - margin-top: -0.375rem; - margin-bottom: 0; -} - -.card-text:last-child { - margin-bottom: 0; -} - -.card-link:hover { - text-decoration: none; -} - -.card-link + .card-link { - margin-left: 1.25rem; -} - -.card-header { - padding: 0.75rem 1.25rem; - margin-bottom: 0; - background-color: rgba(0, 0, 0, 0.03); - border-bottom: 1px solid rgba(0, 0, 0, 0.125); -} - -.card-header:first-child { - border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; -} - -.card-header + .list-group .list-group-item:first-child { - border-top: 0; -} - -.card-footer { - padding: 0.75rem 1.25rem; - background-color: rgba(0, 0, 0, 0.03); - border-top: 1px solid rgba(0, 0, 0, 0.125); -} - -.card-footer:last-child { - border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px); -} - -.card-header-tabs { - margin-right: -0.625rem; - margin-bottom: -0.75rem; - margin-left: -0.625rem; - border-bottom: 0; -} - -.card-header-pills { - margin-right: -0.625rem; - margin-left: -0.625rem; -} - -.card-img-overlay { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - padding: 1.25rem; -} - -.card-img { - width: 100%; - border-radius: calc(0.25rem - 1px); -} - -.card-img-top { - width: 100%; - border-top-left-radius: calc(0.25rem - 1px); - border-top-right-radius: calc(0.25rem - 1px); -} - -.card-img-bottom { - width: 100%; - border-bottom-right-radius: calc(0.25rem - 1px); - border-bottom-left-radius: calc(0.25rem - 1px); -} - -.card-deck { - display: -ms-flexbox; - display: flex; - -ms-flex-direction: column; - flex-direction: column; -} - -.card-deck .card { - margin-bottom: 15px; -} - -@media (min-width: 576px) { - .card-deck { - -ms-flex-flow: row wrap; - flex-flow: row wrap; - margin-right: -15px; - margin-left: -15px; - } - .card-deck .card { - display: -ms-flexbox; - display: flex; - -ms-flex: 1 0 0%; - flex: 1 0 0%; - -ms-flex-direction: column; - flex-direction: column; - margin-right: 15px; - margin-bottom: 0; - margin-left: 15px; - } -} - -.card-group { - display: -ms-flexbox; - display: flex; - -ms-flex-direction: column; - flex-direction: column; -} - -.card-group > .card { - margin-bottom: 15px; -} - -@media (min-width: 576px) { - .card-group { - -ms-flex-flow: row wrap; - flex-flow: row wrap; - } - .card-group > .card { - -ms-flex: 1 0 0%; - flex: 1 0 0%; - margin-bottom: 0; - } - .card-group > .card + .card { - margin-left: 0; - border-left: 0; - } - .card-group > .card:not(:last-child) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; - } - .card-group > .card:not(:last-child) .card-img-top, - .card-group > .card:not(:last-child) .card-header { - border-top-right-radius: 0; - } - .card-group > .card:not(:last-child) .card-img-bottom, - .card-group > .card:not(:last-child) .card-footer { - border-bottom-right-radius: 0; - } - .card-group > .card:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; - } - .card-group > .card:not(:first-child) .card-img-top, - .card-group > .card:not(:first-child) .card-header { - border-top-left-radius: 0; - } - .card-group > .card:not(:first-child) .card-img-bottom, - .card-group > .card:not(:first-child) .card-footer { - border-bottom-left-radius: 0; - } -} - -.card-columns .card { - margin-bottom: 0.75rem; -} - -@media (min-width: 576px) { - .card-columns { - -webkit-column-count: 3; - -moz-column-count: 3; - column-count: 3; - -webkit-column-gap: 1.25rem; - -moz-column-gap: 1.25rem; - column-gap: 1.25rem; - orphans: 1; - widows: 1; - } - .card-columns .card { - display: inline-block; - width: 100%; - } -} - -.accordion > .card { - overflow: hidden; -} - -.accordion > .card:not(:first-of-type) .card-header:first-child { - border-radius: 0; -} - -.accordion > .card:not(:first-of-type):not(:last-of-type) { - border-bottom: 0; - border-radius: 0; -} - -.accordion > .card:first-of-type { - border-bottom: 0; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} - -.accordion > .card:last-of-type { - border-top-left-radius: 0; - border-top-right-radius: 0; -} - -.accordion > .card .card-header { - margin-bottom: -1px; -} - -.breadcrumb { - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - padding: 0.75rem 1rem; - margin-bottom: 1rem; - list-style: none; - background-color: #e9ecef; - border-radius: 0.25rem; -} - -.breadcrumb-item + .breadcrumb-item { - padding-left: 0.5rem; -} - -.breadcrumb-item + .breadcrumb-item::before { - display: inline-block; - padding-right: 0.5rem; - color: #6c757d; - content: "/"; -} - -.breadcrumb-item + .breadcrumb-item:hover::before { - text-decoration: underline; -} - -.breadcrumb-item + .breadcrumb-item:hover::before { - text-decoration: none; -} - -.breadcrumb-item.active { - color: #6c757d; -} - -.pagination { - display: -ms-flexbox; - display: flex; - padding-left: 0; - list-style: none; - border-radius: 0.25rem; -} - -.page-link { - position: relative; - display: block; - padding: 0.5rem 0.75rem; - margin-left: -1px; - line-height: 1.25; - color: #007bff; - background-color: #fff; - border: 1px solid #dee2e6; -} - -.page-link:hover { - z-index: 2; - color: #0056b3; - text-decoration: none; - background-color: #e9ecef; - border-color: #dee2e6; -} - -.page-link:focus { - z-index: 2; - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); -} - -.page-item:first-child .page-link { - margin-left: 0; - border-top-left-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; -} - -.page-item:last-child .page-link { - border-top-right-radius: 0.25rem; - border-bottom-right-radius: 0.25rem; -} - -.page-item.active .page-link { - z-index: 1; - color: #fff; - background-color: #007bff; - border-color: #007bff; -} - -.page-item.disabled .page-link { - color: #6c757d; - pointer-events: none; - cursor: auto; - background-color: #fff; - border-color: #dee2e6; -} - -.pagination-lg .page-link { - padding: 0.75rem 1.5rem; - font-size: 1.25rem; - line-height: 1.5; -} - -.pagination-lg .page-item:first-child .page-link { - border-top-left-radius: 0.3rem; - border-bottom-left-radius: 0.3rem; -} - -.pagination-lg .page-item:last-child .page-link { - border-top-right-radius: 0.3rem; - border-bottom-right-radius: 0.3rem; -} - -.pagination-sm .page-link { - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - line-height: 1.5; -} - -.pagination-sm .page-item:first-child .page-link { - border-top-left-radius: 0.2rem; - border-bottom-left-radius: 0.2rem; -} - -.pagination-sm .page-item:last-child .page-link { - border-top-right-radius: 0.2rem; - border-bottom-right-radius: 0.2rem; -} - -.badge { - display: inline-block; - padding: 0.25em 0.4em; - font-size: 75%; - font-weight: 700; - line-height: 1; - text-align: center; - white-space: nowrap; - vertical-align: baseline; - border-radius: 0.25rem; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; -} - -@media (prefers-reduced-motion: reduce) { - .badge { - transition: none; - } -} - -a.badge:hover, a.badge:focus { - text-decoration: none; -} - -.badge:empty { - display: none; -} - -.btn .badge { - position: relative; - top: -1px; -} - -.badge-pill { - padding-right: 0.6em; - padding-left: 0.6em; - border-radius: 10rem; -} - -.badge-primary { - color: #fff; - background-color: #007bff; -} - -a.badge-primary:hover, a.badge-primary:focus { - color: #fff; - background-color: #0062cc; -} - -a.badge-primary:focus, a.badge-primary.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); -} - -.badge-secondary { - color: #fff; - background-color: #6c757d; -} - -a.badge-secondary:hover, a.badge-secondary:focus { - color: #fff; - background-color: #545b62; -} - -a.badge-secondary:focus, a.badge-secondary.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); -} - -.badge-success { - color: #fff; - background-color: #28a745; -} - -a.badge-success:hover, a.badge-success:focus { - color: #fff; - background-color: #1e7e34; -} - -a.badge-success:focus, a.badge-success.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); -} - -.badge-info { - color: #fff; - background-color: #17a2b8; -} - -a.badge-info:hover, a.badge-info:focus { - color: #fff; - background-color: #117a8b; -} - -a.badge-info:focus, a.badge-info.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); -} - -.badge-warning { - color: #212529; - background-color: #ffc107; -} - -a.badge-warning:hover, a.badge-warning:focus { - color: #212529; - background-color: #d39e00; -} - -a.badge-warning:focus, a.badge-warning.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); -} - -.badge-danger { - color: #fff; - background-color: #dc3545; -} - -a.badge-danger:hover, a.badge-danger:focus { - color: #fff; - background-color: #bd2130; -} - -a.badge-danger:focus, a.badge-danger.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); -} - -.badge-light { - color: #212529; - background-color: #f8f9fa; -} - -a.badge-light:hover, a.badge-light:focus { - color: #212529; - background-color: #dae0e5; -} - -a.badge-light:focus, a.badge-light.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); -} - -.badge-dark { - color: #fff; - background-color: #343a40; -} - -a.badge-dark:hover, a.badge-dark:focus { - color: #fff; - background-color: #1d2124; -} - -a.badge-dark:focus, a.badge-dark.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); -} - -.jumbotron { - padding: 2rem 1rem; - margin-bottom: 2rem; - background-color: #e9ecef; - border-radius: 0.3rem; -} - -@media (min-width: 576px) { - .jumbotron { - padding: 4rem 2rem; - } -} - -.jumbotron-fluid { - padding-right: 0; - padding-left: 0; - border-radius: 0; -} - -.alert { - position: relative; - padding: 0.75rem 1.25rem; - margin-bottom: 1rem; - border: 1px solid transparent; - border-radius: 0.25rem; -} - -.alert-heading { - color: inherit; -} - -.alert-link { - font-weight: 700; -} - -.alert-dismissible { - padding-right: 4rem; -} - -.alert-dismissible .close { - position: absolute; - top: 0; - right: 0; - padding: 0.75rem 1.25rem; - color: inherit; -} - -.alert-primary { - color: #004085; - background-color: #cce5ff; - border-color: #b8daff; -} - -.alert-primary hr { - border-top-color: #9fcdff; -} - -.alert-primary .alert-link { - color: #002752; -} - -.alert-secondary { - color: #383d41; - background-color: #e2e3e5; - border-color: #d6d8db; -} - -.alert-secondary hr { - border-top-color: #c8cbcf; -} - -.alert-secondary .alert-link { - color: #202326; -} - -.alert-success { - color: #155724; - background-color: #d4edda; - border-color: #c3e6cb; -} - -.alert-success hr { - border-top-color: #b1dfbb; -} - -.alert-success .alert-link { - color: #0b2e13; -} - -.alert-info { - color: #0c5460; - background-color: #d1ecf1; - border-color: #bee5eb; -} - -.alert-info hr { - border-top-color: #abdde5; -} - -.alert-info .alert-link { - color: #062c33; -} - -.alert-warning { - color: #856404; - background-color: #fff3cd; - border-color: #ffeeba; -} - -.alert-warning hr { - border-top-color: #ffe8a1; -} - -.alert-warning .alert-link { - color: #533f03; -} - -.alert-danger { - color: #721c24; - background-color: #f8d7da; - border-color: #f5c6cb; -} - -.alert-danger hr { - border-top-color: #f1b0b7; -} - -.alert-danger .alert-link { - color: #491217; -} - -.alert-light { - color: #818182; - background-color: #fefefe; - border-color: #fdfdfe; -} - -.alert-light hr { - border-top-color: #ececf6; -} - -.alert-light .alert-link { - color: #686868; -} - -.alert-dark { - color: #1b1e21; - background-color: #d6d8d9; - border-color: #c6c8ca; -} - -.alert-dark hr { - border-top-color: #b9bbbe; -} - -.alert-dark .alert-link { - color: #040505; -} - -@-webkit-keyframes progress-bar-stripes { - from { - background-position: 1rem 0; - } - to { - background-position: 0 0; - } -} - -@keyframes progress-bar-stripes { - from { - background-position: 1rem 0; - } - to { - background-position: 0 0; - } -} - -.progress { - display: -ms-flexbox; - display: flex; - height: 1rem; - overflow: hidden; - font-size: 0.75rem; - background-color: #e9ecef; - border-radius: 0.25rem; -} - -.progress-bar { - display: -ms-flexbox; - display: flex; - -ms-flex-direction: column; - flex-direction: column; - -ms-flex-pack: center; - justify-content: center; - color: #fff; - text-align: center; - white-space: nowrap; - background-color: #007bff; - transition: width 0.6s ease; -} - -@media (prefers-reduced-motion: reduce) { - .progress-bar { - transition: none; - } -} - -.progress-bar-striped { - 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); - background-size: 1rem 1rem; -} - -.progress-bar-animated { - -webkit-animation: progress-bar-stripes 1s linear infinite; - animation: progress-bar-stripes 1s linear infinite; -} - -@media (prefers-reduced-motion: reduce) { - .progress-bar-animated { - -webkit-animation: none; - animation: none; - } -} - -.media { - display: -ms-flexbox; - display: flex; - -ms-flex-align: start; - align-items: flex-start; -} - -.media-body { - -ms-flex: 1; - flex: 1; -} - -.list-group { - display: -ms-flexbox; - display: flex; - -ms-flex-direction: column; - flex-direction: column; - padding-left: 0; - margin-bottom: 0; -} - -.list-group-item-action { - width: 100%; - color: #495057; - text-align: inherit; -} - -.list-group-item-action:hover, .list-group-item-action:focus { - z-index: 1; - color: #495057; - text-decoration: none; - background-color: #f8f9fa; -} - -.list-group-item-action:active { - color: #212529; - background-color: #e9ecef; -} - -.list-group-item { - position: relative; - display: block; - padding: 0.75rem 1.25rem; - margin-bottom: -1px; - background-color: #fff; - border: 1px solid rgba(0, 0, 0, 0.125); -} - -.list-group-item:first-child { - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; -} - -.list-group-item:last-child { - margin-bottom: 0; - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; -} - -.list-group-item.disabled, .list-group-item:disabled { - color: #6c757d; - pointer-events: none; - background-color: #fff; -} - -.list-group-item.active { - z-index: 2; - color: #fff; - background-color: #007bff; - border-color: #007bff; -} - -.list-group-horizontal { - -ms-flex-direction: row; - flex-direction: row; -} - -.list-group-horizontal .list-group-item { - margin-right: -1px; - margin-bottom: 0; -} - -.list-group-horizontal .list-group-item:first-child { - border-top-left-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; -} - -.list-group-horizontal .list-group-item:last-child { - margin-right: 0; - border-top-right-radius: 0.25rem; - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0; -} - -@media (min-width: 576px) { - .list-group-horizontal-sm { - -ms-flex-direction: row; - flex-direction: row; - } - .list-group-horizontal-sm .list-group-item { - margin-right: -1px; - margin-bottom: 0; - } - .list-group-horizontal-sm .list-group-item:first-child { - border-top-left-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; - } - .list-group-horizontal-sm .list-group-item:last-child { - margin-right: 0; - border-top-right-radius: 0.25rem; - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0; - } -} - -@media (min-width: 768px) { - .list-group-horizontal-md { - -ms-flex-direction: row; - flex-direction: row; - } - .list-group-horizontal-md .list-group-item { - margin-right: -1px; - margin-bottom: 0; - } - .list-group-horizontal-md .list-group-item:first-child { - border-top-left-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; - } - .list-group-horizontal-md .list-group-item:last-child { - margin-right: 0; - border-top-right-radius: 0.25rem; - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0; - } -} - -@media (min-width: 992px) { - .list-group-horizontal-lg { - -ms-flex-direction: row; - flex-direction: row; - } - .list-group-horizontal-lg .list-group-item { - margin-right: -1px; - margin-bottom: 0; - } - .list-group-horizontal-lg .list-group-item:first-child { - border-top-left-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; - } - .list-group-horizontal-lg .list-group-item:last-child { - margin-right: 0; - border-top-right-radius: 0.25rem; - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0; - } -} - -@media (min-width: 1200px) { - .list-group-horizontal-xl { - -ms-flex-direction: row; - flex-direction: row; - } - .list-group-horizontal-xl .list-group-item { - margin-right: -1px; - margin-bottom: 0; - } - .list-group-horizontal-xl .list-group-item:first-child { - border-top-left-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; - } - .list-group-horizontal-xl .list-group-item:last-child { - margin-right: 0; - border-top-right-radius: 0.25rem; - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0; - } -} - -.list-group-flush .list-group-item { - border-right: 0; - border-left: 0; - border-radius: 0; -} - -.list-group-flush .list-group-item:last-child { - margin-bottom: -1px; -} - -.list-group-flush:first-child .list-group-item:first-child { - border-top: 0; -} - -.list-group-flush:last-child .list-group-item:last-child { - margin-bottom: 0; - border-bottom: 0; -} - -.list-group-item-primary { - color: #004085; - background-color: #b8daff; -} - -.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus { - color: #004085; - background-color: #9fcdff; -} - -.list-group-item-primary.list-group-item-action.active { - color: #fff; - background-color: #004085; - border-color: #004085; -} - -.list-group-item-secondary { - color: #383d41; - background-color: #d6d8db; -} - -.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus { - color: #383d41; - background-color: #c8cbcf; -} - -.list-group-item-secondary.list-group-item-action.active { - color: #fff; - background-color: #383d41; - border-color: #383d41; -} - -.list-group-item-success { - color: #155724; - background-color: #c3e6cb; -} - -.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus { - color: #155724; - background-color: #b1dfbb; -} - -.list-group-item-success.list-group-item-action.active { - color: #fff; - background-color: #155724; - border-color: #155724; -} - -.list-group-item-info { - color: #0c5460; - background-color: #bee5eb; -} - -.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus { - color: #0c5460; - background-color: #abdde5; -} - -.list-group-item-info.list-group-item-action.active { - color: #fff; - background-color: #0c5460; - border-color: #0c5460; -} - -.list-group-item-warning { - color: #856404; - background-color: #ffeeba; -} - -.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus { - color: #856404; - background-color: #ffe8a1; -} - -.list-group-item-warning.list-group-item-action.active { - color: #fff; - background-color: #856404; - border-color: #856404; -} - -.list-group-item-danger { - color: #721c24; - background-color: #f5c6cb; -} - -.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus { - color: #721c24; - background-color: #f1b0b7; -} - -.list-group-item-danger.list-group-item-action.active { - color: #fff; - background-color: #721c24; - border-color: #721c24; -} - -.list-group-item-light { - color: #818182; - background-color: #fdfdfe; -} - -.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus { - color: #818182; - background-color: #ececf6; -} - -.list-group-item-light.list-group-item-action.active { - color: #fff; - background-color: #818182; - border-color: #818182; -} - -.list-group-item-dark { - color: #1b1e21; - background-color: #c6c8ca; -} - -.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus { - color: #1b1e21; - background-color: #b9bbbe; -} - -.list-group-item-dark.list-group-item-action.active { - color: #fff; - background-color: #1b1e21; - border-color: #1b1e21; -} - -.close { - float: right; - font-size: 1.5rem; - font-weight: 700; - line-height: 1; - color: #000; - text-shadow: 0 1px 0 #fff; - opacity: .5; -} - -.close:hover { - color: #000; - text-decoration: none; -} - -.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus { - opacity: .75; -} - -button.close { - padding: 0; - background-color: transparent; - border: 0; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; -} - -a.close.disabled { - pointer-events: none; -} - -.toast { - max-width: 350px; - overflow: hidden; - font-size: 0.875rem; - background-color: rgba(255, 255, 255, 0.85); - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.1); - box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1); - -webkit-backdrop-filter: blur(10px); - backdrop-filter: blur(10px); - opacity: 0; - border-radius: 0.25rem; -} - -.toast:not(:last-child) { - margin-bottom: 0.75rem; -} - -.toast.showing { - opacity: 1; -} - -.toast.show { - display: block; - opacity: 1; -} - -.toast.hide { - display: none; -} - -.toast-header { - display: -ms-flexbox; - display: flex; - -ms-flex-align: center; - align-items: center; - padding: 0.25rem 0.75rem; - color: #6c757d; - background-color: rgba(255, 255, 255, 0.85); - background-clip: padding-box; - border-bottom: 1px solid rgba(0, 0, 0, 0.05); -} - -.toast-body { - padding: 0.75rem; -} - -.modal-open { - overflow: hidden; -} - -.modal-open .modal { - overflow-x: hidden; - overflow-y: auto; -} - -.modal { - position: fixed; - top: 0; - left: 0; - z-index: 1050; - display: none; - width: 100%; - height: 100%; - overflow: hidden; - outline: 0; -} - -.modal-dialog { - position: relative; - width: auto; - margin: 0.5rem; - pointer-events: none; -} - -.modal.fade .modal-dialog { - transition: -webkit-transform 0.3s ease-out; - transition: transform 0.3s ease-out; - transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out; - -webkit-transform: translate(0, -50px); - transform: translate(0, -50px); -} - -@media (prefers-reduced-motion: reduce) { - .modal.fade .modal-dialog { - transition: none; - } -} - -.modal.show .modal-dialog { - -webkit-transform: none; - transform: none; -} - -.modal-dialog-scrollable { - display: -ms-flexbox; - display: flex; - max-height: calc(100% - 1rem); -} - -.modal-dialog-scrollable .modal-content { - max-height: calc(100vh - 1rem); - overflow: hidden; -} - -.modal-dialog-scrollable .modal-header, -.modal-dialog-scrollable .modal-footer { - -ms-flex-negative: 0; - flex-shrink: 0; -} - -.modal-dialog-scrollable .modal-body { - overflow-y: auto; -} - -.modal-dialog-centered { - display: -ms-flexbox; - display: flex; - -ms-flex-align: center; - align-items: center; - min-height: calc(100% - 1rem); -} - -.modal-dialog-centered::before { - display: block; - height: calc(100vh - 1rem); - content: ""; -} - -.modal-dialog-centered.modal-dialog-scrollable { - -ms-flex-direction: column; - flex-direction: column; - -ms-flex-pack: center; - justify-content: center; - height: 100%; -} - -.modal-dialog-centered.modal-dialog-scrollable .modal-content { - max-height: none; -} - -.modal-dialog-centered.modal-dialog-scrollable::before { - content: none; -} - -.modal-content { - position: relative; - display: -ms-flexbox; - display: flex; - -ms-flex-direction: column; - flex-direction: column; - width: 100%; - pointer-events: auto; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 0.3rem; - outline: 0; -} - -.modal-backdrop { - position: fixed; - top: 0; - left: 0; - z-index: 1040; - width: 100vw; - height: 100vh; - background-color: #000; -} - -.modal-backdrop.fade { - opacity: 0; -} - -.modal-backdrop.show { - opacity: 0.5; -} - -.modal-header { - display: -ms-flexbox; - display: flex; - -ms-flex-align: start; - align-items: flex-start; - -ms-flex-pack: justify; - justify-content: space-between; - padding: 1rem 1rem; - border-bottom: 1px solid #dee2e6; - border-top-left-radius: 0.3rem; - border-top-right-radius: 0.3rem; -} - -.modal-header .close { - padding: 1rem 1rem; - margin: -1rem -1rem -1rem auto; -} - -.modal-title { - margin-bottom: 0; - line-height: 1.5; -} - -.modal-body { - position: relative; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - padding: 1rem; -} - -.modal-footer { - display: -ms-flexbox; - display: flex; - -ms-flex-align: center; - align-items: center; - -ms-flex-pack: end; - justify-content: flex-end; - padding: 1rem; - border-top: 1px solid #dee2e6; - border-bottom-right-radius: 0.3rem; - border-bottom-left-radius: 0.3rem; -} - -.modal-footer > :not(:first-child) { - margin-left: .25rem; -} - -.modal-footer > :not(:last-child) { - margin-right: .25rem; -} - -.modal-scrollbar-measure { - position: absolute; - top: -9999px; - width: 50px; - height: 50px; - overflow: scroll; -} - -@media (min-width: 576px) { - .modal-dialog { - max-width: 500px; - margin: 1.75rem auto; - } - .modal-dialog-scrollable { - max-height: calc(100% - 3.5rem); - } - .modal-dialog-scrollable .modal-content { - max-height: calc(100vh - 3.5rem); - } - .modal-dialog-centered { - min-height: calc(100% - 3.5rem); - } - .modal-dialog-centered::before { - height: calc(100vh - 3.5rem); - } - .modal-sm { - max-width: 300px; - } -} - -@media (min-width: 992px) { - .modal-lg, - .modal-xl { - max-width: 800px; - } -} - -@media (min-width: 1200px) { - .modal-xl { - max-width: 1140px; - } -} - -.tooltip { - position: absolute; - z-index: 1070; - display: block; - margin: 0; - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; - font-style: normal; - font-weight: 400; - line-height: 1.5; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - white-space: normal; - line-break: auto; - font-size: 0.875rem; - word-wrap: break-word; - opacity: 0; -} - -.tooltip.show { - opacity: 0.9; -} - -.tooltip .arrow { - position: absolute; - display: block; - width: 0.8rem; - height: 0.4rem; -} - -.tooltip .arrow::before { - position: absolute; - content: ""; - border-color: transparent; - border-style: solid; -} - -.bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] { - padding: 0.4rem 0; -} - -.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow { - bottom: 0; -} - -.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before { - top: 0; - border-width: 0.4rem 0.4rem 0; - border-top-color: #000; -} - -.bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] { - padding: 0 0.4rem; -} - -.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow { - left: 0; - width: 0.4rem; - height: 0.8rem; -} - -.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before { - right: 0; - border-width: 0.4rem 0.4rem 0.4rem 0; - border-right-color: #000; -} - -.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] { - padding: 0.4rem 0; -} - -.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow { - top: 0; -} - -.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before { - bottom: 0; - border-width: 0 0.4rem 0.4rem; - border-bottom-color: #000; -} - -.bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] { - padding: 0 0.4rem; -} - -.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow { - right: 0; - width: 0.4rem; - height: 0.8rem; -} - -.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before { - left: 0; - border-width: 0.4rem 0 0.4rem 0.4rem; - border-left-color: #000; -} - -.tooltip-inner { - max-width: 200px; - padding: 0.25rem 0.5rem; - color: #fff; - text-align: center; - background-color: #000; - border-radius: 0.25rem; -} - -.popover { - position: absolute; - top: 0; - left: 0; - z-index: 1060; - display: block; - max-width: 276px; - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; - font-style: normal; - font-weight: 400; - line-height: 1.5; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - white-space: normal; - line-break: auto; - font-size: 0.875rem; - word-wrap: break-word; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 0.3rem; -} - -.popover .arrow { - position: absolute; - display: block; - width: 1rem; - height: 0.5rem; - margin: 0 0.3rem; -} - -.popover .arrow::before, .popover .arrow::after { - position: absolute; - display: block; - content: ""; - border-color: transparent; - border-style: solid; -} - -.bs-popover-top, .bs-popover-auto[x-placement^="top"] { - margin-bottom: 0.5rem; -} - -.bs-popover-top > .arrow, .bs-popover-auto[x-placement^="top"] > .arrow { - bottom: calc((0.5rem + 1px) * -1); -} - -.bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^="top"] > .arrow::before { - bottom: 0; - border-width: 0.5rem 0.5rem 0; - border-top-color: rgba(0, 0, 0, 0.25); -} - -.bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^="top"] > .arrow::after { - bottom: 1px; - border-width: 0.5rem 0.5rem 0; - border-top-color: #fff; -} - -.bs-popover-right, .bs-popover-auto[x-placement^="right"] { - margin-left: 0.5rem; -} - -.bs-popover-right > .arrow, .bs-popover-auto[x-placement^="right"] > .arrow { - left: calc((0.5rem + 1px) * -1); - width: 0.5rem; - height: 1rem; - margin: 0.3rem 0; -} - -.bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^="right"] > .arrow::before { - left: 0; - border-width: 0.5rem 0.5rem 0.5rem 0; - border-right-color: rgba(0, 0, 0, 0.25); -} - -.bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^="right"] > .arrow::after { - left: 1px; - border-width: 0.5rem 0.5rem 0.5rem 0; - border-right-color: #fff; -} - -.bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] { - margin-top: 0.5rem; -} - -.bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^="bottom"] > .arrow { - top: calc((0.5rem + 1px) * -1); -} - -.bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^="bottom"] > .arrow::before { - top: 0; - border-width: 0 0.5rem 0.5rem 0.5rem; - border-bottom-color: rgba(0, 0, 0, 0.25); -} - -.bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^="bottom"] > .arrow::after { - top: 1px; - border-width: 0 0.5rem 0.5rem 0.5rem; - border-bottom-color: #fff; -} - -.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before { - position: absolute; - top: 0; - left: 50%; - display: block; - width: 1rem; - margin-left: -0.5rem; - content: ""; - border-bottom: 1px solid #f7f7f7; -} - -.bs-popover-left, .bs-popover-auto[x-placement^="left"] { - margin-right: 0.5rem; -} - -.bs-popover-left > .arrow, .bs-popover-auto[x-placement^="left"] > .arrow { - right: calc((0.5rem + 1px) * -1); - width: 0.5rem; - height: 1rem; - margin: 0.3rem 0; -} - -.bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^="left"] > .arrow::before { - right: 0; - border-width: 0.5rem 0 0.5rem 0.5rem; - border-left-color: rgba(0, 0, 0, 0.25); -} - -.bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^="left"] > .arrow::after { - right: 1px; - border-width: 0.5rem 0 0.5rem 0.5rem; - border-left-color: #fff; -} - -.popover-header { - padding: 0.5rem 0.75rem; - margin-bottom: 0; - font-size: 1rem; - background-color: #f7f7f7; - border-bottom: 1px solid #ebebeb; - border-top-left-radius: calc(0.3rem - 1px); - border-top-right-radius: calc(0.3rem - 1px); -} - -.popover-header:empty { - display: none; -} - -.popover-body { - padding: 0.5rem 0.75rem; - color: #212529; -} - -.carousel { - position: relative; -} - -.carousel.pointer-event { - -ms-touch-action: pan-y; - touch-action: pan-y; -} - -.carousel-inner { - position: relative; - width: 100%; - overflow: hidden; -} - -.carousel-inner::after { - display: block; - clear: both; - content: ""; -} - -.carousel-item { - position: relative; - display: none; - float: left; - width: 100%; - margin-right: -100%; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; - transition: -webkit-transform 0.6s ease-in-out; - transition: transform 0.6s ease-in-out; - transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out; -} - -@media (prefers-reduced-motion: reduce) { - .carousel-item { - transition: none; - } -} - -.carousel-item.active, -.carousel-item-next, -.carousel-item-prev { - display: block; -} - -.carousel-item-next:not(.carousel-item-left), -.active.carousel-item-right { - -webkit-transform: translateX(100%); - transform: translateX(100%); -} - -.carousel-item-prev:not(.carousel-item-right), -.active.carousel-item-left { - -webkit-transform: translateX(-100%); - transform: translateX(-100%); -} - -.carousel-fade .carousel-item { - opacity: 0; - transition-property: opacity; - -webkit-transform: none; - transform: none; -} - -.carousel-fade .carousel-item.active, -.carousel-fade .carousel-item-next.carousel-item-left, -.carousel-fade .carousel-item-prev.carousel-item-right { - z-index: 1; - opacity: 1; -} - -.carousel-fade .active.carousel-item-left, -.carousel-fade .active.carousel-item-right { - z-index: 0; - opacity: 0; - transition: 0s 0.6s opacity; -} - -@media (prefers-reduced-motion: reduce) { - .carousel-fade .active.carousel-item-left, - .carousel-fade .active.carousel-item-right { - transition: none; - } -} - -.carousel-control-prev, -.carousel-control-next { - position: absolute; - top: 0; - bottom: 0; - z-index: 1; - display: -ms-flexbox; - display: flex; - -ms-flex-align: center; - align-items: center; - -ms-flex-pack: center; - justify-content: center; - width: 15%; - color: #fff; - text-align: center; - opacity: 0.5; - transition: opacity 0.15s ease; -} - -@media (prefers-reduced-motion: reduce) { - .carousel-control-prev, - .carousel-control-next { - transition: none; - } -} - -.carousel-control-prev:hover, .carousel-control-prev:focus, -.carousel-control-next:hover, -.carousel-control-next:focus { - color: #fff; - text-decoration: none; - outline: 0; - opacity: 0.9; -} - -.carousel-control-prev { - left: 0; -} - -.carousel-control-next { - right: 0; -} - -.carousel-control-prev-icon, -.carousel-control-next-icon { - display: inline-block; - width: 20px; - height: 20px; - background: no-repeat 50% / 100% 100%; -} - -.carousel-control-prev-icon { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e"); -} - -.carousel-control-next-icon { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e"); -} - -.carousel-indicators { - position: absolute; - right: 0; - bottom: 0; - left: 0; - z-index: 15; - display: -ms-flexbox; - display: flex; - -ms-flex-pack: center; - justify-content: center; - padding-left: 0; - margin-right: 15%; - margin-left: 15%; - list-style: none; -} - -.carousel-indicators li { - box-sizing: content-box; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - width: 30px; - height: 3px; - margin-right: 3px; - margin-left: 3px; - text-indent: -999px; - cursor: pointer; - background-color: #fff; - background-clip: padding-box; - border-top: 10px solid transparent; - border-bottom: 10px solid transparent; - opacity: .5; - transition: opacity 0.6s ease; -} - -@media (prefers-reduced-motion: reduce) { - .carousel-indicators li { - transition: none; - } -} - -.carousel-indicators .active { - opacity: 1; -} - -.carousel-caption { - position: absolute; - right: 15%; - bottom: 20px; - left: 15%; - z-index: 10; - padding-top: 20px; - padding-bottom: 20px; - color: #fff; - text-align: center; -} - -@-webkit-keyframes spinner-border { - to { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@keyframes spinner-border { - to { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -.spinner-border { - display: inline-block; - width: 2rem; - height: 2rem; - vertical-align: text-bottom; - border: 0.25em solid currentColor; - border-right-color: transparent; - border-radius: 50%; - -webkit-animation: spinner-border .75s linear infinite; - animation: spinner-border .75s linear infinite; -} - -.spinner-border-sm { - width: 1rem; - height: 1rem; - border-width: 0.2em; -} - -@-webkit-keyframes spinner-grow { - 0% { - -webkit-transform: scale(0); - transform: scale(0); - } - 50% { - opacity: 1; - } -} - -@keyframes spinner-grow { - 0% { - -webkit-transform: scale(0); - transform: scale(0); - } - 50% { - opacity: 1; - } -} - -.spinner-grow { - display: inline-block; - width: 2rem; - height: 2rem; - vertical-align: text-bottom; - background-color: currentColor; - border-radius: 50%; - opacity: 0; - -webkit-animation: spinner-grow .75s linear infinite; - animation: spinner-grow .75s linear infinite; -} - -.spinner-grow-sm { - width: 1rem; - height: 1rem; -} - -.align-baseline { - vertical-align: baseline !important; -} - -.align-top { - vertical-align: top !important; -} - -.align-middle { - vertical-align: middle !important; -} - -.align-bottom { - vertical-align: bottom !important; -} - -.align-text-bottom { - vertical-align: text-bottom !important; -} - -.align-text-top { - vertical-align: text-top !important; -} - -.bg-primary { - background-color: #007bff !important; -} - -a.bg-primary:hover, a.bg-primary:focus, -button.bg-primary:hover, -button.bg-primary:focus { - background-color: #0062cc !important; -} - -.bg-secondary { - background-color: #6c757d !important; -} - -a.bg-secondary:hover, a.bg-secondary:focus, -button.bg-secondary:hover, -button.bg-secondary:focus { - background-color: #545b62 !important; -} - -.bg-success { - background-color: #28a745 !important; -} - -a.bg-success:hover, a.bg-success:focus, -button.bg-success:hover, -button.bg-success:focus { - background-color: #1e7e34 !important; -} - -.bg-info { - background-color: #17a2b8 !important; -} - -a.bg-info:hover, a.bg-info:focus, -button.bg-info:hover, -button.bg-info:focus { - background-color: #117a8b !important; -} - -.bg-warning { - background-color: #ffc107 !important; -} - -a.bg-warning:hover, a.bg-warning:focus, -button.bg-warning:hover, -button.bg-warning:focus { - background-color: #d39e00 !important; -} - -.bg-danger { - background-color: #dc3545 !important; -} - -a.bg-danger:hover, a.bg-danger:focus, -button.bg-danger:hover, -button.bg-danger:focus { - background-color: #bd2130 !important; -} - -.bg-light { - background-color: #f8f9fa !important; -} - -a.bg-light:hover, a.bg-light:focus, -button.bg-light:hover, -button.bg-light:focus { - background-color: #dae0e5 !important; -} - -.bg-dark { - background-color: #343a40 !important; -} - -a.bg-dark:hover, a.bg-dark:focus, -button.bg-dark:hover, -button.bg-dark:focus { - background-color: #1d2124 !important; -} - -.bg-white { - background-color: #fff !important; -} - -.bg-transparent { - background-color: transparent !important; -} - -.border { - border: 1px solid #dee2e6 !important; -} - -.border-top { - border-top: 1px solid #dee2e6 !important; -} - -.border-right { - border-right: 1px solid #dee2e6 !important; -} - -.border-bottom { - border-bottom: 1px solid #dee2e6 !important; -} - -.border-left { - border-left: 1px solid #dee2e6 !important; -} - -.border-0 { - border: 0 !important; -} - -.border-top-0 { - border-top: 0 !important; -} - -.border-right-0 { - border-right: 0 !important; -} - -.border-bottom-0 { - border-bottom: 0 !important; -} - -.border-left-0 { - border-left: 0 !important; -} - -.border-primary { - border-color: #007bff !important; -} - -.border-secondary { - border-color: #6c757d !important; -} - -.border-success { - border-color: #28a745 !important; -} - -.border-info { - border-color: #17a2b8 !important; -} - -.border-warning { - border-color: #ffc107 !important; -} - -.border-danger { - border-color: #dc3545 !important; -} - -.border-light { - border-color: #f8f9fa !important; -} - -.border-dark { - border-color: #343a40 !important; -} - -.border-white { - border-color: #fff !important; -} - -.rounded-sm { - border-radius: 0.2rem !important; -} - -.rounded { - border-radius: 0.25rem !important; -} - -.rounded-top { - border-top-left-radius: 0.25rem !important; - border-top-right-radius: 0.25rem !important; -} - -.rounded-right { - border-top-right-radius: 0.25rem !important; - border-bottom-right-radius: 0.25rem !important; -} - -.rounded-bottom { - border-bottom-right-radius: 0.25rem !important; - border-bottom-left-radius: 0.25rem !important; -} - -.rounded-left { - border-top-left-radius: 0.25rem !important; - border-bottom-left-radius: 0.25rem !important; -} - -.rounded-lg { - border-radius: 0.3rem !important; -} - -.rounded-circle { - border-radius: 50% !important; -} - -.rounded-pill { - border-radius: 50rem !important; -} - -.rounded-0 { - border-radius: 0 !important; -} - -.clearfix::after { - display: block; - clear: both; - content: ""; -} - -.d-none { - display: none !important; -} - -.d-inline { - display: inline !important; -} - -.d-inline-block { - display: inline-block !important; -} - -.d-block { - display: block !important; -} - -.d-table { - display: table !important; -} - -.d-table-row { - display: table-row !important; -} - -.d-table-cell { - display: table-cell !important; -} - -.d-flex { - display: -ms-flexbox !important; - display: flex !important; -} - -.d-inline-flex { - display: -ms-inline-flexbox !important; - display: inline-flex !important; -} - -@media (min-width: 576px) { - .d-sm-none { - display: none !important; - } - .d-sm-inline { - display: inline !important; - } - .d-sm-inline-block { - display: inline-block !important; - } - .d-sm-block { - display: block !important; - } - .d-sm-table { - display: table !important; - } - .d-sm-table-row { - display: table-row !important; - } - .d-sm-table-cell { - display: table-cell !important; - } - .d-sm-flex { - display: -ms-flexbox !important; - display: flex !important; - } - .d-sm-inline-flex { - display: -ms-inline-flexbox !important; - display: inline-flex !important; - } -} - -@media (min-width: 768px) { - .d-md-none { - display: none !important; - } - .d-md-inline { - display: inline !important; - } - .d-md-inline-block { - display: inline-block !important; - } - .d-md-block { - display: block !important; - } - .d-md-table { - display: table !important; - } - .d-md-table-row { - display: table-row !important; - } - .d-md-table-cell { - display: table-cell !important; - } - .d-md-flex { - display: -ms-flexbox !important; - display: flex !important; - } - .d-md-inline-flex { - display: -ms-inline-flexbox !important; - display: inline-flex !important; - } -} - -@media (min-width: 992px) { - .d-lg-none { - display: none !important; - } - .d-lg-inline { - display: inline !important; - } - .d-lg-inline-block { - display: inline-block !important; - } - .d-lg-block { - display: block !important; - } - .d-lg-table { - display: table !important; - } - .d-lg-table-row { - display: table-row !important; - } - .d-lg-table-cell { - display: table-cell !important; - } - .d-lg-flex { - display: -ms-flexbox !important; - display: flex !important; - } - .d-lg-inline-flex { - display: -ms-inline-flexbox !important; - display: inline-flex !important; - } -} - -@media (min-width: 1200px) { - .d-xl-none { - display: none !important; - } - .d-xl-inline { - display: inline !important; - } - .d-xl-inline-block { - display: inline-block !important; - } - .d-xl-block { - display: block !important; - } - .d-xl-table { - display: table !important; - } - .d-xl-table-row { - display: table-row !important; - } - .d-xl-table-cell { - display: table-cell !important; - } - .d-xl-flex { - display: -ms-flexbox !important; - display: flex !important; - } - .d-xl-inline-flex { - display: -ms-inline-flexbox !important; - display: inline-flex !important; - } -} - -@media print { - .d-print-none { - display: none !important; - } - .d-print-inline { - display: inline !important; - } - .d-print-inline-block { - display: inline-block !important; - } - .d-print-block { - display: block !important; - } - .d-print-table { - display: table !important; - } - .d-print-table-row { - display: table-row !important; - } - .d-print-table-cell { - display: table-cell !important; - } - .d-print-flex { - display: -ms-flexbox !important; - display: flex !important; - } - .d-print-inline-flex { - display: -ms-inline-flexbox !important; - display: inline-flex !important; - } -} - -.embed-responsive { - position: relative; - display: block; - width: 100%; - padding: 0; - overflow: hidden; -} - -.embed-responsive::before { - display: block; - content: ""; -} - -.embed-responsive .embed-responsive-item, -.embed-responsive iframe, -.embed-responsive embed, -.embed-responsive object, -.embed-responsive video { - position: absolute; - top: 0; - bottom: 0; - left: 0; - width: 100%; - height: 100%; - border: 0; -} - -.embed-responsive-21by9::before { - padding-top: 42.857143%; -} - -.embed-responsive-16by9::before { - padding-top: 56.25%; -} - -.embed-responsive-4by3::before { - padding-top: 75%; -} - -.embed-responsive-1by1::before { - padding-top: 100%; -} - -.flex-row { - -ms-flex-direction: row !important; - flex-direction: row !important; -} - -.flex-column { - -ms-flex-direction: column !important; - flex-direction: column !important; -} - -.flex-row-reverse { - -ms-flex-direction: row-reverse !important; - flex-direction: row-reverse !important; -} - -.flex-column-reverse { - -ms-flex-direction: column-reverse !important; - flex-direction: column-reverse !important; -} - -.flex-wrap { - -ms-flex-wrap: wrap !important; - flex-wrap: wrap !important; -} - -.flex-nowrap { - -ms-flex-wrap: nowrap !important; - flex-wrap: nowrap !important; -} - -.flex-wrap-reverse { - -ms-flex-wrap: wrap-reverse !important; - flex-wrap: wrap-reverse !important; -} - -.flex-fill { - -ms-flex: 1 1 auto !important; - flex: 1 1 auto !important; -} - -.flex-grow-0 { - -ms-flex-positive: 0 !important; - flex-grow: 0 !important; -} - -.flex-grow-1 { - -ms-flex-positive: 1 !important; - flex-grow: 1 !important; -} - -.flex-shrink-0 { - -ms-flex-negative: 0 !important; - flex-shrink: 0 !important; -} - -.flex-shrink-1 { - -ms-flex-negative: 1 !important; - flex-shrink: 1 !important; -} - -.justify-content-start { - -ms-flex-pack: start !important; - justify-content: flex-start !important; -} - -.justify-content-end { - -ms-flex-pack: end !important; - justify-content: flex-end !important; -} - -.justify-content-center { - -ms-flex-pack: center !important; - justify-content: center !important; -} - -.justify-content-between { - -ms-flex-pack: justify !important; - justify-content: space-between !important; -} - -.justify-content-around { - -ms-flex-pack: distribute !important; - justify-content: space-around !important; -} - -.align-items-start { - -ms-flex-align: start !important; - align-items: flex-start !important; -} - -.align-items-end { - -ms-flex-align: end !important; - align-items: flex-end !important; -} - -.align-items-center { - -ms-flex-align: center !important; - align-items: center !important; -} - -.align-items-baseline { - -ms-flex-align: baseline !important; - align-items: baseline !important; -} - -.align-items-stretch { - -ms-flex-align: stretch !important; - align-items: stretch !important; -} - -.align-content-start { - -ms-flex-line-pack: start !important; - align-content: flex-start !important; -} - -.align-content-end { - -ms-flex-line-pack: end !important; - align-content: flex-end !important; -} - -.align-content-center { - -ms-flex-line-pack: center !important; - align-content: center !important; -} - -.align-content-between { - -ms-flex-line-pack: justify !important; - align-content: space-between !important; -} - -.align-content-around { - -ms-flex-line-pack: distribute !important; - align-content: space-around !important; -} - -.align-content-stretch { - -ms-flex-line-pack: stretch !important; - align-content: stretch !important; -} - -.align-self-auto { - -ms-flex-item-align: auto !important; - align-self: auto !important; -} - -.align-self-start { - -ms-flex-item-align: start !important; - align-self: flex-start !important; -} - -.align-self-end { - -ms-flex-item-align: end !important; - align-self: flex-end !important; -} - -.align-self-center { - -ms-flex-item-align: center !important; - align-self: center !important; -} - -.align-self-baseline { - -ms-flex-item-align: baseline !important; - align-self: baseline !important; -} - -.align-self-stretch { - -ms-flex-item-align: stretch !important; - align-self: stretch !important; -} - -@media (min-width: 576px) { - .flex-sm-row { - -ms-flex-direction: row !important; - flex-direction: row !important; - } - .flex-sm-column { - -ms-flex-direction: column !important; - flex-direction: column !important; - } - .flex-sm-row-reverse { - -ms-flex-direction: row-reverse !important; - flex-direction: row-reverse !important; - } - .flex-sm-column-reverse { - -ms-flex-direction: column-reverse !important; - flex-direction: column-reverse !important; - } - .flex-sm-wrap { - -ms-flex-wrap: wrap !important; - flex-wrap: wrap !important; - } - .flex-sm-nowrap { - -ms-flex-wrap: nowrap !important; - flex-wrap: nowrap !important; - } - .flex-sm-wrap-reverse { - -ms-flex-wrap: wrap-reverse !important; - flex-wrap: wrap-reverse !important; - } - .flex-sm-fill { - -ms-flex: 1 1 auto !important; - flex: 1 1 auto !important; - } - .flex-sm-grow-0 { - -ms-flex-positive: 0 !important; - flex-grow: 0 !important; - } - .flex-sm-grow-1 { - -ms-flex-positive: 1 !important; - flex-grow: 1 !important; - } - .flex-sm-shrink-0 { - -ms-flex-negative: 0 !important; - flex-shrink: 0 !important; - } - .flex-sm-shrink-1 { - -ms-flex-negative: 1 !important; - flex-shrink: 1 !important; - } - .justify-content-sm-start { - -ms-flex-pack: start !important; - justify-content: flex-start !important; - } - .justify-content-sm-end { - -ms-flex-pack: end !important; - justify-content: flex-end !important; - } - .justify-content-sm-center { - -ms-flex-pack: center !important; - justify-content: center !important; - } - .justify-content-sm-between { - -ms-flex-pack: justify !important; - justify-content: space-between !important; - } - .justify-content-sm-around { - -ms-flex-pack: distribute !important; - justify-content: space-around !important; - } - .align-items-sm-start { - -ms-flex-align: start !important; - align-items: flex-start !important; - } - .align-items-sm-end { - -ms-flex-align: end !important; - align-items: flex-end !important; - } - .align-items-sm-center { - -ms-flex-align: center !important; - align-items: center !important; - } - .align-items-sm-baseline { - -ms-flex-align: baseline !important; - align-items: baseline !important; - } - .align-items-sm-stretch { - -ms-flex-align: stretch !important; - align-items: stretch !important; - } - .align-content-sm-start { - -ms-flex-line-pack: start !important; - align-content: flex-start !important; - } - .align-content-sm-end { - -ms-flex-line-pack: end !important; - align-content: flex-end !important; - } - .align-content-sm-center { - -ms-flex-line-pack: center !important; - align-content: center !important; - } - .align-content-sm-between { - -ms-flex-line-pack: justify !important; - align-content: space-between !important; - } - .align-content-sm-around { - -ms-flex-line-pack: distribute !important; - align-content: space-around !important; - } - .align-content-sm-stretch { - -ms-flex-line-pack: stretch !important; - align-content: stretch !important; - } - .align-self-sm-auto { - -ms-flex-item-align: auto !important; - align-self: auto !important; - } - .align-self-sm-start { - -ms-flex-item-align: start !important; - align-self: flex-start !important; - } - .align-self-sm-end { - -ms-flex-item-align: end !important; - align-self: flex-end !important; - } - .align-self-sm-center { - -ms-flex-item-align: center !important; - align-self: center !important; - } - .align-self-sm-baseline { - -ms-flex-item-align: baseline !important; - align-self: baseline !important; - } - .align-self-sm-stretch { - -ms-flex-item-align: stretch !important; - align-self: stretch !important; - } -} - -@media (min-width: 768px) { - .flex-md-row { - -ms-flex-direction: row !important; - flex-direction: row !important; - } - .flex-md-column { - -ms-flex-direction: column !important; - flex-direction: column !important; - } - .flex-md-row-reverse { - -ms-flex-direction: row-reverse !important; - flex-direction: row-reverse !important; - } - .flex-md-column-reverse { - -ms-flex-direction: column-reverse !important; - flex-direction: column-reverse !important; - } - .flex-md-wrap { - -ms-flex-wrap: wrap !important; - flex-wrap: wrap !important; - } - .flex-md-nowrap { - -ms-flex-wrap: nowrap !important; - flex-wrap: nowrap !important; - } - .flex-md-wrap-reverse { - -ms-flex-wrap: wrap-reverse !important; - flex-wrap: wrap-reverse !important; - } - .flex-md-fill { - -ms-flex: 1 1 auto !important; - flex: 1 1 auto !important; - } - .flex-md-grow-0 { - -ms-flex-positive: 0 !important; - flex-grow: 0 !important; - } - .flex-md-grow-1 { - -ms-flex-positive: 1 !important; - flex-grow: 1 !important; - } - .flex-md-shrink-0 { - -ms-flex-negative: 0 !important; - flex-shrink: 0 !important; - } - .flex-md-shrink-1 { - -ms-flex-negative: 1 !important; - flex-shrink: 1 !important; - } - .justify-content-md-start { - -ms-flex-pack: start !important; - justify-content: flex-start !important; - } - .justify-content-md-end { - -ms-flex-pack: end !important; - justify-content: flex-end !important; - } - .justify-content-md-center { - -ms-flex-pack: center !important; - justify-content: center !important; - } - .justify-content-md-between { - -ms-flex-pack: justify !important; - justify-content: space-between !important; - } - .justify-content-md-around { - -ms-flex-pack: distribute !important; - justify-content: space-around !important; - } - .align-items-md-start { - -ms-flex-align: start !important; - align-items: flex-start !important; - } - .align-items-md-end { - -ms-flex-align: end !important; - align-items: flex-end !important; - } - .align-items-md-center { - -ms-flex-align: center !important; - align-items: center !important; - } - .align-items-md-baseline { - -ms-flex-align: baseline !important; - align-items: baseline !important; - } - .align-items-md-stretch { - -ms-flex-align: stretch !important; - align-items: stretch !important; - } - .align-content-md-start { - -ms-flex-line-pack: start !important; - align-content: flex-start !important; - } - .align-content-md-end { - -ms-flex-line-pack: end !important; - align-content: flex-end !important; - } - .align-content-md-center { - -ms-flex-line-pack: center !important; - align-content: center !important; - } - .align-content-md-between { - -ms-flex-line-pack: justify !important; - align-content: space-between !important; - } - .align-content-md-around { - -ms-flex-line-pack: distribute !important; - align-content: space-around !important; - } - .align-content-md-stretch { - -ms-flex-line-pack: stretch !important; - align-content: stretch !important; - } - .align-self-md-auto { - -ms-flex-item-align: auto !important; - align-self: auto !important; - } - .align-self-md-start { - -ms-flex-item-align: start !important; - align-self: flex-start !important; - } - .align-self-md-end { - -ms-flex-item-align: end !important; - align-self: flex-end !important; - } - .align-self-md-center { - -ms-flex-item-align: center !important; - align-self: center !important; - } - .align-self-md-baseline { - -ms-flex-item-align: baseline !important; - align-self: baseline !important; - } - .align-self-md-stretch { - -ms-flex-item-align: stretch !important; - align-self: stretch !important; - } -} - -@media (min-width: 992px) { - .flex-lg-row { - -ms-flex-direction: row !important; - flex-direction: row !important; - } - .flex-lg-column { - -ms-flex-direction: column !important; - flex-direction: column !important; - } - .flex-lg-row-reverse { - -ms-flex-direction: row-reverse !important; - flex-direction: row-reverse !important; - } - .flex-lg-column-reverse { - -ms-flex-direction: column-reverse !important; - flex-direction: column-reverse !important; - } - .flex-lg-wrap { - -ms-flex-wrap: wrap !important; - flex-wrap: wrap !important; - } - .flex-lg-nowrap { - -ms-flex-wrap: nowrap !important; - flex-wrap: nowrap !important; - } - .flex-lg-wrap-reverse { - -ms-flex-wrap: wrap-reverse !important; - flex-wrap: wrap-reverse !important; - } - .flex-lg-fill { - -ms-flex: 1 1 auto !important; - flex: 1 1 auto !important; - } - .flex-lg-grow-0 { - -ms-flex-positive: 0 !important; - flex-grow: 0 !important; - } - .flex-lg-grow-1 { - -ms-flex-positive: 1 !important; - flex-grow: 1 !important; - } - .flex-lg-shrink-0 { - -ms-flex-negative: 0 !important; - flex-shrink: 0 !important; - } - .flex-lg-shrink-1 { - -ms-flex-negative: 1 !important; - flex-shrink: 1 !important; - } - .justify-content-lg-start { - -ms-flex-pack: start !important; - justify-content: flex-start !important; - } - .justify-content-lg-end { - -ms-flex-pack: end !important; - justify-content: flex-end !important; - } - .justify-content-lg-center { - -ms-flex-pack: center !important; - justify-content: center !important; - } - .justify-content-lg-between { - -ms-flex-pack: justify !important; - justify-content: space-between !important; - } - .justify-content-lg-around { - -ms-flex-pack: distribute !important; - justify-content: space-around !important; - } - .align-items-lg-start { - -ms-flex-align: start !important; - align-items: flex-start !important; - } - .align-items-lg-end { - -ms-flex-align: end !important; - align-items: flex-end !important; - } - .align-items-lg-center { - -ms-flex-align: center !important; - align-items: center !important; - } - .align-items-lg-baseline { - -ms-flex-align: baseline !important; - align-items: baseline !important; - } - .align-items-lg-stretch { - -ms-flex-align: stretch !important; - align-items: stretch !important; - } - .align-content-lg-start { - -ms-flex-line-pack: start !important; - align-content: flex-start !important; - } - .align-content-lg-end { - -ms-flex-line-pack: end !important; - align-content: flex-end !important; - } - .align-content-lg-center { - -ms-flex-line-pack: center !important; - align-content: center !important; - } - .align-content-lg-between { - -ms-flex-line-pack: justify !important; - align-content: space-between !important; - } - .align-content-lg-around { - -ms-flex-line-pack: distribute !important; - align-content: space-around !important; - } - .align-content-lg-stretch { - -ms-flex-line-pack: stretch !important; - align-content: stretch !important; - } - .align-self-lg-auto { - -ms-flex-item-align: auto !important; - align-self: auto !important; - } - .align-self-lg-start { - -ms-flex-item-align: start !important; - align-self: flex-start !important; - } - .align-self-lg-end { - -ms-flex-item-align: end !important; - align-self: flex-end !important; - } - .align-self-lg-center { - -ms-flex-item-align: center !important; - align-self: center !important; - } - .align-self-lg-baseline { - -ms-flex-item-align: baseline !important; - align-self: baseline !important; - } - .align-self-lg-stretch { - -ms-flex-item-align: stretch !important; - align-self: stretch !important; - } -} - -@media (min-width: 1200px) { - .flex-xl-row { - -ms-flex-direction: row !important; - flex-direction: row !important; - } - .flex-xl-column { - -ms-flex-direction: column !important; - flex-direction: column !important; - } - .flex-xl-row-reverse { - -ms-flex-direction: row-reverse !important; - flex-direction: row-reverse !important; - } - .flex-xl-column-reverse { - -ms-flex-direction: column-reverse !important; - flex-direction: column-reverse !important; - } - .flex-xl-wrap { - -ms-flex-wrap: wrap !important; - flex-wrap: wrap !important; - } - .flex-xl-nowrap { - -ms-flex-wrap: nowrap !important; - flex-wrap: nowrap !important; - } - .flex-xl-wrap-reverse { - -ms-flex-wrap: wrap-reverse !important; - flex-wrap: wrap-reverse !important; - } - .flex-xl-fill { - -ms-flex: 1 1 auto !important; - flex: 1 1 auto !important; - } - .flex-xl-grow-0 { - -ms-flex-positive: 0 !important; - flex-grow: 0 !important; - } - .flex-xl-grow-1 { - -ms-flex-positive: 1 !important; - flex-grow: 1 !important; - } - .flex-xl-shrink-0 { - -ms-flex-negative: 0 !important; - flex-shrink: 0 !important; - } - .flex-xl-shrink-1 { - -ms-flex-negative: 1 !important; - flex-shrink: 1 !important; - } - .justify-content-xl-start { - -ms-flex-pack: start !important; - justify-content: flex-start !important; - } - .justify-content-xl-end { - -ms-flex-pack: end !important; - justify-content: flex-end !important; - } - .justify-content-xl-center { - -ms-flex-pack: center !important; - justify-content: center !important; - } - .justify-content-xl-between { - -ms-flex-pack: justify !important; - justify-content: space-between !important; - } - .justify-content-xl-around { - -ms-flex-pack: distribute !important; - justify-content: space-around !important; - } - .align-items-xl-start { - -ms-flex-align: start !important; - align-items: flex-start !important; - } - .align-items-xl-end { - -ms-flex-align: end !important; - align-items: flex-end !important; - } - .align-items-xl-center { - -ms-flex-align: center !important; - align-items: center !important; - } - .align-items-xl-baseline { - -ms-flex-align: baseline !important; - align-items: baseline !important; - } - .align-items-xl-stretch { - -ms-flex-align: stretch !important; - align-items: stretch !important; - } - .align-content-xl-start { - -ms-flex-line-pack: start !important; - align-content: flex-start !important; - } - .align-content-xl-end { - -ms-flex-line-pack: end !important; - align-content: flex-end !important; - } - .align-content-xl-center { - -ms-flex-line-pack: center !important; - align-content: center !important; - } - .align-content-xl-between { - -ms-flex-line-pack: justify !important; - align-content: space-between !important; - } - .align-content-xl-around { - -ms-flex-line-pack: distribute !important; - align-content: space-around !important; - } - .align-content-xl-stretch { - -ms-flex-line-pack: stretch !important; - align-content: stretch !important; - } - .align-self-xl-auto { - -ms-flex-item-align: auto !important; - align-self: auto !important; - } - .align-self-xl-start { - -ms-flex-item-align: start !important; - align-self: flex-start !important; - } - .align-self-xl-end { - -ms-flex-item-align: end !important; - align-self: flex-end !important; - } - .align-self-xl-center { - -ms-flex-item-align: center !important; - align-self: center !important; - } - .align-self-xl-baseline { - -ms-flex-item-align: baseline !important; - align-self: baseline !important; - } - .align-self-xl-stretch { - -ms-flex-item-align: stretch !important; - align-self: stretch !important; - } -} - -.float-left { - float: left !important; -} - -.float-right { - float: right !important; -} - -.float-none { - float: none !important; -} - -@media (min-width: 576px) { - .float-sm-left { - float: left !important; - } - .float-sm-right { - float: right !important; - } - .float-sm-none { - float: none !important; - } -} - -@media (min-width: 768px) { - .float-md-left { - float: left !important; - } - .float-md-right { - float: right !important; - } - .float-md-none { - float: none !important; - } -} - -@media (min-width: 992px) { - .float-lg-left { - float: left !important; - } - .float-lg-right { - float: right !important; - } - .float-lg-none { - float: none !important; - } -} - -@media (min-width: 1200px) { - .float-xl-left { - float: left !important; - } - .float-xl-right { - float: right !important; - } - .float-xl-none { - float: none !important; - } -} - -.overflow-auto { - overflow: auto !important; -} - -.overflow-hidden { - overflow: hidden !important; -} - -.position-static { - position: static !important; -} - -.position-relative { - position: relative !important; -} - -.position-absolute { - position: absolute !important; -} - -.position-fixed { - position: fixed !important; -} - -.position-sticky { - position: -webkit-sticky !important; - position: sticky !important; -} - -.fixed-top { - position: fixed; - top: 0; - right: 0; - left: 0; - z-index: 1030; -} - -.fixed-bottom { - position: fixed; - right: 0; - bottom: 0; - left: 0; - z-index: 1030; -} - -@supports ((position: -webkit-sticky) or (position: sticky)) { - .sticky-top { - position: -webkit-sticky; - position: sticky; - top: 0; - z-index: 1020; - } -} - -.sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border: 0; -} - -.sr-only-focusable:active, .sr-only-focusable:focus { - position: static; - width: auto; - height: auto; - overflow: visible; - clip: auto; - white-space: normal; -} - -.shadow-sm { - box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; -} - -.shadow { - box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; -} - -.shadow-lg { - box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; -} - -.shadow-none { - box-shadow: none !important; -} - -.w-25 { - width: 25% !important; -} - -.w-50 { - width: 50% !important; -} - -.w-75 { - width: 75% !important; -} - -.w-100 { - width: 100% !important; -} - -.w-auto { - width: auto !important; -} - -.h-25 { - height: 25% !important; -} - -.h-50 { - height: 50% !important; -} - -.h-75 { - height: 75% !important; -} - -.h-100 { - height: 100% !important; -} - -.h-auto { - height: auto !important; -} - -.mw-100 { - max-width: 100% !important; -} - -.mh-100 { - max-height: 100% !important; -} - -.min-vw-100 { - min-width: 100vw !important; -} - -.min-vh-100 { - min-height: 100vh !important; -} - -.vw-100 { - width: 100vw !important; -} - -.vh-100 { - height: 100vh !important; -} - -.stretched-link::after { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1; - pointer-events: auto; - content: ""; - background-color: rgba(0, 0, 0, 0); -} - -.m-0 { - margin: 0 !important; -} - -.mt-0, -.my-0 { - margin-top: 0 !important; -} - -.mr-0, -.mx-0 { - margin-right: 0 !important; -} - -.mb-0, -.my-0 { - margin-bottom: 0 !important; -} - -.ml-0, -.mx-0 { - margin-left: 0 !important; -} - -.m-1 { - margin: 0.25rem !important; -} - -.mt-1, -.my-1 { - margin-top: 0.25rem !important; -} - -.mr-1, -.mx-1 { - margin-right: 0.25rem !important; -} - -.mb-1, -.my-1 { - margin-bottom: 0.25rem !important; -} - -.ml-1, -.mx-1 { - margin-left: 0.25rem !important; -} - -.m-2 { - margin: 0.5rem !important; -} - -.mt-2, -.my-2 { - margin-top: 0.5rem !important; -} - -.mr-2, -.mx-2 { - margin-right: 0.5rem !important; -} - -.mb-2, -.my-2 { - margin-bottom: 0.5rem !important; -} - -.ml-2, -.mx-2 { - margin-left: 0.5rem !important; -} - -.m-3 { - margin: 1rem !important; -} - -.mt-3, -.my-3 { - margin-top: 1rem !important; -} - -.mr-3, -.mx-3 { - margin-right: 1rem !important; -} - -.mb-3, -.my-3 { - margin-bottom: 1rem !important; -} - -.ml-3, -.mx-3 { - margin-left: 1rem !important; -} - -.m-4 { - margin: 1.5rem !important; -} - -.mt-4, -.my-4 { - margin-top: 1.5rem !important; -} - -.mr-4, -.mx-4 { - margin-right: 1.5rem !important; -} - -.mb-4, -.my-4 { - margin-bottom: 1.5rem !important; -} - -.ml-4, -.mx-4 { - margin-left: 1.5rem !important; -} - -.m-5 { - margin: 3rem !important; -} - -.mt-5, -.my-5 { - margin-top: 3rem !important; -} - -.mr-5, -.mx-5 { - margin-right: 3rem !important; -} - -.mb-5, -.my-5 { - margin-bottom: 3rem !important; -} - -.ml-5, -.mx-5 { - margin-left: 3rem !important; -} - -.p-0 { - padding: 0 !important; -} - -.pt-0, -.py-0 { - padding-top: 0 !important; -} - -.pr-0, -.px-0 { - padding-right: 0 !important; -} - -.pb-0, -.py-0 { - padding-bottom: 0 !important; -} - -.pl-0, -.px-0 { - padding-left: 0 !important; -} - -.p-1 { - padding: 0.25rem !important; -} - -.pt-1, -.py-1 { - padding-top: 0.25rem !important; -} - -.pr-1, -.px-1 { - padding-right: 0.25rem !important; -} - -.pb-1, -.py-1 { - padding-bottom: 0.25rem !important; -} - -.pl-1, -.px-1 { - padding-left: 0.25rem !important; -} - -.p-2 { - padding: 0.5rem !important; -} - -.pt-2, -.py-2 { - padding-top: 0.5rem !important; -} - -.pr-2, -.px-2 { - padding-right: 0.5rem !important; -} - -.pb-2, -.py-2 { - padding-bottom: 0.5rem !important; -} - -.pl-2, -.px-2 { - padding-left: 0.5rem !important; -} - -.p-3 { - padding: 1rem !important; -} - -.pt-3, -.py-3 { - padding-top: 1rem !important; -} - -.pr-3, -.px-3 { - padding-right: 1rem !important; -} - -.pb-3, -.py-3 { - padding-bottom: 1rem !important; -} - -.pl-3, -.px-3 { - padding-left: 1rem !important; -} - -.p-4 { - padding: 1.5rem !important; -} - -.pt-4, -.py-4 { - padding-top: 1.5rem !important; -} - -.pr-4, -.px-4 { - padding-right: 1.5rem !important; -} - -.pb-4, -.py-4 { - padding-bottom: 1.5rem !important; -} - -.pl-4, -.px-4 { - padding-left: 1.5rem !important; -} - -.p-5 { - padding: 3rem !important; -} - -.pt-5, -.py-5 { - padding-top: 3rem !important; -} - -.pr-5, -.px-5 { - padding-right: 3rem !important; -} - -.pb-5, -.py-5 { - padding-bottom: 3rem !important; -} - -.pl-5, -.px-5 { - padding-left: 3rem !important; -} - -.m-n1 { - margin: -0.25rem !important; -} - -.mt-n1, -.my-n1 { - margin-top: -0.25rem !important; -} - -.mr-n1, -.mx-n1 { - margin-right: -0.25rem !important; -} - -.mb-n1, -.my-n1 { - margin-bottom: -0.25rem !important; -} - -.ml-n1, -.mx-n1 { - margin-left: -0.25rem !important; -} - -.m-n2 { - margin: -0.5rem !important; -} - -.mt-n2, -.my-n2 { - margin-top: -0.5rem !important; -} - -.mr-n2, -.mx-n2 { - margin-right: -0.5rem !important; -} - -.mb-n2, -.my-n2 { - margin-bottom: -0.5rem !important; -} - -.ml-n2, -.mx-n2 { - margin-left: -0.5rem !important; -} - -.m-n3 { - margin: -1rem !important; -} - -.mt-n3, -.my-n3 { - margin-top: -1rem !important; -} - -.mr-n3, -.mx-n3 { - margin-right: -1rem !important; -} - -.mb-n3, -.my-n3 { - margin-bottom: -1rem !important; -} - -.ml-n3, -.mx-n3 { - margin-left: -1rem !important; -} - -.m-n4 { - margin: -1.5rem !important; -} - -.mt-n4, -.my-n4 { - margin-top: -1.5rem !important; -} - -.mr-n4, -.mx-n4 { - margin-right: -1.5rem !important; -} - -.mb-n4, -.my-n4 { - margin-bottom: -1.5rem !important; -} - -.ml-n4, -.mx-n4 { - margin-left: -1.5rem !important; -} - -.m-n5 { - margin: -3rem !important; -} - -.mt-n5, -.my-n5 { - margin-top: -3rem !important; -} - -.mr-n5, -.mx-n5 { - margin-right: -3rem !important; -} - -.mb-n5, -.my-n5 { - margin-bottom: -3rem !important; -} - -.ml-n5, -.mx-n5 { - margin-left: -3rem !important; -} - -.m-auto { - margin: auto !important; -} - -.mt-auto, -.my-auto { - margin-top: auto !important; -} - -.mr-auto, -.mx-auto { - margin-right: auto !important; -} - -.mb-auto, -.my-auto { - margin-bottom: auto !important; -} - -.ml-auto, -.mx-auto { - margin-left: auto !important; -} - -@media (min-width: 576px) { - .m-sm-0 { - margin: 0 !important; - } - .mt-sm-0, - .my-sm-0 { - margin-top: 0 !important; - } - .mr-sm-0, - .mx-sm-0 { - margin-right: 0 !important; - } - .mb-sm-0, - .my-sm-0 { - margin-bottom: 0 !important; - } - .ml-sm-0, - .mx-sm-0 { - margin-left: 0 !important; - } - .m-sm-1 { - margin: 0.25rem !important; - } - .mt-sm-1, - .my-sm-1 { - margin-top: 0.25rem !important; - } - .mr-sm-1, - .mx-sm-1 { - margin-right: 0.25rem !important; - } - .mb-sm-1, - .my-sm-1 { - margin-bottom: 0.25rem !important; - } - .ml-sm-1, - .mx-sm-1 { - margin-left: 0.25rem !important; - } - .m-sm-2 { - margin: 0.5rem !important; - } - .mt-sm-2, - .my-sm-2 { - margin-top: 0.5rem !important; - } - .mr-sm-2, - .mx-sm-2 { - margin-right: 0.5rem !important; - } - .mb-sm-2, - .my-sm-2 { - margin-bottom: 0.5rem !important; - } - .ml-sm-2, - .mx-sm-2 { - margin-left: 0.5rem !important; - } - .m-sm-3 { - margin: 1rem !important; - } - .mt-sm-3, - .my-sm-3 { - margin-top: 1rem !important; - } - .mr-sm-3, - .mx-sm-3 { - margin-right: 1rem !important; - } - .mb-sm-3, - .my-sm-3 { - margin-bottom: 1rem !important; - } - .ml-sm-3, - .mx-sm-3 { - margin-left: 1rem !important; - } - .m-sm-4 { - margin: 1.5rem !important; - } - .mt-sm-4, - .my-sm-4 { - margin-top: 1.5rem !important; - } - .mr-sm-4, - .mx-sm-4 { - margin-right: 1.5rem !important; - } - .mb-sm-4, - .my-sm-4 { - margin-bottom: 1.5rem !important; - } - .ml-sm-4, - .mx-sm-4 { - margin-left: 1.5rem !important; - } - .m-sm-5 { - margin: 3rem !important; - } - .mt-sm-5, - .my-sm-5 { - margin-top: 3rem !important; - } - .mr-sm-5, - .mx-sm-5 { - margin-right: 3rem !important; - } - .mb-sm-5, - .my-sm-5 { - margin-bottom: 3rem !important; - } - .ml-sm-5, - .mx-sm-5 { - margin-left: 3rem !important; - } - .p-sm-0 { - padding: 0 !important; - } - .pt-sm-0, - .py-sm-0 { - padding-top: 0 !important; - } - .pr-sm-0, - .px-sm-0 { - padding-right: 0 !important; - } - .pb-sm-0, - .py-sm-0 { - padding-bottom: 0 !important; - } - .pl-sm-0, - .px-sm-0 { - padding-left: 0 !important; - } - .p-sm-1 { - padding: 0.25rem !important; - } - .pt-sm-1, - .py-sm-1 { - padding-top: 0.25rem !important; - } - .pr-sm-1, - .px-sm-1 { - padding-right: 0.25rem !important; - } - .pb-sm-1, - .py-sm-1 { - padding-bottom: 0.25rem !important; - } - .pl-sm-1, - .px-sm-1 { - padding-left: 0.25rem !important; - } - .p-sm-2 { - padding: 0.5rem !important; - } - .pt-sm-2, - .py-sm-2 { - padding-top: 0.5rem !important; - } - .pr-sm-2, - .px-sm-2 { - padding-right: 0.5rem !important; - } - .pb-sm-2, - .py-sm-2 { - padding-bottom: 0.5rem !important; - } - .pl-sm-2, - .px-sm-2 { - padding-left: 0.5rem !important; - } - .p-sm-3 { - padding: 1rem !important; - } - .pt-sm-3, - .py-sm-3 { - padding-top: 1rem !important; - } - .pr-sm-3, - .px-sm-3 { - padding-right: 1rem !important; - } - .pb-sm-3, - .py-sm-3 { - padding-bottom: 1rem !important; - } - .pl-sm-3, - .px-sm-3 { - padding-left: 1rem !important; - } - .p-sm-4 { - padding: 1.5rem !important; - } - .pt-sm-4, - .py-sm-4 { - padding-top: 1.5rem !important; - } - .pr-sm-4, - .px-sm-4 { - padding-right: 1.5rem !important; - } - .pb-sm-4, - .py-sm-4 { - padding-bottom: 1.5rem !important; - } - .pl-sm-4, - .px-sm-4 { - padding-left: 1.5rem !important; - } - .p-sm-5 { - padding: 3rem !important; - } - .pt-sm-5, - .py-sm-5 { - padding-top: 3rem !important; - } - .pr-sm-5, - .px-sm-5 { - padding-right: 3rem !important; - } - .pb-sm-5, - .py-sm-5 { - padding-bottom: 3rem !important; - } - .pl-sm-5, - .px-sm-5 { - padding-left: 3rem !important; - } - .m-sm-n1 { - margin: -0.25rem !important; - } - .mt-sm-n1, - .my-sm-n1 { - margin-top: -0.25rem !important; - } - .mr-sm-n1, - .mx-sm-n1 { - margin-right: -0.25rem !important; - } - .mb-sm-n1, - .my-sm-n1 { - margin-bottom: -0.25rem !important; - } - .ml-sm-n1, - .mx-sm-n1 { - margin-left: -0.25rem !important; - } - .m-sm-n2 { - margin: -0.5rem !important; - } - .mt-sm-n2, - .my-sm-n2 { - margin-top: -0.5rem !important; - } - .mr-sm-n2, - .mx-sm-n2 { - margin-right: -0.5rem !important; - } - .mb-sm-n2, - .my-sm-n2 { - margin-bottom: -0.5rem !important; - } - .ml-sm-n2, - .mx-sm-n2 { - margin-left: -0.5rem !important; - } - .m-sm-n3 { - margin: -1rem !important; - } - .mt-sm-n3, - .my-sm-n3 { - margin-top: -1rem !important; - } - .mr-sm-n3, - .mx-sm-n3 { - margin-right: -1rem !important; - } - .mb-sm-n3, - .my-sm-n3 { - margin-bottom: -1rem !important; - } - .ml-sm-n3, - .mx-sm-n3 { - margin-left: -1rem !important; - } - .m-sm-n4 { - margin: -1.5rem !important; - } - .mt-sm-n4, - .my-sm-n4 { - margin-top: -1.5rem !important; - } - .mr-sm-n4, - .mx-sm-n4 { - margin-right: -1.5rem !important; - } - .mb-sm-n4, - .my-sm-n4 { - margin-bottom: -1.5rem !important; - } - .ml-sm-n4, - .mx-sm-n4 { - margin-left: -1.5rem !important; - } - .m-sm-n5 { - margin: -3rem !important; - } - .mt-sm-n5, - .my-sm-n5 { - margin-top: -3rem !important; - } - .mr-sm-n5, - .mx-sm-n5 { - margin-right: -3rem !important; - } - .mb-sm-n5, - .my-sm-n5 { - margin-bottom: -3rem !important; - } - .ml-sm-n5, - .mx-sm-n5 { - margin-left: -3rem !important; - } - .m-sm-auto { - margin: auto !important; - } - .mt-sm-auto, - .my-sm-auto { - margin-top: auto !important; - } - .mr-sm-auto, - .mx-sm-auto { - margin-right: auto !important; - } - .mb-sm-auto, - .my-sm-auto { - margin-bottom: auto !important; - } - .ml-sm-auto, - .mx-sm-auto { - margin-left: auto !important; - } -} - -@media (min-width: 768px) { - .m-md-0 { - margin: 0 !important; - } - .mt-md-0, - .my-md-0 { - margin-top: 0 !important; - } - .mr-md-0, - .mx-md-0 { - margin-right: 0 !important; - } - .mb-md-0, - .my-md-0 { - margin-bottom: 0 !important; - } - .ml-md-0, - .mx-md-0 { - margin-left: 0 !important; - } - .m-md-1 { - margin: 0.25rem !important; - } - .mt-md-1, - .my-md-1 { - margin-top: 0.25rem !important; - } - .mr-md-1, - .mx-md-1 { - margin-right: 0.25rem !important; - } - .mb-md-1, - .my-md-1 { - margin-bottom: 0.25rem !important; - } - .ml-md-1, - .mx-md-1 { - margin-left: 0.25rem !important; - } - .m-md-2 { - margin: 0.5rem !important; - } - .mt-md-2, - .my-md-2 { - margin-top: 0.5rem !important; - } - .mr-md-2, - .mx-md-2 { - margin-right: 0.5rem !important; - } - .mb-md-2, - .my-md-2 { - margin-bottom: 0.5rem !important; - } - .ml-md-2, - .mx-md-2 { - margin-left: 0.5rem !important; - } - .m-md-3 { - margin: 1rem !important; - } - .mt-md-3, - .my-md-3 { - margin-top: 1rem !important; - } - .mr-md-3, - .mx-md-3 { - margin-right: 1rem !important; - } - .mb-md-3, - .my-md-3 { - margin-bottom: 1rem !important; - } - .ml-md-3, - .mx-md-3 { - margin-left: 1rem !important; - } - .m-md-4 { - margin: 1.5rem !important; - } - .mt-md-4, - .my-md-4 { - margin-top: 1.5rem !important; - } - .mr-md-4, - .mx-md-4 { - margin-right: 1.5rem !important; - } - .mb-md-4, - .my-md-4 { - margin-bottom: 1.5rem !important; - } - .ml-md-4, - .mx-md-4 { - margin-left: 1.5rem !important; - } - .m-md-5 { - margin: 3rem !important; - } - .mt-md-5, - .my-md-5 { - margin-top: 3rem !important; - } - .mr-md-5, - .mx-md-5 { - margin-right: 3rem !important; - } - .mb-md-5, - .my-md-5 { - margin-bottom: 3rem !important; - } - .ml-md-5, - .mx-md-5 { - margin-left: 3rem !important; - } - .p-md-0 { - padding: 0 !important; - } - .pt-md-0, - .py-md-0 { - padding-top: 0 !important; - } - .pr-md-0, - .px-md-0 { - padding-right: 0 !important; - } - .pb-md-0, - .py-md-0 { - padding-bottom: 0 !important; - } - .pl-md-0, - .px-md-0 { - padding-left: 0 !important; - } - .p-md-1 { - padding: 0.25rem !important; - } - .pt-md-1, - .py-md-1 { - padding-top: 0.25rem !important; - } - .pr-md-1, - .px-md-1 { - padding-right: 0.25rem !important; - } - .pb-md-1, - .py-md-1 { - padding-bottom: 0.25rem !important; - } - .pl-md-1, - .px-md-1 { - padding-left: 0.25rem !important; - } - .p-md-2 { - padding: 0.5rem !important; - } - .pt-md-2, - .py-md-2 { - padding-top: 0.5rem !important; - } - .pr-md-2, - .px-md-2 { - padding-right: 0.5rem !important; - } - .pb-md-2, - .py-md-2 { - padding-bottom: 0.5rem !important; - } - .pl-md-2, - .px-md-2 { - padding-left: 0.5rem !important; - } - .p-md-3 { - padding: 1rem !important; - } - .pt-md-3, - .py-md-3 { - padding-top: 1rem !important; - } - .pr-md-3, - .px-md-3 { - padding-right: 1rem !important; - } - .pb-md-3, - .py-md-3 { - padding-bottom: 1rem !important; - } - .pl-md-3, - .px-md-3 { - padding-left: 1rem !important; - } - .p-md-4 { - padding: 1.5rem !important; - } - .pt-md-4, - .py-md-4 { - padding-top: 1.5rem !important; - } - .pr-md-4, - .px-md-4 { - padding-right: 1.5rem !important; - } - .pb-md-4, - .py-md-4 { - padding-bottom: 1.5rem !important; - } - .pl-md-4, - .px-md-4 { - padding-left: 1.5rem !important; - } - .p-md-5 { - padding: 3rem !important; - } - .pt-md-5, - .py-md-5 { - padding-top: 3rem !important; - } - .pr-md-5, - .px-md-5 { - padding-right: 3rem !important; - } - .pb-md-5, - .py-md-5 { - padding-bottom: 3rem !important; - } - .pl-md-5, - .px-md-5 { - padding-left: 3rem !important; - } - .m-md-n1 { - margin: -0.25rem !important; - } - .mt-md-n1, - .my-md-n1 { - margin-top: -0.25rem !important; - } - .mr-md-n1, - .mx-md-n1 { - margin-right: -0.25rem !important; - } - .mb-md-n1, - .my-md-n1 { - margin-bottom: -0.25rem !important; - } - .ml-md-n1, - .mx-md-n1 { - margin-left: -0.25rem !important; - } - .m-md-n2 { - margin: -0.5rem !important; - } - .mt-md-n2, - .my-md-n2 { - margin-top: -0.5rem !important; - } - .mr-md-n2, - .mx-md-n2 { - margin-right: -0.5rem !important; - } - .mb-md-n2, - .my-md-n2 { - margin-bottom: -0.5rem !important; - } - .ml-md-n2, - .mx-md-n2 { - margin-left: -0.5rem !important; - } - .m-md-n3 { - margin: -1rem !important; - } - .mt-md-n3, - .my-md-n3 { - margin-top: -1rem !important; - } - .mr-md-n3, - .mx-md-n3 { - margin-right: -1rem !important; - } - .mb-md-n3, - .my-md-n3 { - margin-bottom: -1rem !important; - } - .ml-md-n3, - .mx-md-n3 { - margin-left: -1rem !important; - } - .m-md-n4 { - margin: -1.5rem !important; - } - .mt-md-n4, - .my-md-n4 { - margin-top: -1.5rem !important; - } - .mr-md-n4, - .mx-md-n4 { - margin-right: -1.5rem !important; - } - .mb-md-n4, - .my-md-n4 { - margin-bottom: -1.5rem !important; - } - .ml-md-n4, - .mx-md-n4 { - margin-left: -1.5rem !important; - } - .m-md-n5 { - margin: -3rem !important; - } - .mt-md-n5, - .my-md-n5 { - margin-top: -3rem !important; - } - .mr-md-n5, - .mx-md-n5 { - margin-right: -3rem !important; - } - .mb-md-n5, - .my-md-n5 { - margin-bottom: -3rem !important; - } - .ml-md-n5, - .mx-md-n5 { - margin-left: -3rem !important; - } - .m-md-auto { - margin: auto !important; - } - .mt-md-auto, - .my-md-auto { - margin-top: auto !important; - } - .mr-md-auto, - .mx-md-auto { - margin-right: auto !important; - } - .mb-md-auto, - .my-md-auto { - margin-bottom: auto !important; - } - .ml-md-auto, - .mx-md-auto { - margin-left: auto !important; - } -} - -@media (min-width: 992px) { - .m-lg-0 { - margin: 0 !important; - } - .mt-lg-0, - .my-lg-0 { - margin-top: 0 !important; - } - .mr-lg-0, - .mx-lg-0 { - margin-right: 0 !important; - } - .mb-lg-0, - .my-lg-0 { - margin-bottom: 0 !important; - } - .ml-lg-0, - .mx-lg-0 { - margin-left: 0 !important; - } - .m-lg-1 { - margin: 0.25rem !important; - } - .mt-lg-1, - .my-lg-1 { - margin-top: 0.25rem !important; - } - .mr-lg-1, - .mx-lg-1 { - margin-right: 0.25rem !important; - } - .mb-lg-1, - .my-lg-1 { - margin-bottom: 0.25rem !important; - } - .ml-lg-1, - .mx-lg-1 { - margin-left: 0.25rem !important; - } - .m-lg-2 { - margin: 0.5rem !important; - } - .mt-lg-2, - .my-lg-2 { - margin-top: 0.5rem !important; - } - .mr-lg-2, - .mx-lg-2 { - margin-right: 0.5rem !important; - } - .mb-lg-2, - .my-lg-2 { - margin-bottom: 0.5rem !important; - } - .ml-lg-2, - .mx-lg-2 { - margin-left: 0.5rem !important; - } - .m-lg-3 { - margin: 1rem !important; - } - .mt-lg-3, - .my-lg-3 { - margin-top: 1rem !important; - } - .mr-lg-3, - .mx-lg-3 { - margin-right: 1rem !important; - } - .mb-lg-3, - .my-lg-3 { - margin-bottom: 1rem !important; - } - .ml-lg-3, - .mx-lg-3 { - margin-left: 1rem !important; - } - .m-lg-4 { - margin: 1.5rem !important; - } - .mt-lg-4, - .my-lg-4 { - margin-top: 1.5rem !important; - } - .mr-lg-4, - .mx-lg-4 { - margin-right: 1.5rem !important; - } - .mb-lg-4, - .my-lg-4 { - margin-bottom: 1.5rem !important; - } - .ml-lg-4, - .mx-lg-4 { - margin-left: 1.5rem !important; - } - .m-lg-5 { - margin: 3rem !important; - } - .mt-lg-5, - .my-lg-5 { - margin-top: 3rem !important; - } - .mr-lg-5, - .mx-lg-5 { - margin-right: 3rem !important; - } - .mb-lg-5, - .my-lg-5 { - margin-bottom: 3rem !important; - } - .ml-lg-5, - .mx-lg-5 { - margin-left: 3rem !important; - } - .p-lg-0 { - padding: 0 !important; - } - .pt-lg-0, - .py-lg-0 { - padding-top: 0 !important; - } - .pr-lg-0, - .px-lg-0 { - padding-right: 0 !important; - } - .pb-lg-0, - .py-lg-0 { - padding-bottom: 0 !important; - } - .pl-lg-0, - .px-lg-0 { - padding-left: 0 !important; - } - .p-lg-1 { - padding: 0.25rem !important; - } - .pt-lg-1, - .py-lg-1 { - padding-top: 0.25rem !important; - } - .pr-lg-1, - .px-lg-1 { - padding-right: 0.25rem !important; - } - .pb-lg-1, - .py-lg-1 { - padding-bottom: 0.25rem !important; - } - .pl-lg-1, - .px-lg-1 { - padding-left: 0.25rem !important; - } - .p-lg-2 { - padding: 0.5rem !important; - } - .pt-lg-2, - .py-lg-2 { - padding-top: 0.5rem !important; - } - .pr-lg-2, - .px-lg-2 { - padding-right: 0.5rem !important; - } - .pb-lg-2, - .py-lg-2 { - padding-bottom: 0.5rem !important; - } - .pl-lg-2, - .px-lg-2 { - padding-left: 0.5rem !important; - } - .p-lg-3 { - padding: 1rem !important; - } - .pt-lg-3, - .py-lg-3 { - padding-top: 1rem !important; - } - .pr-lg-3, - .px-lg-3 { - padding-right: 1rem !important; - } - .pb-lg-3, - .py-lg-3 { - padding-bottom: 1rem !important; - } - .pl-lg-3, - .px-lg-3 { - padding-left: 1rem !important; - } - .p-lg-4 { - padding: 1.5rem !important; - } - .pt-lg-4, - .py-lg-4 { - padding-top: 1.5rem !important; - } - .pr-lg-4, - .px-lg-4 { - padding-right: 1.5rem !important; - } - .pb-lg-4, - .py-lg-4 { - padding-bottom: 1.5rem !important; - } - .pl-lg-4, - .px-lg-4 { - padding-left: 1.5rem !important; - } - .p-lg-5 { - padding: 3rem !important; - } - .pt-lg-5, - .py-lg-5 { - padding-top: 3rem !important; - } - .pr-lg-5, - .px-lg-5 { - padding-right: 3rem !important; - } - .pb-lg-5, - .py-lg-5 { - padding-bottom: 3rem !important; - } - .pl-lg-5, - .px-lg-5 { - padding-left: 3rem !important; - } - .m-lg-n1 { - margin: -0.25rem !important; - } - .mt-lg-n1, - .my-lg-n1 { - margin-top: -0.25rem !important; - } - .mr-lg-n1, - .mx-lg-n1 { - margin-right: -0.25rem !important; - } - .mb-lg-n1, - .my-lg-n1 { - margin-bottom: -0.25rem !important; - } - .ml-lg-n1, - .mx-lg-n1 { - margin-left: -0.25rem !important; - } - .m-lg-n2 { - margin: -0.5rem !important; - } - .mt-lg-n2, - .my-lg-n2 { - margin-top: -0.5rem !important; - } - .mr-lg-n2, - .mx-lg-n2 { - margin-right: -0.5rem !important; - } - .mb-lg-n2, - .my-lg-n2 { - margin-bottom: -0.5rem !important; - } - .ml-lg-n2, - .mx-lg-n2 { - margin-left: -0.5rem !important; - } - .m-lg-n3 { - margin: -1rem !important; - } - .mt-lg-n3, - .my-lg-n3 { - margin-top: -1rem !important; - } - .mr-lg-n3, - .mx-lg-n3 { - margin-right: -1rem !important; - } - .mb-lg-n3, - .my-lg-n3 { - margin-bottom: -1rem !important; - } - .ml-lg-n3, - .mx-lg-n3 { - margin-left: -1rem !important; - } - .m-lg-n4 { - margin: -1.5rem !important; - } - .mt-lg-n4, - .my-lg-n4 { - margin-top: -1.5rem !important; - } - .mr-lg-n4, - .mx-lg-n4 { - margin-right: -1.5rem !important; - } - .mb-lg-n4, - .my-lg-n4 { - margin-bottom: -1.5rem !important; - } - .ml-lg-n4, - .mx-lg-n4 { - margin-left: -1.5rem !important; - } - .m-lg-n5 { - margin: -3rem !important; - } - .mt-lg-n5, - .my-lg-n5 { - margin-top: -3rem !important; - } - .mr-lg-n5, - .mx-lg-n5 { - margin-right: -3rem !important; - } - .mb-lg-n5, - .my-lg-n5 { - margin-bottom: -3rem !important; - } - .ml-lg-n5, - .mx-lg-n5 { - margin-left: -3rem !important; - } - .m-lg-auto { - margin: auto !important; - } - .mt-lg-auto, - .my-lg-auto { - margin-top: auto !important; - } - .mr-lg-auto, - .mx-lg-auto { - margin-right: auto !important; - } - .mb-lg-auto, - .my-lg-auto { - margin-bottom: auto !important; - } - .ml-lg-auto, - .mx-lg-auto { - margin-left: auto !important; - } -} - -@media (min-width: 1200px) { - .m-xl-0 { - margin: 0 !important; - } - .mt-xl-0, - .my-xl-0 { - margin-top: 0 !important; - } - .mr-xl-0, - .mx-xl-0 { - margin-right: 0 !important; - } - .mb-xl-0, - .my-xl-0 { - margin-bottom: 0 !important; - } - .ml-xl-0, - .mx-xl-0 { - margin-left: 0 !important; - } - .m-xl-1 { - margin: 0.25rem !important; - } - .mt-xl-1, - .my-xl-1 { - margin-top: 0.25rem !important; - } - .mr-xl-1, - .mx-xl-1 { - margin-right: 0.25rem !important; - } - .mb-xl-1, - .my-xl-1 { - margin-bottom: 0.25rem !important; - } - .ml-xl-1, - .mx-xl-1 { - margin-left: 0.25rem !important; - } - .m-xl-2 { - margin: 0.5rem !important; - } - .mt-xl-2, - .my-xl-2 { - margin-top: 0.5rem !important; - } - .mr-xl-2, - .mx-xl-2 { - margin-right: 0.5rem !important; - } - .mb-xl-2, - .my-xl-2 { - margin-bottom: 0.5rem !important; - } - .ml-xl-2, - .mx-xl-2 { - margin-left: 0.5rem !important; - } - .m-xl-3 { - margin: 1rem !important; - } - .mt-xl-3, - .my-xl-3 { - margin-top: 1rem !important; - } - .mr-xl-3, - .mx-xl-3 { - margin-right: 1rem !important; - } - .mb-xl-3, - .my-xl-3 { - margin-bottom: 1rem !important; - } - .ml-xl-3, - .mx-xl-3 { - margin-left: 1rem !important; - } - .m-xl-4 { - margin: 1.5rem !important; - } - .mt-xl-4, - .my-xl-4 { - margin-top: 1.5rem !important; - } - .mr-xl-4, - .mx-xl-4 { - margin-right: 1.5rem !important; - } - .mb-xl-4, - .my-xl-4 { - margin-bottom: 1.5rem !important; - } - .ml-xl-4, - .mx-xl-4 { - margin-left: 1.5rem !important; - } - .m-xl-5 { - margin: 3rem !important; - } - .mt-xl-5, - .my-xl-5 { - margin-top: 3rem !important; - } - .mr-xl-5, - .mx-xl-5 { - margin-right: 3rem !important; - } - .mb-xl-5, - .my-xl-5 { - margin-bottom: 3rem !important; - } - .ml-xl-5, - .mx-xl-5 { - margin-left: 3rem !important; - } - .p-xl-0 { - padding: 0 !important; - } - .pt-xl-0, - .py-xl-0 { - padding-top: 0 !important; - } - .pr-xl-0, - .px-xl-0 { - padding-right: 0 !important; - } - .pb-xl-0, - .py-xl-0 { - padding-bottom: 0 !important; - } - .pl-xl-0, - .px-xl-0 { - padding-left: 0 !important; - } - .p-xl-1 { - padding: 0.25rem !important; - } - .pt-xl-1, - .py-xl-1 { - padding-top: 0.25rem !important; - } - .pr-xl-1, - .px-xl-1 { - padding-right: 0.25rem !important; - } - .pb-xl-1, - .py-xl-1 { - padding-bottom: 0.25rem !important; - } - .pl-xl-1, - .px-xl-1 { - padding-left: 0.25rem !important; - } - .p-xl-2 { - padding: 0.5rem !important; - } - .pt-xl-2, - .py-xl-2 { - padding-top: 0.5rem !important; - } - .pr-xl-2, - .px-xl-2 { - padding-right: 0.5rem !important; - } - .pb-xl-2, - .py-xl-2 { - padding-bottom: 0.5rem !important; - } - .pl-xl-2, - .px-xl-2 { - padding-left: 0.5rem !important; - } - .p-xl-3 { - padding: 1rem !important; - } - .pt-xl-3, - .py-xl-3 { - padding-top: 1rem !important; - } - .pr-xl-3, - .px-xl-3 { - padding-right: 1rem !important; - } - .pb-xl-3, - .py-xl-3 { - padding-bottom: 1rem !important; - } - .pl-xl-3, - .px-xl-3 { - padding-left: 1rem !important; - } - .p-xl-4 { - padding: 1.5rem !important; - } - .pt-xl-4, - .py-xl-4 { - padding-top: 1.5rem !important; - } - .pr-xl-4, - .px-xl-4 { - padding-right: 1.5rem !important; - } - .pb-xl-4, - .py-xl-4 { - padding-bottom: 1.5rem !important; - } - .pl-xl-4, - .px-xl-4 { - padding-left: 1.5rem !important; - } - .p-xl-5 { - padding: 3rem !important; - } - .pt-xl-5, - .py-xl-5 { - padding-top: 3rem !important; - } - .pr-xl-5, - .px-xl-5 { - padding-right: 3rem !important; - } - .pb-xl-5, - .py-xl-5 { - padding-bottom: 3rem !important; - } - .pl-xl-5, - .px-xl-5 { - padding-left: 3rem !important; - } - .m-xl-n1 { - margin: -0.25rem !important; - } - .mt-xl-n1, - .my-xl-n1 { - margin-top: -0.25rem !important; - } - .mr-xl-n1, - .mx-xl-n1 { - margin-right: -0.25rem !important; - } - .mb-xl-n1, - .my-xl-n1 { - margin-bottom: -0.25rem !important; - } - .ml-xl-n1, - .mx-xl-n1 { - margin-left: -0.25rem !important; - } - .m-xl-n2 { - margin: -0.5rem !important; - } - .mt-xl-n2, - .my-xl-n2 { - margin-top: -0.5rem !important; - } - .mr-xl-n2, - .mx-xl-n2 { - margin-right: -0.5rem !important; - } - .mb-xl-n2, - .my-xl-n2 { - margin-bottom: -0.5rem !important; - } - .ml-xl-n2, - .mx-xl-n2 { - margin-left: -0.5rem !important; - } - .m-xl-n3 { - margin: -1rem !important; - } - .mt-xl-n3, - .my-xl-n3 { - margin-top: -1rem !important; - } - .mr-xl-n3, - .mx-xl-n3 { - margin-right: -1rem !important; - } - .mb-xl-n3, - .my-xl-n3 { - margin-bottom: -1rem !important; - } - .ml-xl-n3, - .mx-xl-n3 { - margin-left: -1rem !important; - } - .m-xl-n4 { - margin: -1.5rem !important; - } - .mt-xl-n4, - .my-xl-n4 { - margin-top: -1.5rem !important; - } - .mr-xl-n4, - .mx-xl-n4 { - margin-right: -1.5rem !important; - } - .mb-xl-n4, - .my-xl-n4 { - margin-bottom: -1.5rem !important; - } - .ml-xl-n4, - .mx-xl-n4 { - margin-left: -1.5rem !important; - } - .m-xl-n5 { - margin: -3rem !important; - } - .mt-xl-n5, - .my-xl-n5 { - margin-top: -3rem !important; - } - .mr-xl-n5, - .mx-xl-n5 { - margin-right: -3rem !important; - } - .mb-xl-n5, - .my-xl-n5 { - margin-bottom: -3rem !important; - } - .ml-xl-n5, - .mx-xl-n5 { - margin-left: -3rem !important; - } - .m-xl-auto { - margin: auto !important; - } - .mt-xl-auto, - .my-xl-auto { - margin-top: auto !important; - } - .mr-xl-auto, - .mx-xl-auto { - margin-right: auto !important; - } - .mb-xl-auto, - .my-xl-auto { - margin-bottom: auto !important; - } - .ml-xl-auto, - .mx-xl-auto { - margin-left: auto !important; - } -} - -.text-monospace { - font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important; -} - -.text-justify { - text-align: justify !important; -} - -.text-wrap { - white-space: normal !important; -} - -.text-nowrap { - white-space: nowrap !important; -} - -.text-truncate { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} - -.text-left { - text-align: left !important; -} - -.text-right { - text-align: right !important; -} - -.text-center { - text-align: center !important; -} - -@media (min-width: 576px) { - .text-sm-left { - text-align: left !important; - } - .text-sm-right { - text-align: right !important; - } - .text-sm-center { - text-align: center !important; - } -} - -@media (min-width: 768px) { - .text-md-left { - text-align: left !important; - } - .text-md-right { - text-align: right !important; - } - .text-md-center { - text-align: center !important; - } -} - -@media (min-width: 992px) { - .text-lg-left { - text-align: left !important; - } - .text-lg-right { - text-align: right !important; - } - .text-lg-center { - text-align: center !important; - } -} - -@media (min-width: 1200px) { - .text-xl-left { - text-align: left !important; - } - .text-xl-right { - text-align: right !important; - } - .text-xl-center { - text-align: center !important; - } -} - -.text-lowercase { - text-transform: lowercase !important; -} - -.text-uppercase { - text-transform: uppercase !important; -} - -.text-capitalize { - text-transform: capitalize !important; -} - -.font-weight-light { - font-weight: 300 !important; -} - -.font-weight-lighter { - font-weight: lighter !important; -} - -.font-weight-normal { - font-weight: 400 !important; -} - -.font-weight-bold { - font-weight: 700 !important; -} - -.font-weight-bolder { - font-weight: bolder !important; -} - -.font-italic { - font-style: italic !important; -} - -.text-white { - color: #fff !important; -} - -.text-primary { - color: #007bff !important; -} - -a.text-primary:hover, a.text-primary:focus { - color: #0056b3 !important; -} - -.text-secondary { - color: #6c757d !important; -} - -a.text-secondary:hover, a.text-secondary:focus { - color: #494f54 !important; -} - -.text-success { - color: #28a745 !important; -} - -a.text-success:hover, a.text-success:focus { - color: #19692c !important; -} - -.text-info { - color: #17a2b8 !important; -} - -a.text-info:hover, a.text-info:focus { - color: #0f6674 !important; -} - -.text-warning { - color: #ffc107 !important; -} - -a.text-warning:hover, a.text-warning:focus { - color: #ba8b00 !important; -} - -.text-danger { - color: #dc3545 !important; -} - -a.text-danger:hover, a.text-danger:focus { - color: #a71d2a !important; -} - -.text-light { - color: #f8f9fa !important; -} - -a.text-light:hover, a.text-light:focus { - color: #cbd3da !important; -} - -.text-dark { - color: #343a40 !important; -} - -a.text-dark:hover, a.text-dark:focus { - color: #121416 !important; -} - -.text-body { - color: #212529 !important; -} - -.text-muted { - color: #6c757d !important; -} - -.text-black-50 { - color: rgba(0, 0, 0, 0.5) !important; -} - -.text-white-50 { - color: rgba(255, 255, 255, 0.5) !important; -} - -.text-hide { - font: 0/0 a; - color: transparent; - text-shadow: none; - background-color: transparent; - border: 0; -} - -.text-decoration-none { - text-decoration: none !important; -} - -.text-break { - word-break: break-word !important; - overflow-wrap: break-word !important; -} - -.text-reset { - color: inherit !important; -} - -.visible { - visibility: visible !important; -} - -.invisible { - visibility: hidden !important; -} - -@media print { - *, - *::before, - *::after { - text-shadow: none !important; - box-shadow: none !important; - } - a:not(.btn) { - text-decoration: underline; - } - abbr[title]::after { - content: " (" attr(title) ")"; - } - pre { - white-space: pre-wrap !important; - } - pre, - blockquote { - border: 1px solid #adb5bd; - page-break-inside: avoid; - } - thead { - display: table-header-group; - } - tr, - img { - page-break-inside: avoid; - } - p, - h2, - h3 { - orphans: 3; - widows: 3; - } - h2, - h3 { - page-break-after: avoid; - } - @page { - size: a3; - } - body { - min-width: 992px !important; - } - .container { - min-width: 992px !important; - } - .navbar { - display: none; - } - .badge { - border: 1px solid #000; - } - .table { - border-collapse: collapse !important; - } - .table td, - .table th { - background-color: #fff !important; - } - .table-bordered th, - .table-bordered td { - border: 1px solid #dee2e6 !important; - } - .table-dark { - color: inherit; - } - .table-dark th, - .table-dark td, - .table-dark thead th, - .table-dark tbody + tbody { - border-color: #dee2e6; - } - .table .thead-dark th { - color: inherit; - border-color: #dee2e6; - } -} -/*# sourceMappingURL=bootstrap.css.map */ \ No newline at end of file diff --git a/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js b/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js deleted file mode 100644 index f4f23ead2c6f..000000000000 --- a/aspnetcore/fundamentals/static-files/samples/3.x/StaticFileAuth/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js +++ /dev/null @@ -1,7013 +0,0 @@ -/*! - * Bootstrap v4.3.1 (https://getbootstrap.com/) - * Copyright 2011-2019 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors) - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - */ -(function (global, factory) { - typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('jquery')) : - typeof define === 'function' && define.amd ? define(['exports', 'jquery'], factory) : - (global = global || self, factory(global.bootstrap = {}, global.jQuery)); -}(this, function (exports, $) { 'use strict'; - - $ = $ && $.hasOwnProperty('default') ? $['default'] : $; - - function _defineProperties(target, props) { - for (var i = 0; i < props.length; i++) { - var descriptor = props[i]; - descriptor.enumerable = descriptor.enumerable || false; - descriptor.configurable = true; - if ("value" in descriptor) descriptor.writable = true; - Object.defineProperty(target, descriptor.key, descriptor); - } - } - - function _createClass(Constructor, protoProps, staticProps) { - if (protoProps) _defineProperties(Constructor.prototype, protoProps); - if (staticProps) _defineProperties(Constructor, staticProps); - return Constructor; - } - - function _defineProperty(obj, key, value) { - if (key in obj) { - Object.defineProperty(obj, key, { - value: value, - enumerable: true, - configurable: true, - writable: true - }); - } else { - obj[key] = value; - } - - return obj; - } - - function _objectSpread(target) { - for (var i = 1; i < arguments.length; i++) { - var source = arguments[i] != null ? arguments[i] : {}; - var ownKeys = Object.keys(source); - - if (typeof Object.getOwnPropertySymbols === 'function') { - ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { - return Object.getOwnPropertyDescriptor(source, sym).enumerable; - })); - } - - ownKeys.forEach(function (key) { - _defineProperty(target, key, source[key]); - }); - } - - return target; - } - - function _inheritsLoose(subClass, superClass) { - subClass.prototype = Object.create(superClass.prototype); - subClass.prototype.constructor = subClass; - subClass.__proto__ = superClass; - } - - /** - * -------------------------------------------------------------------------- - * Bootstrap (v4.3.1): util.js - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * -------------------------------------------------------------------------- - */ - /** - * ------------------------------------------------------------------------ - * Private TransitionEnd Helpers - * ------------------------------------------------------------------------ - */ - - var TRANSITION_END = 'transitionend'; - var MAX_UID = 1000000; - var MILLISECONDS_MULTIPLIER = 1000; // Shoutout AngusCroll (https://goo.gl/pxwQGp) - - function toType(obj) { - return {}.toString.call(obj).match(/\s([a-z]+)/i)[1].toLowerCase(); - } - - function getSpecialTransitionEndEvent() { - return { - bindType: TRANSITION_END, - delegateType: TRANSITION_END, - handle: function handle(event) { - if ($(event.target).is(this)) { - return event.handleObj.handler.apply(this, arguments); // eslint-disable-line prefer-rest-params - } - - return undefined; // eslint-disable-line no-undefined - } - }; - } - - function transitionEndEmulator(duration) { - var _this = this; - - var called = false; - $(this).one(Util.TRANSITION_END, function () { - called = true; - }); - setTimeout(function () { - if (!called) { - Util.triggerTransitionEnd(_this); - } - }, duration); - return this; - } - - function setTransitionEndSupport() { - $.fn.emulateTransitionEnd = transitionEndEmulator; - $.event.special[Util.TRANSITION_END] = getSpecialTransitionEndEvent(); - } - /** - * -------------------------------------------------------------------------- - * Public Util Api - * -------------------------------------------------------------------------- - */ - - - var Util = { - TRANSITION_END: 'bsTransitionEnd', - getUID: function getUID(prefix) { - do { - // eslint-disable-next-line no-bitwise - prefix += ~~(Math.random() * MAX_UID); // "~~" acts like a faster Math.floor() here - } while (document.getElementById(prefix)); - - return prefix; - }, - getSelectorFromElement: function getSelectorFromElement(element) { - var selector = element.getAttribute('data-target'); - - if (!selector || selector === '#') { - var hrefAttr = element.getAttribute('href'); - selector = hrefAttr && hrefAttr !== '#' ? hrefAttr.trim() : ''; - } - - try { - return document.querySelector(selector) ? selector : null; - } catch (err) { - return null; - } - }, - getTransitionDurationFromElement: function getTransitionDurationFromElement(element) { - if (!element) { - return 0; - } // Get transition-duration of the element - - - var transitionDuration = $(element).css('transition-duration'); - var transitionDelay = $(element).css('transition-delay'); - var floatTransitionDuration = parseFloat(transitionDuration); - var floatTransitionDelay = parseFloat(transitionDelay); // Return 0 if element or transition duration is not found - - if (!floatTransitionDuration && !floatTransitionDelay) { - return 0; - } // If multiple durations are defined, take the first - - - transitionDuration = transitionDuration.split(',')[0]; - transitionDelay = transitionDelay.split(',')[0]; - return (parseFloat(transitionDuration) + parseFloat(transitionDelay)) * MILLISECONDS_MULTIPLIER; - }, - reflow: function reflow(element) { - return element.offsetHeight; - }, - triggerTransitionEnd: function triggerTransitionEnd(element) { - $(element).trigger(TRANSITION_END); - }, - // TODO: Remove in v5 - supportsTransitionEnd: function supportsTransitionEnd() { - return Boolean(TRANSITION_END); - }, - isElement: function isElement(obj) { - return (obj[0] || obj).nodeType; - }, - typeCheckConfig: function typeCheckConfig(componentName, config, configTypes) { - for (var property in configTypes) { - if (Object.prototype.hasOwnProperty.call(configTypes, property)) { - var expectedTypes = configTypes[property]; - var value = config[property]; - var valueType = value && Util.isElement(value) ? 'element' : toType(value); - - if (!new RegExp(expectedTypes).test(valueType)) { - throw new Error(componentName.toUpperCase() + ": " + ("Option \"" + property + "\" provided type \"" + valueType + "\" ") + ("but expected type \"" + expectedTypes + "\".")); - } - } - } - }, - findShadowRoot: function findShadowRoot(element) { - if (!document.documentElement.attachShadow) { - return null; - } // Can find the shadow root otherwise it'll return the document - - - if (typeof element.getRootNode === 'function') { - var root = element.getRootNode(); - return root instanceof ShadowRoot ? root : null; - } - - if (element instanceof ShadowRoot) { - return element; - } // when we don't find a shadow root - - - if (!element.parentNode) { - return null; - } - - return Util.findShadowRoot(element.parentNode); - } - }; - setTransitionEndSupport(); - - /** - * ------------------------------------------------------------------------ - * Constants - * ------------------------------------------------------------------------ - */ - - var NAME = 'alert'; - var VERSION = '4.3.1'; - var DATA_KEY = 'bs.alert'; - var EVENT_KEY = "." + DATA_KEY; - var DATA_API_KEY = '.data-api'; - var JQUERY_NO_CONFLICT = $.fn[NAME]; - var Selector = { - DISMISS: '[data-dismiss="alert"]' - }; - var Event = { - CLOSE: "close" + EVENT_KEY, - CLOSED: "closed" + EVENT_KEY, - CLICK_DATA_API: "click" + EVENT_KEY + DATA_API_KEY - }; - var ClassName = { - ALERT: 'alert', - FADE: 'fade', - SHOW: 'show' - /** - * ------------------------------------------------------------------------ - * Class Definition - * ------------------------------------------------------------------------ - */ - - }; - - var Alert = - /*#__PURE__*/ - function () { - function Alert(element) { - this._element = element; - } // Getters - - - var _proto = Alert.prototype; - - // Public - _proto.close = function close(element) { - var rootElement = this._element; - - if (element) { - rootElement = this._getRootElement(element); - } - - var customEvent = this._triggerCloseEvent(rootElement); - - if (customEvent.isDefaultPrevented()) { - return; - } - - this._removeElement(rootElement); - }; - - _proto.dispose = function dispose() { - $.removeData(this._element, DATA_KEY); - this._element = null; - } // Private - ; - - _proto._getRootElement = function _getRootElement(element) { - var selector = Util.getSelectorFromElement(element); - var parent = false; - - if (selector) { - parent = document.querySelector(selector); - } - - if (!parent) { - parent = $(element).closest("." + ClassName.ALERT)[0]; - } - - return parent; - }; - - _proto._triggerCloseEvent = function _triggerCloseEvent(element) { - var closeEvent = $.Event(Event.CLOSE); - $(element).trigger(closeEvent); - return closeEvent; - }; - - _proto._removeElement = function _removeElement(element) { - var _this = this; - - $(element).removeClass(ClassName.SHOW); - - if (!$(element).hasClass(ClassName.FADE)) { - this._destroyElement(element); - - return; - } - - var transitionDuration = Util.getTransitionDurationFromElement(element); - $(element).one(Util.TRANSITION_END, function (event) { - return _this._destroyElement(element, event); - }).emulateTransitionEnd(transitionDuration); - }; - - _proto._destroyElement = function _destroyElement(element) { - $(element).detach().trigger(Event.CLOSED).remove(); - } // Static - ; - - Alert._jQueryInterface = function _jQueryInterface(config) { - return this.each(function () { - var $element = $(this); - var data = $element.data(DATA_KEY); - - if (!data) { - data = new Alert(this); - $element.data(DATA_KEY, data); - } - - if (config === 'close') { - data[config](this); - } - }); - }; - - Alert._handleDismiss = function _handleDismiss(alertInstance) { - return function (event) { - if (event) { - event.preventDefault(); - } - - alertInstance.close(this); - }; - }; - - _createClass(Alert, null, [{ - key: "VERSION", - get: function get() { - return VERSION; - } - }]); - - return Alert; - }(); - /** - * ------------------------------------------------------------------------ - * Data Api implementation - * ------------------------------------------------------------------------ - */ - - - $(document).on(Event.CLICK_DATA_API, Selector.DISMISS, Alert._handleDismiss(new Alert())); - /** - * ------------------------------------------------------------------------ - * jQuery - * ------------------------------------------------------------------------ - */ - - $.fn[NAME] = Alert._jQueryInterface; - $.fn[NAME].Constructor = Alert; - - $.fn[NAME].noConflict = function () { - $.fn[NAME] = JQUERY_NO_CONFLICT; - return Alert._jQueryInterface; - }; - - /** - * ------------------------------------------------------------------------ - * Constants - * ------------------------------------------------------------------------ - */ - - var NAME$1 = 'button'; - var VERSION$1 = '4.3.1'; - var DATA_KEY$1 = 'bs.button'; - var EVENT_KEY$1 = "." + DATA_KEY$1; - var DATA_API_KEY$1 = '.data-api'; - var JQUERY_NO_CONFLICT$1 = $.fn[NAME$1]; - var ClassName$1 = { - ACTIVE: 'active', - BUTTON: 'btn', - FOCUS: 'focus' - }; - var Selector$1 = { - DATA_TOGGLE_CARROT: '[data-toggle^="button"]', - DATA_TOGGLE: '[data-toggle="buttons"]', - INPUT: 'input:not([type="hidden"])', - ACTIVE: '.active', - BUTTON: '.btn' - }; - var Event$1 = { - CLICK_DATA_API: "click" + EVENT_KEY$1 + DATA_API_KEY$1, - FOCUS_BLUR_DATA_API: "focus" + EVENT_KEY$1 + DATA_API_KEY$1 + " " + ("blur" + EVENT_KEY$1 + DATA_API_KEY$1) - /** - * ------------------------------------------------------------------------ - * Class Definition - * ------------------------------------------------------------------------ - */ - - }; - - var Button = - /*#__PURE__*/ - function () { - function Button(element) { - this._element = element; - } // Getters - - - var _proto = Button.prototype; - - // Public - _proto.toggle = function toggle() { - var triggerChangeEvent = true; - var addAriaPressed = true; - var rootElement = $(this._element).closest(Selector$1.DATA_TOGGLE)[0]; - - if (rootElement) { - var input = this._element.querySelector(Selector$1.INPUT); - - if (input) { - if (input.type === 'radio') { - if (input.checked && this._element.classList.contains(ClassName$1.ACTIVE)) { - triggerChangeEvent = false; - } else { - var activeElement = rootElement.querySelector(Selector$1.ACTIVE); - - if (activeElement) { - $(activeElement).removeClass(ClassName$1.ACTIVE); - } - } - } - - if (triggerChangeEvent) { - if (input.hasAttribute('disabled') || rootElement.hasAttribute('disabled') || input.classList.contains('disabled') || rootElement.classList.contains('disabled')) { - return; - } - - input.checked = !this._element.classList.contains(ClassName$1.ACTIVE); - $(input).trigger('change'); - } - - input.focus(); - addAriaPressed = false; - } - } - - if (addAriaPressed) { - this._element.setAttribute('aria-pressed', !this._element.classList.contains(ClassName$1.ACTIVE)); - } - - if (triggerChangeEvent) { - $(this._element).toggleClass(ClassName$1.ACTIVE); - } - }; - - _proto.dispose = function dispose() { - $.removeData(this._element, DATA_KEY$1); - this._element = null; - } // Static - ; - - Button._jQueryInterface = function _jQueryInterface(config) { - return this.each(function () { - var data = $(this).data(DATA_KEY$1); - - if (!data) { - data = new Button(this); - $(this).data(DATA_KEY$1, data); - } - - if (config === 'toggle') { - data[config](); - } - }); - }; - - _createClass(Button, null, [{ - key: "VERSION", - get: function get() { - return VERSION$1; - } - }]); - - return Button; - }(); - /** - * ------------------------------------------------------------------------ - * Data Api implementation - * ------------------------------------------------------------------------ - */ - - - $(document).on(Event$1.CLICK_DATA_API, Selector$1.DATA_TOGGLE_CARROT, function (event) { - event.preventDefault(); - var button = event.target; - - if (!$(button).hasClass(ClassName$1.BUTTON)) { - button = $(button).closest(Selector$1.BUTTON); - } - - Button._jQueryInterface.call($(button), 'toggle'); - }).on(Event$1.FOCUS_BLUR_DATA_API, Selector$1.DATA_TOGGLE_CARROT, function (event) { - var button = $(event.target).closest(Selector$1.BUTTON)[0]; - $(button).toggleClass(ClassName$1.FOCUS, /^focus(in)?$/.test(event.type)); - }); - /** - * ------------------------------------------------------------------------ - * jQuery - * ------------------------------------------------------------------------ - */ - - $.fn[NAME$1] = Button._jQueryInterface; - $.fn[NAME$1].Constructor = Button; - - $.fn[NAME$1].noConflict = function () { - $.fn[NAME$1] = JQUERY_NO_CONFLICT$1; - return Button._jQueryInterface; - }; - - /** - * ------------------------------------------------------------------------ - * Constants - * ------------------------------------------------------------------------ - */ - - var NAME$2 = 'carousel'; - var VERSION$2 = '4.3.1'; - var DATA_KEY$2 = 'bs.carousel'; - var EVENT_KEY$2 = "." + DATA_KEY$2; - var DATA_API_KEY$2 = '.data-api'; - var JQUERY_NO_CONFLICT$2 = $.fn[NAME$2]; - var ARROW_LEFT_KEYCODE = 37; // KeyboardEvent.which value for left arrow key - - var ARROW_RIGHT_KEYCODE = 39; // KeyboardEvent.which value for right arrow key - - var TOUCHEVENT_COMPAT_WAIT = 500; // Time for mouse compat events to fire after touch - - var SWIPE_THRESHOLD = 40; - var Default = { - interval: 5000, - keyboard: true, - slide: false, - pause: 'hover', - wrap: true, - touch: true - }; - var DefaultType = { - interval: '(number|boolean)', - keyboard: 'boolean', - slide: '(boolean|string)', - pause: '(string|boolean)', - wrap: 'boolean', - touch: 'boolean' - }; - var Direction = { - NEXT: 'next', - PREV: 'prev', - LEFT: 'left', - RIGHT: 'right' - }; - var Event$2 = { - SLIDE: "slide" + EVENT_KEY$2, - SLID: "slid" + EVENT_KEY$2, - KEYDOWN: "keydown" + EVENT_KEY$2, - MOUSEENTER: "mouseenter" + EVENT_KEY$2, - MOUSELEAVE: "mouseleave" + EVENT_KEY$2, - TOUCHSTART: "touchstart" + EVENT_KEY$2, - TOUCHMOVE: "touchmove" + EVENT_KEY$2, - TOUCHEND: "touchend" + EVENT_KEY$2, - POINTERDOWN: "pointerdown" + EVENT_KEY$2, - POINTERUP: "pointerup" + EVENT_KEY$2, - DRAG_START: "dragstart" + EVENT_KEY$2, - LOAD_DATA_API: "load" + EVENT_KEY$2 + DATA_API_KEY$2, - CLICK_DATA_API: "click" + EVENT_KEY$2 + DATA_API_KEY$2 - }; - var ClassName$2 = { - CAROUSEL: 'carousel', - ACTIVE: 'active', - SLIDE: 'slide', - RIGHT: 'carousel-item-right', - LEFT: 'carousel-item-left', - NEXT: 'carousel-item-next', - PREV: 'carousel-item-prev', - ITEM: 'carousel-item', - POINTER_EVENT: 'pointer-event' - }; - var Selector$2 = { - ACTIVE: '.active', - ACTIVE_ITEM: '.active.carousel-item', - ITEM: '.carousel-item', - ITEM_IMG: '.carousel-item img', - NEXT_PREV: '.carousel-item-next, .carousel-item-prev', - INDICATORS: '.carousel-indicators', - DATA_SLIDE: '[data-slide], [data-slide-to]', - DATA_RIDE: '[data-ride="carousel"]' - }; - var PointerType = { - TOUCH: 'touch', - PEN: 'pen' - /** - * ------------------------------------------------------------------------ - * Class Definition - * ------------------------------------------------------------------------ - */ - - }; - - var Carousel = - /*#__PURE__*/ - function () { - function Carousel(element, config) { - this._items = null; - this._interval = null; - this._activeElement = null; - this._isPaused = false; - this._isSliding = false; - this.touchTimeout = null; - this.touchStartX = 0; - this.touchDeltaX = 0; - this._config = this._getConfig(config); - this._element = element; - this._indicatorsElement = this._element.querySelector(Selector$2.INDICATORS); - this._touchSupported = 'ontouchstart' in document.documentElement || navigator.maxTouchPoints > 0; - this._pointerEvent = Boolean(window.PointerEvent || window.MSPointerEvent); - - this._addEventListeners(); - } // Getters - - - var _proto = Carousel.prototype; - - // Public - _proto.next = function next() { - if (!this._isSliding) { - this._slide(Direction.NEXT); - } - }; - - _proto.nextWhenVisible = function nextWhenVisible() { - // Don't call next when the page isn't visible - // or the carousel or its parent isn't visible - if (!document.hidden && $(this._element).is(':visible') && $(this._element).css('visibility') !== 'hidden') { - this.next(); - } - }; - - _proto.prev = function prev() { - if (!this._isSliding) { - this._slide(Direction.PREV); - } - }; - - _proto.pause = function pause(event) { - if (!event) { - this._isPaused = true; - } - - if (this._element.querySelector(Selector$2.NEXT_PREV)) { - Util.triggerTransitionEnd(this._element); - this.cycle(true); - } - - clearInterval(this._interval); - this._interval = null; - }; - - _proto.cycle = function cycle(event) { - if (!event) { - this._isPaused = false; - } - - if (this._interval) { - clearInterval(this._interval); - this._interval = null; - } - - if (this._config.interval && !this._isPaused) { - this._interval = setInterval((document.visibilityState ? this.nextWhenVisible : this.next).bind(this), this._config.interval); - } - }; - - _proto.to = function to(index) { - var _this = this; - - this._activeElement = this._element.querySelector(Selector$2.ACTIVE_ITEM); - - var activeIndex = this._getItemIndex(this._activeElement); - - if (index > this._items.length - 1 || index < 0) { - return; - } - - if (this._isSliding) { - $(this._element).one(Event$2.SLID, function () { - return _this.to(index); - }); - return; - } - - if (activeIndex === index) { - this.pause(); - this.cycle(); - return; - } - - var direction = index > activeIndex ? Direction.NEXT : Direction.PREV; - - this._slide(direction, this._items[index]); - }; - - _proto.dispose = function dispose() { - $(this._element).off(EVENT_KEY$2); - $.removeData(this._element, DATA_KEY$2); - this._items = null; - this._config = null; - this._element = null; - this._interval = null; - this._isPaused = null; - this._isSliding = null; - this._activeElement = null; - this._indicatorsElement = null; - } // Private - ; - - _proto._getConfig = function _getConfig(config) { - config = _objectSpread({}, Default, config); - Util.typeCheckConfig(NAME$2, config, DefaultType); - return config; - }; - - _proto._handleSwipe = function _handleSwipe() { - var absDeltax = Math.abs(this.touchDeltaX); - - if (absDeltax <= SWIPE_THRESHOLD) { - return; - } - - var direction = absDeltax / this.touchDeltaX; // swipe left - - if (direction > 0) { - this.prev(); - } // swipe right - - - if (direction < 0) { - this.next(); - } - }; - - _proto._addEventListeners = function _addEventListeners() { - var _this2 = this; - - if (this._config.keyboard) { - $(this._element).on(Event$2.KEYDOWN, function (event) { - return _this2._keydown(event); - }); - } - - if (this._config.pause === 'hover') { - $(this._element).on(Event$2.MOUSEENTER, function (event) { - return _this2.pause(event); - }).on(Event$2.MOUSELEAVE, function (event) { - return _this2.cycle(event); - }); - } - - if (this._config.touch) { - this._addTouchEventListeners(); - } - }; - - _proto._addTouchEventListeners = function _addTouchEventListeners() { - var _this3 = this; - - if (!this._touchSupported) { - return; - } - - var start = function start(event) { - if (_this3._pointerEvent && PointerType[event.originalEvent.pointerType.toUpperCase()]) { - _this3.touchStartX = event.originalEvent.clientX; - } else if (!_this3._pointerEvent) { - _this3.touchStartX = event.originalEvent.touches[0].clientX; - } - }; - - var move = function move(event) { - // ensure swiping with one touch and not pinching - if (event.originalEvent.touches && event.originalEvent.touches.length > 1) { - _this3.touchDeltaX = 0; - } else { - _this3.touchDeltaX = event.originalEvent.touches[0].clientX - _this3.touchStartX; - } - }; - - var end = function end(event) { - if (_this3._pointerEvent && PointerType[event.originalEvent.pointerType.toUpperCase()]) { - _this3.touchDeltaX = event.originalEvent.clientX - _this3.touchStartX; - } - - _this3._handleSwipe(); - - if (_this3._config.pause === 'hover') { - // If it's a touch-enabled device, mouseenter/leave are fired as - // part of the mouse compatibility events on first tap - the carousel - // would stop cycling until user tapped out of it; - // here, we listen for touchend, explicitly pause the carousel - // (as if it's the second time we tap on it, mouseenter compat event - // is NOT fired) and after a timeout (to allow for mouse compatibility - // events to fire) we explicitly restart cycling - _this3.pause(); - - if (_this3.touchTimeout) { - clearTimeout(_this3.touchTimeout); - } - - _this3.touchTimeout = setTimeout(function (event) { - return _this3.cycle(event); - }, TOUCHEVENT_COMPAT_WAIT + _this3._config.interval); - } - }; - - $(this._element.querySelectorAll(Selector$2.ITEM_IMG)).on(Event$2.DRAG_START, function (e) { - return e.preventDefault(); - }); - - if (this._pointerEvent) { - $(this._element).on(Event$2.POINTERDOWN, function (event) { - return start(event); - }); - $(this._element).on(Event$2.POINTERUP, function (event) { - return end(event); - }); - - this._element.classList.add(ClassName$2.POINTER_EVENT); - } else { - $(this._element).on(Event$2.TOUCHSTART, function (event) { - return start(event); - }); - $(this._element).on(Event$2.TOUCHMOVE, function (event) { - return move(event); - }); - $(this._element).on(Event$2.TOUCHEND, function (event) { - return end(event); - }); - } - }; - - _proto._keydown = function _keydown(event) { - if (/input|textarea/i.test(event.target.tagName)) { - return; - } - - switch (event.which) { - case ARROW_LEFT_KEYCODE: - event.preventDefault(); - this.prev(); - break; - - case ARROW_RIGHT_KEYCODE: - event.preventDefault(); - this.next(); - break; - - default: - } - }; - - _proto._getItemIndex = function _getItemIndex(element) { - this._items = element && element.parentNode ? [].slice.call(element.parentNode.querySelectorAll(Selector$2.ITEM)) : []; - return this._items.indexOf(element); - }; - - _proto._getItemByDirection = function _getItemByDirection(direction, activeElement) { - var isNextDirection = direction === Direction.NEXT; - var isPrevDirection = direction === Direction.PREV; - - var activeIndex = this._getItemIndex(activeElement); - - var lastItemIndex = this._items.length - 1; - var isGoingToWrap = isPrevDirection && activeIndex === 0 || isNextDirection && activeIndex === lastItemIndex; - - if (isGoingToWrap && !this._config.wrap) { - return activeElement; - } - - var delta = direction === Direction.PREV ? -1 : 1; - var itemIndex = (activeIndex + delta) % this._items.length; - return itemIndex === -1 ? this._items[this._items.length - 1] : this._items[itemIndex]; - }; - - _proto._triggerSlideEvent = function _triggerSlideEvent(relatedTarget, eventDirectionName) { - var targetIndex = this._getItemIndex(relatedTarget); - - var fromIndex = this._getItemIndex(this._element.querySelector(Selector$2.ACTIVE_ITEM)); - - var slideEvent = $.Event(Event$2.SLIDE, { - relatedTarget: relatedTarget, - direction: eventDirectionName, - from: fromIndex, - to: targetIndex - }); - $(this._element).trigger(slideEvent); - return slideEvent; - }; - - _proto._setActiveIndicatorElement = function _setActiveIndicatorElement(element) { - if (this._indicatorsElement) { - var indicators = [].slice.call(this._indicatorsElement.querySelectorAll(Selector$2.ACTIVE)); - $(indicators).removeClass(ClassName$2.ACTIVE); - - var nextIndicator = this._indicatorsElement.children[this._getItemIndex(element)]; - - if (nextIndicator) { - $(nextIndicator).addClass(ClassName$2.ACTIVE); - } - } - }; - - _proto._slide = function _slide(direction, element) { - var _this4 = this; - - var activeElement = this._element.querySelector(Selector$2.ACTIVE_ITEM); - - var activeElementIndex = this._getItemIndex(activeElement); - - var nextElement = element || activeElement && this._getItemByDirection(direction, activeElement); - - var nextElementIndex = this._getItemIndex(nextElement); - - var isCycling = Boolean(this._interval); - var directionalClassName; - var orderClassName; - var eventDirectionName; - - if (direction === Direction.NEXT) { - directionalClassName = ClassName$2.LEFT; - orderClassName = ClassName$2.NEXT; - eventDirectionName = Direction.LEFT; - } else { - directionalClassName = ClassName$2.RIGHT; - orderClassName = ClassName$2.PREV; - eventDirectionName = Direction.RIGHT; - } - - if (nextElement && $(nextElement).hasClass(ClassName$2.ACTIVE)) { - this._isSliding = false; - return; - } - - var slideEvent = this._triggerSlideEvent(nextElement, eventDirectionName); - - if (slideEvent.isDefaultPrevented()) { - return; - } - - if (!activeElement || !nextElement) { - // Some weirdness is happening, so we bail - return; - } - - this._isSliding = true; - - if (isCycling) { - this.pause(); - } - - this._setActiveIndicatorElement(nextElement); - - var slidEvent = $.Event(Event$2.SLID, { - relatedTarget: nextElement, - direction: eventDirectionName, - from: activeElementIndex, - to: nextElementIndex - }); - - if ($(this._element).hasClass(ClassName$2.SLIDE)) { - $(nextElement).addClass(orderClassName); - Util.reflow(nextElement); - $(activeElement).addClass(directionalClassName); - $(nextElement).addClass(directionalClassName); - var nextElementInterval = parseInt(nextElement.getAttribute('data-interval'), 10); - - if (nextElementInterval) { - this._config.defaultInterval = this._config.defaultInterval || this._config.interval; - this._config.interval = nextElementInterval; - } else { - this._config.interval = this._config.defaultInterval || this._config.interval; - } - - var transitionDuration = Util.getTransitionDurationFromElement(activeElement); - $(activeElement).one(Util.TRANSITION_END, function () { - $(nextElement).removeClass(directionalClassName + " " + orderClassName).addClass(ClassName$2.ACTIVE); - $(activeElement).removeClass(ClassName$2.ACTIVE + " " + orderClassName + " " + directionalClassName); - _this4._isSliding = false; - setTimeout(function () { - return $(_this4._element).trigger(slidEvent); - }, 0); - }).emulateTransitionEnd(transitionDuration); - } else { - $(activeElement).removeClass(ClassName$2.ACTIVE); - $(nextElement).addClass(ClassName$2.ACTIVE); - this._isSliding = false; - $(this._element).trigger(slidEvent); - } - - if (isCycling) { - this.cycle(); - } - } // Static - ; - - Carousel._jQueryInterface = function _jQueryInterface(config) { - return this.each(function () { - var data = $(this).data(DATA_KEY$2); - - var _config = _objectSpread({}, Default, $(this).data()); - - if (typeof config === 'object') { - _config = _objectSpread({}, _config, config); - } - - var action = typeof config === 'string' ? config : _config.slide; - - if (!data) { - data = new Carousel(this, _config); - $(this).data(DATA_KEY$2, data); - } - - if (typeof config === 'number') { - data.to(config); - } else if (typeof action === 'string') { - if (typeof data[action] === 'undefined') { - throw new TypeError("No method named \"" + action + "\""); - } - - data[action](); - } else if (_config.interval && _config.ride) { - data.pause(); - data.cycle(); - } - }); - }; - - Carousel._dataApiClickHandler = function _dataApiClickHandler(event) { - var selector = Util.getSelectorFromElement(this); - - if (!selector) { - return; - } - - var target = $(selector)[0]; - - if (!target || !$(target).hasClass(ClassName$2.CAROUSEL)) { - return; - } - - var config = _objectSpread({}, $(target).data(), $(this).data()); - - var slideIndex = this.getAttribute('data-slide-to'); - - if (slideIndex) { - config.interval = false; - } - - Carousel._jQueryInterface.call($(target), config); - - if (slideIndex) { - $(target).data(DATA_KEY$2).to(slideIndex); - } - - event.preventDefault(); - }; - - _createClass(Carousel, null, [{ - key: "VERSION", - get: function get() { - return VERSION$2; - } - }, { - key: "Default", - get: function get() { - return Default; - } - }]); - - return Carousel; - }(); - /** - * ------------------------------------------------------------------------ - * Data Api implementation - * ------------------------------------------------------------------------ - */ - - - $(document).on(Event$2.CLICK_DATA_API, Selector$2.DATA_SLIDE, Carousel._dataApiClickHandler); - $(window).on(Event$2.LOAD_DATA_API, function () { - var carousels = [].slice.call(document.querySelectorAll(Selector$2.DATA_RIDE)); - - for (var i = 0, len = carousels.length; i < len; i++) { - var $carousel = $(carousels[i]); - - Carousel._jQueryInterface.call($carousel, $carousel.data()); - } - }); - /** - * ------------------------------------------------------------------------ - * jQuery - * ------------------------------------------------------------------------ - */ - - $.fn[NAME$2] = Carousel._jQueryInterface; - $.fn[NAME$2].Constructor = Carousel; - - $.fn[NAME$2].noConflict = function () { - $.fn[NAME$2] = JQUERY_NO_CONFLICT$2; - return Carousel._jQueryInterface; - }; - - /** - * ------------------------------------------------------------------------ - * Constants - * ------------------------------------------------------------------------ - */ - - var NAME$3 = 'collapse'; - var VERSION$3 = '4.3.1'; - var DATA_KEY$3 = 'bs.collapse'; - var EVENT_KEY$3 = "." + DATA_KEY$3; - var DATA_API_KEY$3 = '.data-api'; - var JQUERY_NO_CONFLICT$3 = $.fn[NAME$3]; - var Default$1 = { - toggle: true, - parent: '' - }; - var DefaultType$1 = { - toggle: 'boolean', - parent: '(string|element)' - }; - var Event$3 = { - SHOW: "show" + EVENT_KEY$3, - SHOWN: "shown" + EVENT_KEY$3, - HIDE: "hide" + EVENT_KEY$3, - HIDDEN: "hidden" + EVENT_KEY$3, - CLICK_DATA_API: "click" + EVENT_KEY$3 + DATA_API_KEY$3 - }; - var ClassName$3 = { - SHOW: 'show', - COLLAPSE: 'collapse', - COLLAPSING: 'collapsing', - COLLAPSED: 'collapsed' - }; - var Dimension = { - WIDTH: 'width', - HEIGHT: 'height' - }; - var Selector$3 = { - ACTIVES: '.show, .collapsing', - DATA_TOGGLE: '[data-toggle="collapse"]' - /** - * ------------------------------------------------------------------------ - * Class Definition - * ------------------------------------------------------------------------ - */ - - }; - - var Collapse = - /*#__PURE__*/ - function () { - function Collapse(element, config) { - this._isTransitioning = false; - this._element = element; - this._config = this._getConfig(config); - this._triggerArray = [].slice.call(document.querySelectorAll("[data-toggle=\"collapse\"][href=\"#" + element.id + "\"]," + ("[data-toggle=\"collapse\"][data-target=\"#" + element.id + "\"]"))); - var toggleList = [].slice.call(document.querySelectorAll(Selector$3.DATA_TOGGLE)); - - for (var i = 0, len = toggleList.length; i < len; i++) { - var elem = toggleList[i]; - var selector = Util.getSelectorFromElement(elem); - var filterElement = [].slice.call(document.querySelectorAll(selector)).filter(function (foundElem) { - return foundElem === element; - }); - - if (selector !== null && filterElement.length > 0) { - this._selector = selector; - - this._triggerArray.push(elem); - } - } - - this._parent = this._config.parent ? this._getParent() : null; - - if (!this._config.parent) { - this._addAriaAndCollapsedClass(this._element, this._triggerArray); - } - - if (this._config.toggle) { - this.toggle(); - } - } // Getters - - - var _proto = Collapse.prototype; - - // Public - _proto.toggle = function toggle() { - if ($(this._element).hasClass(ClassName$3.SHOW)) { - this.hide(); - } else { - this.show(); - } - }; - - _proto.show = function show() { - var _this = this; - - if (this._isTransitioning || $(this._element).hasClass(ClassName$3.SHOW)) { - return; - } - - var actives; - var activesData; - - if (this._parent) { - actives = [].slice.call(this._parent.querySelectorAll(Selector$3.ACTIVES)).filter(function (elem) { - if (typeof _this._config.parent === 'string') { - return elem.getAttribute('data-parent') === _this._config.parent; - } - - return elem.classList.contains(ClassName$3.COLLAPSE); - }); - - if (actives.length === 0) { - actives = null; - } - } - - if (actives) { - activesData = $(actives).not(this._selector).data(DATA_KEY$3); - - if (activesData && activesData._isTransitioning) { - return; - } - } - - var startEvent = $.Event(Event$3.SHOW); - $(this._element).trigger(startEvent); - - if (startEvent.isDefaultPrevented()) { - return; - } - - if (actives) { - Collapse._jQueryInterface.call($(actives).not(this._selector), 'hide'); - - if (!activesData) { - $(actives).data(DATA_KEY$3, null); - } - } - - var dimension = this._getDimension(); - - $(this._element).removeClass(ClassName$3.COLLAPSE).addClass(ClassName$3.COLLAPSING); - this._element.style[dimension] = 0; - - if (this._triggerArray.length) { - $(this._triggerArray).removeClass(ClassName$3.COLLAPSED).attr('aria-expanded', true); - } - - this.setTransitioning(true); - - var complete = function complete() { - $(_this._element).removeClass(ClassName$3.COLLAPSING).addClass(ClassName$3.COLLAPSE).addClass(ClassName$3.SHOW); - _this._element.style[dimension] = ''; - - _this.setTransitioning(false); - - $(_this._element).trigger(Event$3.SHOWN); - }; - - var capitalizedDimension = dimension[0].toUpperCase() + dimension.slice(1); - var scrollSize = "scroll" + capitalizedDimension; - var transitionDuration = Util.getTransitionDurationFromElement(this._element); - $(this._element).one(Util.TRANSITION_END, complete).emulateTransitionEnd(transitionDuration); - this._element.style[dimension] = this._element[scrollSize] + "px"; - }; - - _proto.hide = function hide() { - var _this2 = this; - - if (this._isTransitioning || !$(this._element).hasClass(ClassName$3.SHOW)) { - return; - } - - var startEvent = $.Event(Event$3.HIDE); - $(this._element).trigger(startEvent); - - if (startEvent.isDefaultPrevented()) { - return; - } - - var dimension = this._getDimension(); - - this._element.style[dimension] = this._element.getBoundingClientRect()[dimension] + "px"; - Util.reflow(this._element); - $(this._element).addClass(ClassName$3.COLLAPSING).removeClass(ClassName$3.COLLAPSE).removeClass(ClassName$3.SHOW); - var triggerArrayLength = this._triggerArray.length; - - if (triggerArrayLength > 0) { - for (var i = 0; i < triggerArrayLength; i++) { - var trigger = this._triggerArray[i]; - var selector = Util.getSelectorFromElement(trigger); - - if (selector !== null) { - var $elem = $([].slice.call(document.querySelectorAll(selector))); - - if (!$elem.hasClass(ClassName$3.SHOW)) { - $(trigger).addClass(ClassName$3.COLLAPSED).attr('aria-expanded', false); - } - } - } - } - - this.setTransitioning(true); - - var complete = function complete() { - _this2.setTransitioning(false); - - $(_this2._element).removeClass(ClassName$3.COLLAPSING).addClass(ClassName$3.COLLAPSE).trigger(Event$3.HIDDEN); - }; - - this._element.style[dimension] = ''; - var transitionDuration = Util.getTransitionDurationFromElement(this._element); - $(this._element).one(Util.TRANSITION_END, complete).emulateTransitionEnd(transitionDuration); - }; - - _proto.setTransitioning = function setTransitioning(isTransitioning) { - this._isTransitioning = isTransitioning; - }; - - _proto.dispose = function dispose() { - $.removeData(this._element, DATA_KEY$3); - this._config = null; - this._parent = null; - this._element = null; - this._triggerArray = null; - this._isTransitioning = null; - } // Private - ; - - _proto._getConfig = function _getConfig(config) { - config = _objectSpread({}, Default$1, config); - config.toggle = Boolean(config.toggle); // Coerce string values - - Util.typeCheckConfig(NAME$3, config, DefaultType$1); - return config; - }; - - _proto._getDimension = function _getDimension() { - var hasWidth = $(this._element).hasClass(Dimension.WIDTH); - return hasWidth ? Dimension.WIDTH : Dimension.HEIGHT; - }; - - _proto._getParent = function _getParent() { - var _this3 = this; - - var parent; - - if (Util.isElement(this._config.parent)) { - parent = this._config.parent; // It's a jQuery object - - if (typeof this._config.parent.jquery !== 'undefined') { - parent = this._config.parent[0]; - } - } else { - parent = document.querySelector(this._config.parent); - } - - var selector = "[data-toggle=\"collapse\"][data-parent=\"" + this._config.parent + "\"]"; - var children = [].slice.call(parent.querySelectorAll(selector)); - $(children).each(function (i, element) { - _this3._addAriaAndCollapsedClass(Collapse._getTargetFromElement(element), [element]); - }); - return parent; - }; - - _proto._addAriaAndCollapsedClass = function _addAriaAndCollapsedClass(element, triggerArray) { - var isOpen = $(element).hasClass(ClassName$3.SHOW); - - if (triggerArray.length) { - $(triggerArray).toggleClass(ClassName$3.COLLAPSED, !isOpen).attr('aria-expanded', isOpen); - } - } // Static - ; - - Collapse._getTargetFromElement = function _getTargetFromElement(element) { - var selector = Util.getSelectorFromElement(element); - return selector ? document.querySelector(selector) : null; - }; - - Collapse._jQueryInterface = function _jQueryInterface(config) { - return this.each(function () { - var $this = $(this); - var data = $this.data(DATA_KEY$3); - - var _config = _objectSpread({}, Default$1, $this.data(), typeof config === 'object' && config ? config : {}); - - if (!data && _config.toggle && /show|hide/.test(config)) { - _config.toggle = false; - } - - if (!data) { - data = new Collapse(this, _config); - $this.data(DATA_KEY$3, data); - } - - if (typeof config === 'string') { - if (typeof data[config] === 'undefined') { - throw new TypeError("No method named \"" + config + "\""); - } - - data[config](); - } - }); - }; - - _createClass(Collapse, null, [{ - key: "VERSION", - get: function get() { - return VERSION$3; - } - }, { - key: "Default", - get: function get() { - return Default$1; - } - }]); - - return Collapse; - }(); - /** - * ------------------------------------------------------------------------ - * Data Api implementation - * ------------------------------------------------------------------------ - */ - - - $(document).on(Event$3.CLICK_DATA_API, Selector$3.DATA_TOGGLE, function (event) { - // preventDefault only for elements (which change the URL) not inside the collapsible element - if (event.currentTarget.tagName === 'A') { - event.preventDefault(); - } - - var $trigger = $(this); - var selector = Util.getSelectorFromElement(this); - var selectors = [].slice.call(document.querySelectorAll(selector)); - $(selectors).each(function () { - var $target = $(this); - var data = $target.data(DATA_KEY$3); - var config = data ? 'toggle' : $trigger.data(); - - Collapse._jQueryInterface.call($target, config); - }); - }); - /** - * ------------------------------------------------------------------------ - * jQuery - * ------------------------------------------------------------------------ - */ - - $.fn[NAME$3] = Collapse._jQueryInterface; - $.fn[NAME$3].Constructor = Collapse; - - $.fn[NAME$3].noConflict = function () { - $.fn[NAME$3] = JQUERY_NO_CONFLICT$3; - return Collapse._jQueryInterface; - }; - - /**! - * @fileOverview Kickass library to create and place poppers near their reference elements. - * @version 1.14.7 - * @license - * Copyright (c) 2016 Federico Zivolo and contributors - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - * SOFTWARE. - */ - var isBrowser = typeof window !== 'undefined' && typeof document !== 'undefined'; - - var longerTimeoutBrowsers = ['Edge', 'Trident', 'Firefox']; - var timeoutDuration = 0; - for (var i = 0; i < longerTimeoutBrowsers.length; i += 1) { - if (isBrowser && navigator.userAgent.indexOf(longerTimeoutBrowsers[i]) >= 0) { - timeoutDuration = 1; - break; - } - } - - function microtaskDebounce(fn) { - var called = false; - return function () { - if (called) { - return; - } - called = true; - window.Promise.resolve().then(function () { - called = false; - fn(); - }); - }; - } - - function taskDebounce(fn) { - var scheduled = false; - return function () { - if (!scheduled) { - scheduled = true; - setTimeout(function () { - scheduled = false; - fn(); - }, timeoutDuration); - } - }; - } - - var supportsMicroTasks = isBrowser && window.Promise; - - /** - * Create a debounced version of a method, that's asynchronously deferred - * but called in the minimum time possible. - * - * @method - * @memberof Popper.Utils - * @argument {Function} fn - * @returns {Function} - */ - var debounce = supportsMicroTasks ? microtaskDebounce : taskDebounce; - - /** - * Check if the given variable is a function - * @method - * @memberof Popper.Utils - * @argument {Any} functionToCheck - variable to check - * @returns {Boolean} answer to: is a function? - */ - function isFunction(functionToCheck) { - var getType = {}; - return functionToCheck && getType.toString.call(functionToCheck) === '[object Function]'; - } - - /** - * Get CSS computed property of the given element - * @method - * @memberof Popper.Utils - * @argument {Eement} element - * @argument {String} property - */ - function getStyleComputedProperty(element, property) { - if (element.nodeType !== 1) { - return []; - } - // NOTE: 1 DOM access here - var window = element.ownerDocument.defaultView; - var css = window.getComputedStyle(element, null); - return property ? css[property] : css; - } - - /** - * Returns the parentNode or the host of the element - * @method - * @memberof Popper.Utils - * @argument {Element} element - * @returns {Element} parent - */ - function getParentNode(element) { - if (element.nodeName === 'HTML') { - return element; - } - return element.parentNode || element.host; - } - - /** - * Returns the scrolling parent of the given element - * @method - * @memberof Popper.Utils - * @argument {Element} element - * @returns {Element} scroll parent - */ - function getScrollParent(element) { - // Return body, `getScroll` will take care to get the correct `scrollTop` from it - if (!element) { - return document.body; - } - - switch (element.nodeName) { - case 'HTML': - case 'BODY': - return element.ownerDocument.body; - case '#document': - return element.body; - } - - // Firefox want us to check `-x` and `-y` variations as well - - var _getStyleComputedProp = getStyleComputedProperty(element), - overflow = _getStyleComputedProp.overflow, - overflowX = _getStyleComputedProp.overflowX, - overflowY = _getStyleComputedProp.overflowY; - - if (/(auto|scroll|overlay)/.test(overflow + overflowY + overflowX)) { - return element; - } - - return getScrollParent(getParentNode(element)); - } - - var isIE11 = isBrowser && !!(window.MSInputMethodContext && document.documentMode); - var isIE10 = isBrowser && /MSIE 10/.test(navigator.userAgent); - - /** - * Determines if the browser is Internet Explorer - * @method - * @memberof Popper.Utils - * @param {Number} version to check - * @returns {Boolean} isIE - */ - function isIE(version) { - if (version === 11) { - return isIE11; - } - if (version === 10) { - return isIE10; - } - return isIE11 || isIE10; - } - - /** - * Returns the offset parent of the given element - * @method - * @memberof Popper.Utils - * @argument {Element} element - * @returns {Element} offset parent - */ - function getOffsetParent(element) { - if (!element) { - return document.documentElement; - } - - var noOffsetParent = isIE(10) ? document.body : null; - - // NOTE: 1 DOM access here - var offsetParent = element.offsetParent || null; - // Skip hidden elements which don't have an offsetParent - while (offsetParent === noOffsetParent && element.nextElementSibling) { - offsetParent = (element = element.nextElementSibling).offsetParent; - } - - var nodeName = offsetParent && offsetParent.nodeName; - - if (!nodeName || nodeName === 'BODY' || nodeName === 'HTML') { - return element ? element.ownerDocument.documentElement : document.documentElement; - } - - // .offsetParent will return the closest TH, TD or TABLE in case - // no offsetParent is present, I hate this job... - if (['TH', 'TD', 'TABLE'].indexOf(offsetParent.nodeName) !== -1 && getStyleComputedProperty(offsetParent, 'position') === 'static') { - return getOffsetParent(offsetParent); - } - - return offsetParent; - } - - function isOffsetContainer(element) { - var nodeName = element.nodeName; - - if (nodeName === 'BODY') { - return false; - } - return nodeName === 'HTML' || getOffsetParent(element.firstElementChild) === element; - } - - /** - * Finds the root node (document, shadowDOM root) of the given element - * @method - * @memberof Popper.Utils - * @argument {Element} node - * @returns {Element} root node - */ - function getRoot(node) { - if (node.parentNode !== null) { - return getRoot(node.parentNode); - } - - return node; - } - - /** - * Finds the offset parent common to the two provided nodes - * @method - * @memberof Popper.Utils - * @argument {Element} element1 - * @argument {Element} element2 - * @returns {Element} common offset parent - */ - function findCommonOffsetParent(element1, element2) { - // This check is needed to avoid errors in case one of the elements isn't defined for any reason - if (!element1 || !element1.nodeType || !element2 || !element2.nodeType) { - return document.documentElement; - } - - // Here we make sure to give as "start" the element that comes first in the DOM - var order = element1.compareDocumentPosition(element2) & Node.DOCUMENT_POSITION_FOLLOWING; - var start = order ? element1 : element2; - var end = order ? element2 : element1; - - // Get common ancestor container - var range = document.createRange(); - range.setStart(start, 0); - range.setEnd(end, 0); - var commonAncestorContainer = range.commonAncestorContainer; - - // Both nodes are inside #document - - if (element1 !== commonAncestorContainer && element2 !== commonAncestorContainer || start.contains(end)) { - if (isOffsetContainer(commonAncestorContainer)) { - return commonAncestorContainer; - } - - return getOffsetParent(commonAncestorContainer); - } - - // one of the nodes is inside shadowDOM, find which one - var element1root = getRoot(element1); - if (element1root.host) { - return findCommonOffsetParent(element1root.host, element2); - } else { - return findCommonOffsetParent(element1, getRoot(element2).host); - } - } - - /** - * Gets the scroll value of the given element in the given side (top and left) - * @method - * @memberof Popper.Utils - * @argument {Element} element - * @argument {String} side `top` or `left` - * @returns {number} amount of scrolled pixels - */ - function getScroll(element) { - var side = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'top'; - - var upperSide = side === 'top' ? 'scrollTop' : 'scrollLeft'; - var nodeName = element.nodeName; - - if (nodeName === 'BODY' || nodeName === 'HTML') { - var html = element.ownerDocument.documentElement; - var scrollingElement = element.ownerDocument.scrollingElement || html; - return scrollingElement[upperSide]; - } - - return element[upperSide]; - } - - /* - * Sum or subtract the element scroll values (left and top) from a given rect object - * @method - * @memberof Popper.Utils - * @param {Object} rect - Rect object you want to change - * @param {HTMLElement} element - The element from the function reads the scroll values - * @param {Boolean} subtract - set to true if you want to subtract the scroll values - * @return {Object} rect - The modifier rect object - */ - function includeScroll(rect, element) { - var subtract = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false; - - var scrollTop = getScroll(element, 'top'); - var scrollLeft = getScroll(element, 'left'); - var modifier = subtract ? -1 : 1; - rect.top += scrollTop * modifier; - rect.bottom += scrollTop * modifier; - rect.left += scrollLeft * modifier; - rect.right += scrollLeft * modifier; - return rect; - } - - /* - * Helper to detect borders of a given element - * @method - * @memberof Popper.Utils - * @param {CSSStyleDeclaration} styles - * Result of `getStyleComputedProperty` on the given element - * @param {String} axis - `x` or `y` - * @return {number} borders - The borders size of the given axis - */ - - function getBordersSize(styles, axis) { - var sideA = axis === 'x' ? 'Left' : 'Top'; - var sideB = sideA === 'Left' ? 'Right' : 'Bottom'; - - return parseFloat(styles['border' + sideA + 'Width'], 10) + parseFloat(styles['border' + sideB + 'Width'], 10); - } - - function getSize(axis, body, html, computedStyle) { - return Math.max(body['offset' + axis], body['scroll' + axis], html['client' + axis], html['offset' + axis], html['scroll' + axis], isIE(10) ? parseInt(html['offset' + axis]) + parseInt(computedStyle['margin' + (axis === 'Height' ? 'Top' : 'Left')]) + parseInt(computedStyle['margin' + (axis === 'Height' ? 'Bottom' : 'Right')]) : 0); - } - - function getWindowSizes(document) { - var body = document.body; - var html = document.documentElement; - var computedStyle = isIE(10) && getComputedStyle(html); - - return { - height: getSize('Height', body, html, computedStyle), - width: getSize('Width', body, html, computedStyle) - }; - } - - var classCallCheck = function (instance, Constructor) { - if (!(instance instanceof Constructor)) { - throw new TypeError("Cannot call a class as a function"); - } - }; - - var createClass = function () { - function defineProperties(target, props) { - for (var i = 0; i < props.length; i++) { - var descriptor = props[i]; - descriptor.enumerable = descriptor.enumerable || false; - descriptor.configurable = true; - if ("value" in descriptor) descriptor.writable = true; - Object.defineProperty(target, descriptor.key, descriptor); - } - } - - return function (Constructor, protoProps, staticProps) { - if (protoProps) defineProperties(Constructor.prototype, protoProps); - if (staticProps) defineProperties(Constructor, staticProps); - return Constructor; - }; - }(); - - - - - - var defineProperty = function (obj, key, value) { - if (key in obj) { - Object.defineProperty(obj, key, { - value: value, - enumerable: true, - configurable: true, - writable: true - }); - } else { - obj[key] = value; - } - - return obj; - }; - - var _extends = Object.assign || function (target) { - for (var i = 1; i < arguments.length; i++) { - var source = arguments[i]; - - for (var key in source) { - if (Object.prototype.hasOwnProperty.call(source, key)) { - target[key] = source[key]; - } - } - } - - return target; - }; - - /** - * Given element offsets, generate an output similar to getBoundingClientRect - * @method - * @memberof Popper.Utils - * @argument {Object} offsets - * @returns {Object} ClientRect like output - */ - function getClientRect(offsets) { - return _extends({}, offsets, { - right: offsets.left + offsets.width, - bottom: offsets.top + offsets.height - }); - } - - /** - * Get bounding client rect of given element - * @method - * @memberof Popper.Utils - * @param {HTMLElement} element - * @return {Object} client rect - */ - function getBoundingClientRect(element) { - var rect = {}; - - // IE10 10 FIX: Please, don't ask, the element isn't - // considered in DOM in some circumstances... - // This isn't reproducible in IE10 compatibility mode of IE11 - try { - if (isIE(10)) { - rect = element.getBoundingClientRect(); - var scrollTop = getScroll(element, 'top'); - var scrollLeft = getScroll(element, 'left'); - rect.top += scrollTop; - rect.left += scrollLeft; - rect.bottom += scrollTop; - rect.right += scrollLeft; - } else { - rect = element.getBoundingClientRect(); - } - } catch (e) {} - - var result = { - left: rect.left, - top: rect.top, - width: rect.right - rect.left, - height: rect.bottom - rect.top - }; - - // subtract scrollbar size from sizes - var sizes = element.nodeName === 'HTML' ? getWindowSizes(element.ownerDocument) : {}; - var width = sizes.width || element.clientWidth || result.right - result.left; - var height = sizes.height || element.clientHeight || result.bottom - result.top; - - var horizScrollbar = element.offsetWidth - width; - var vertScrollbar = element.offsetHeight - height; - - // if an hypothetical scrollbar is detected, we must be sure it's not a `border` - // we make this check conditional for performance reasons - if (horizScrollbar || vertScrollbar) { - var styles = getStyleComputedProperty(element); - horizScrollbar -= getBordersSize(styles, 'x'); - vertScrollbar -= getBordersSize(styles, 'y'); - - result.width -= horizScrollbar; - result.height -= vertScrollbar; - } - - return getClientRect(result); - } - - function getOffsetRectRelativeToArbitraryNode(children, parent) { - var fixedPosition = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false; - - var isIE10 = isIE(10); - var isHTML = parent.nodeName === 'HTML'; - var childrenRect = getBoundingClientRect(children); - var parentRect = getBoundingClientRect(parent); - var scrollParent = getScrollParent(children); - - var styles = getStyleComputedProperty(parent); - var borderTopWidth = parseFloat(styles.borderTopWidth, 10); - var borderLeftWidth = parseFloat(styles.borderLeftWidth, 10); - - // In cases where the parent is fixed, we must ignore negative scroll in offset calc - if (fixedPosition && isHTML) { - parentRect.top = Math.max(parentRect.top, 0); - parentRect.left = Math.max(parentRect.left, 0); - } - var offsets = getClientRect({ - top: childrenRect.top - parentRect.top - borderTopWidth, - left: childrenRect.left - parentRect.left - borderLeftWidth, - width: childrenRect.width, - height: childrenRect.height - }); - offsets.marginTop = 0; - offsets.marginLeft = 0; - - // Subtract margins of documentElement in case it's being used as parent - // we do this only on HTML because it's the only element that behaves - // differently when margins are applied to it. The margins are included in - // the box of the documentElement, in the other cases not. - if (!isIE10 && isHTML) { - var marginTop = parseFloat(styles.marginTop, 10); - var marginLeft = parseFloat(styles.marginLeft, 10); - - offsets.top -= borderTopWidth - marginTop; - offsets.bottom -= borderTopWidth - marginTop; - offsets.left -= borderLeftWidth - marginLeft; - offsets.right -= borderLeftWidth - marginLeft; - - // Attach marginTop and marginLeft because in some circumstances we may need them - offsets.marginTop = marginTop; - offsets.marginLeft = marginLeft; - } - - if (isIE10 && !fixedPosition ? parent.contains(scrollParent) : parent === scrollParent && scrollParent.nodeName !== 'BODY') { - offsets = includeScroll(offsets, parent); - } - - return offsets; - } - - function getViewportOffsetRectRelativeToArtbitraryNode(element) { - var excludeScroll = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false; - - var html = element.ownerDocument.documentElement; - var relativeOffset = getOffsetRectRelativeToArbitraryNode(element, html); - var width = Math.max(html.clientWidth, window.innerWidth || 0); - var height = Math.max(html.clientHeight, window.innerHeight || 0); - - var scrollTop = !excludeScroll ? getScroll(html) : 0; - var scrollLeft = !excludeScroll ? getScroll(html, 'left') : 0; - - var offset = { - top: scrollTop - relativeOffset.top + relativeOffset.marginTop, - left: scrollLeft - relativeOffset.left + relativeOffset.marginLeft, - width: width, - height: height - }; - - return getClientRect(offset); - } - - /** - * Check if the given element is fixed or is inside a fixed parent - * @method - * @memberof Popper.Utils - * @argument {Element} element - * @argument {Element} customContainer - * @returns {Boolean} answer to "isFixed?" - */ - function isFixed(element) { - var nodeName = element.nodeName; - if (nodeName === 'BODY' || nodeName === 'HTML') { - return false; - } - if (getStyleComputedProperty(element, 'position') === 'fixed') { - return true; - } - var parentNode = getParentNode(element); - if (!parentNode) { - return false; - } - return isFixed(parentNode); - } - - /** - * Finds the first parent of an element that has a transformed property defined - * @method - * @memberof Popper.Utils - * @argument {Element} element - * @returns {Element} first transformed parent or documentElement - */ - - function getFixedPositionOffsetParent(element) { - // This check is needed to avoid errors in case one of the elements isn't defined for any reason - if (!element || !element.parentElement || isIE()) { - return document.documentElement; - } - var el = element.parentElement; - while (el && getStyleComputedProperty(el, 'transform') === 'none') { - el = el.parentElement; - } - return el || document.documentElement; - } - - /** - * Computed the boundaries limits and return them - * @method - * @memberof Popper.Utils - * @param {HTMLElement} popper - * @param {HTMLElement} reference - * @param {number} padding - * @param {HTMLElement} boundariesElement - Element used to define the boundaries - * @param {Boolean} fixedPosition - Is in fixed position mode - * @returns {Object} Coordinates of the boundaries - */ - function getBoundaries(popper, reference, padding, boundariesElement) { - var fixedPosition = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : false; - - // NOTE: 1 DOM access here - - var boundaries = { top: 0, left: 0 }; - var offsetParent = fixedPosition ? getFixedPositionOffsetParent(popper) : findCommonOffsetParent(popper, reference); - - // Handle viewport case - if (boundariesElement === 'viewport') { - boundaries = getViewportOffsetRectRelativeToArtbitraryNode(offsetParent, fixedPosition); - } else { - // Handle other cases based on DOM element used as boundaries - var boundariesNode = void 0; - if (boundariesElement === 'scrollParent') { - boundariesNode = getScrollParent(getParentNode(reference)); - if (boundariesNode.nodeName === 'BODY') { - boundariesNode = popper.ownerDocument.documentElement; - } - } else if (boundariesElement === 'window') { - boundariesNode = popper.ownerDocument.documentElement; - } else { - boundariesNode = boundariesElement; - } - - var offsets = getOffsetRectRelativeToArbitraryNode(boundariesNode, offsetParent, fixedPosition); - - // In case of HTML, we need a different computation - if (boundariesNode.nodeName === 'HTML' && !isFixed(offsetParent)) { - var _getWindowSizes = getWindowSizes(popper.ownerDocument), - height = _getWindowSizes.height, - width = _getWindowSizes.width; - - boundaries.top += offsets.top - offsets.marginTop; - boundaries.bottom = height + offsets.top; - boundaries.left += offsets.left - offsets.marginLeft; - boundaries.right = width + offsets.left; - } else { - // for all the other DOM elements, this one is good - boundaries = offsets; - } - } - - // Add paddings - padding = padding || 0; - var isPaddingNumber = typeof padding === 'number'; - boundaries.left += isPaddingNumber ? padding : padding.left || 0; - boundaries.top += isPaddingNumber ? padding : padding.top || 0; - boundaries.right -= isPaddingNumber ? padding : padding.right || 0; - boundaries.bottom -= isPaddingNumber ? padding : padding.bottom || 0; - - return boundaries; - } - - function getArea(_ref) { - var width = _ref.width, - height = _ref.height; - - return width * height; - } - - /** - * Utility used to transform the `auto` placement to the placement with more - * available space. - * @method - * @memberof Popper.Utils - * @argument {Object} data - The data object generated by update method - * @argument {Object} options - Modifiers configuration and options - * @returns {Object} The data object, properly modified - */ - function computeAutoPlacement(placement, refRect, popper, reference, boundariesElement) { - var padding = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : 0; - - if (placement.indexOf('auto') === -1) { - return placement; - } - - var boundaries = getBoundaries(popper, reference, padding, boundariesElement); - - var rects = { - top: { - width: boundaries.width, - height: refRect.top - boundaries.top - }, - right: { - width: boundaries.right - refRect.right, - height: boundaries.height - }, - bottom: { - width: boundaries.width, - height: boundaries.bottom - refRect.bottom - }, - left: { - width: refRect.left - boundaries.left, - height: boundaries.height - } - }; - - var sortedAreas = Object.keys(rects).map(function (key) { - return _extends({ - key: key - }, rects[key], { - area: getArea(rects[key]) - }); - }).sort(function (a, b) { - return b.area - a.area; - }); - - var filteredAreas = sortedAreas.filter(function (_ref2) { - var width = _ref2.width, - height = _ref2.height; - return width >= popper.clientWidth && height >= popper.clientHeight; - }); - - var computedPlacement = filteredAreas.length > 0 ? filteredAreas[0].key : sortedAreas[0].key; - - var variation = placement.split('-')[1]; - - return computedPlacement + (variation ? '-' + variation : ''); - } - - /** - * Get offsets to the reference element - * @method - * @memberof Popper.Utils - * @param {Object} state - * @param {Element} popper - the popper element - * @param {Element} reference - the reference element (the popper will be relative to this) - * @param {Element} fixedPosition - is in fixed position mode - * @returns {Object} An object containing the offsets which will be applied to the popper - */ - function getReferenceOffsets(state, popper, reference) { - var fixedPosition = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : null; - - var commonOffsetParent = fixedPosition ? getFixedPositionOffsetParent(popper) : findCommonOffsetParent(popper, reference); - return getOffsetRectRelativeToArbitraryNode(reference, commonOffsetParent, fixedPosition); - } - - /** - * Get the outer sizes of the given element (offset size + margins) - * @method - * @memberof Popper.Utils - * @argument {Element} element - * @returns {Object} object containing width and height properties - */ - function getOuterSizes(element) { - var window = element.ownerDocument.defaultView; - var styles = window.getComputedStyle(element); - var x = parseFloat(styles.marginTop || 0) + parseFloat(styles.marginBottom || 0); - var y = parseFloat(styles.marginLeft || 0) + parseFloat(styles.marginRight || 0); - var result = { - width: element.offsetWidth + y, - height: element.offsetHeight + x - }; - return result; - } - - /** - * Get the opposite placement of the given one - * @method - * @memberof Popper.Utils - * @argument {String} placement - * @returns {String} flipped placement - */ - function getOppositePlacement(placement) { - var hash = { left: 'right', right: 'left', bottom: 'top', top: 'bottom' }; - return placement.replace(/left|right|bottom|top/g, function (matched) { - return hash[matched]; - }); - } - - /** - * Get offsets to the popper - * @method - * @memberof Popper.Utils - * @param {Object} position - CSS position the Popper will get applied - * @param {HTMLElement} popper - the popper element - * @param {Object} referenceOffsets - the reference offsets (the popper will be relative to this) - * @param {String} placement - one of the valid placement options - * @returns {Object} popperOffsets - An object containing the offsets which will be applied to the popper - */ - function getPopperOffsets(popper, referenceOffsets, placement) { - placement = placement.split('-')[0]; - - // Get popper node sizes - var popperRect = getOuterSizes(popper); - - // Add position, width and height to our offsets object - var popperOffsets = { - width: popperRect.width, - height: popperRect.height - }; - - // depending by the popper placement we have to compute its offsets slightly differently - var isHoriz = ['right', 'left'].indexOf(placement) !== -1; - var mainSide = isHoriz ? 'top' : 'left'; - var secondarySide = isHoriz ? 'left' : 'top'; - var measurement = isHoriz ? 'height' : 'width'; - var secondaryMeasurement = !isHoriz ? 'height' : 'width'; - - popperOffsets[mainSide] = referenceOffsets[mainSide] + referenceOffsets[measurement] / 2 - popperRect[measurement] / 2; - if (placement === secondarySide) { - popperOffsets[secondarySide] = referenceOffsets[secondarySide] - popperRect[secondaryMeasurement]; - } else { - popperOffsets[secondarySide] = referenceOffsets[getOppositePlacement(secondarySide)]; - } - - return popperOffsets; - } - - /** - * Mimics the `find` method of Array - * @method - * @memberof Popper.Utils - * @argument {Array} arr - * @argument prop - * @argument value - * @returns index or -1 - */ - function find(arr, check) { - // use native find if supported - if (Array.prototype.find) { - return arr.find(check); - } - - // use `filter` to obtain the same behavior of `find` - return arr.filter(check)[0]; - } - - /** - * Return the index of the matching object - * @method - * @memberof Popper.Utils - * @argument {Array} arr - * @argument prop - * @argument value - * @returns index or -1 - */ - function findIndex(arr, prop, value) { - // use native findIndex if supported - if (Array.prototype.findIndex) { - return arr.findIndex(function (cur) { - return cur[prop] === value; - }); - } - - // use `find` + `indexOf` if `findIndex` isn't supported - var match = find(arr, function (obj) { - return obj[prop] === value; - }); - return arr.indexOf(match); - } - - /** - * Loop trough the list of modifiers and run them in order, - * each of them will then edit the data object. - * @method - * @memberof Popper.Utils - * @param {dataObject} data - * @param {Array} modifiers - * @param {String} ends - Optional modifier name used as stopper - * @returns {dataObject} - */ - function runModifiers(modifiers, data, ends) { - var modifiersToRun = ends === undefined ? modifiers : modifiers.slice(0, findIndex(modifiers, 'name', ends)); - - modifiersToRun.forEach(function (modifier) { - if (modifier['function']) { - // eslint-disable-line dot-notation - console.warn('`modifier.function` is deprecated, use `modifier.fn`!'); - } - var fn = modifier['function'] || modifier.fn; // eslint-disable-line dot-notation - if (modifier.enabled && isFunction(fn)) { - // Add properties to offsets to make them a complete clientRect object - // we do this before each modifier to make sure the previous one doesn't - // mess with these values - data.offsets.popper = getClientRect(data.offsets.popper); - data.offsets.reference = getClientRect(data.offsets.reference); - - data = fn(data, modifier); - } - }); - - return data; - } - - /** - * Updates the position of the popper, computing the new offsets and applying - * the new style.
- * Prefer `scheduleUpdate` over `update` because of performance reasons. - * @method - * @memberof Popper - */ - function update() { - // if popper is destroyed, don't perform any further update - if (this.state.isDestroyed) { - return; - } - - var data = { - instance: this, - styles: {}, - arrowStyles: {}, - attributes: {}, - flipped: false, - offsets: {} - }; - - // compute reference element offsets - data.offsets.reference = getReferenceOffsets(this.state, this.popper, this.reference, this.options.positionFixed); - - // compute auto placement, store placement inside the data object, - // modifiers will be able to edit `placement` if needed - // and refer to originalPlacement to know the original value - data.placement = computeAutoPlacement(this.options.placement, data.offsets.reference, this.popper, this.reference, this.options.modifiers.flip.boundariesElement, this.options.modifiers.flip.padding); - - // store the computed placement inside `originalPlacement` - data.originalPlacement = data.placement; - - data.positionFixed = this.options.positionFixed; - - // compute the popper offsets - data.offsets.popper = getPopperOffsets(this.popper, data.offsets.reference, data.placement); - - data.offsets.popper.position = this.options.positionFixed ? 'fixed' : 'absolute'; - - // run the modifiers - data = runModifiers(this.modifiers, data); - - // the first `update` will call `onCreate` callback - // the other ones will call `onUpdate` callback - if (!this.state.isCreated) { - this.state.isCreated = true; - this.options.onCreate(data); - } else { - this.options.onUpdate(data); - } - } - - /** - * Helper used to know if the given modifier is enabled. - * @method - * @memberof Popper.Utils - * @returns {Boolean} - */ - function isModifierEnabled(modifiers, modifierName) { - return modifiers.some(function (_ref) { - var name = _ref.name, - enabled = _ref.enabled; - return enabled && name === modifierName; - }); - } - - /** - * Get the prefixed supported property name - * @method - * @memberof Popper.Utils - * @argument {String} property (camelCase) - * @returns {String} prefixed property (camelCase or PascalCase, depending on the vendor prefix) - */ - function getSupportedPropertyName(property) { - var prefixes = [false, 'ms', 'Webkit', 'Moz', 'O']; - var upperProp = property.charAt(0).toUpperCase() + property.slice(1); - - for (var i = 0; i < prefixes.length; i++) { - var prefix = prefixes[i]; - var toCheck = prefix ? '' + prefix + upperProp : property; - if (typeof document.body.style[toCheck] !== 'undefined') { - return toCheck; - } - } - return null; - } - - /** - * Destroys the popper. - * @method - * @memberof Popper - */ - function destroy() { - this.state.isDestroyed = true; - - // touch DOM only if `applyStyle` modifier is enabled - if (isModifierEnabled(this.modifiers, 'applyStyle')) { - this.popper.removeAttribute('x-placement'); - this.popper.style.position = ''; - this.popper.style.top = ''; - this.popper.style.left = ''; - this.popper.style.right = ''; - this.popper.style.bottom = ''; - this.popper.style.willChange = ''; - this.popper.style[getSupportedPropertyName('transform')] = ''; - } - - this.disableEventListeners(); - - // remove the popper if user explicity asked for the deletion on destroy - // do not use `remove` because IE11 doesn't support it - if (this.options.removeOnDestroy) { - this.popper.parentNode.removeChild(this.popper); - } - return this; - } - - /** - * Get the window associated with the element - * @argument {Element} element - * @returns {Window} - */ - function getWindow(element) { - var ownerDocument = element.ownerDocument; - return ownerDocument ? ownerDocument.defaultView : window; - } - - function attachToScrollParents(scrollParent, event, callback, scrollParents) { - var isBody = scrollParent.nodeName === 'BODY'; - var target = isBody ? scrollParent.ownerDocument.defaultView : scrollParent; - target.addEventListener(event, callback, { passive: true }); - - if (!isBody) { - attachToScrollParents(getScrollParent(target.parentNode), event, callback, scrollParents); - } - scrollParents.push(target); - } - - /** - * Setup needed event listeners used to update the popper position - * @method - * @memberof Popper.Utils - * @private - */ - function setupEventListeners(reference, options, state, updateBound) { - // Resize event listener on window - state.updateBound = updateBound; - getWindow(reference).addEventListener('resize', state.updateBound, { passive: true }); - - // Scroll event listener on scroll parents - var scrollElement = getScrollParent(reference); - attachToScrollParents(scrollElement, 'scroll', state.updateBound, state.scrollParents); - state.scrollElement = scrollElement; - state.eventsEnabled = true; - - return state; - } - - /** - * It will add resize/scroll events and start recalculating - * position of the popper element when they are triggered. - * @method - * @memberof Popper - */ - function enableEventListeners() { - if (!this.state.eventsEnabled) { - this.state = setupEventListeners(this.reference, this.options, this.state, this.scheduleUpdate); - } - } - - /** - * Remove event listeners used to update the popper position - * @method - * @memberof Popper.Utils - * @private - */ - function removeEventListeners(reference, state) { - // Remove resize event listener on window - getWindow(reference).removeEventListener('resize', state.updateBound); - - // Remove scroll event listener on scroll parents - state.scrollParents.forEach(function (target) { - target.removeEventListener('scroll', state.updateBound); - }); - - // Reset state - state.updateBound = null; - state.scrollParents = []; - state.scrollElement = null; - state.eventsEnabled = false; - return state; - } - - /** - * It will remove resize/scroll events and won't recalculate popper position - * when they are triggered. It also won't trigger `onUpdate` callback anymore, - * unless you call `update` method manually. - * @method - * @memberof Popper - */ - function disableEventListeners() { - if (this.state.eventsEnabled) { - cancelAnimationFrame(this.scheduleUpdate); - this.state = removeEventListeners(this.reference, this.state); - } - } - - /** - * Tells if a given input is a number - * @method - * @memberof Popper.Utils - * @param {*} input to check - * @return {Boolean} - */ - function isNumeric(n) { - return n !== '' && !isNaN(parseFloat(n)) && isFinite(n); - } - - /** - * Set the style to the given popper - * @method - * @memberof Popper.Utils - * @argument {Element} element - Element to apply the style to - * @argument {Object} styles - * Object with a list of properties and values which will be applied to the element - */ - function setStyles(element, styles) { - Object.keys(styles).forEach(function (prop) { - var unit = ''; - // add unit if the value is numeric and is one of the following - if (['width', 'height', 'top', 'right', 'bottom', 'left'].indexOf(prop) !== -1 && isNumeric(styles[prop])) { - unit = 'px'; - } - element.style[prop] = styles[prop] + unit; - }); - } - - /** - * Set the attributes to the given popper - * @method - * @memberof Popper.Utils - * @argument {Element} element - Element to apply the attributes to - * @argument {Object} styles - * Object with a list of properties and values which will be applied to the element - */ - function setAttributes(element, attributes) { - Object.keys(attributes).forEach(function (prop) { - var value = attributes[prop]; - if (value !== false) { - element.setAttribute(prop, attributes[prop]); - } else { - element.removeAttribute(prop); - } - }); - } - - /** - * @function - * @memberof Modifiers - * @argument {Object} data - The data object generated by `update` method - * @argument {Object} data.styles - List of style properties - values to apply to popper element - * @argument {Object} data.attributes - List of attribute properties - values to apply to popper element - * @argument {Object} options - Modifiers configuration and options - * @returns {Object} The same data object - */ - function applyStyle(data) { - // any property present in `data.styles` will be applied to the popper, - // in this way we can make the 3rd party modifiers add custom styles to it - // Be aware, modifiers could override the properties defined in the previous - // lines of this modifier! - setStyles(data.instance.popper, data.styles); - - // any property present in `data.attributes` will be applied to the popper, - // they will be set as HTML attributes of the element - setAttributes(data.instance.popper, data.attributes); - - // if arrowElement is defined and arrowStyles has some properties - if (data.arrowElement && Object.keys(data.arrowStyles).length) { - setStyles(data.arrowElement, data.arrowStyles); - } - - return data; - } - - /** - * Set the x-placement attribute before everything else because it could be used - * to add margins to the popper margins needs to be calculated to get the - * correct popper offsets. - * @method - * @memberof Popper.modifiers - * @param {HTMLElement} reference - The reference element used to position the popper - * @param {HTMLElement} popper - The HTML element used as popper - * @param {Object} options - Popper.js options - */ - function applyStyleOnLoad(reference, popper, options, modifierOptions, state) { - // compute reference element offsets - var referenceOffsets = getReferenceOffsets(state, popper, reference, options.positionFixed); - - // compute auto placement, store placement inside the data object, - // modifiers will be able to edit `placement` if needed - // and refer to originalPlacement to know the original value - var placement = computeAutoPlacement(options.placement, referenceOffsets, popper, reference, options.modifiers.flip.boundariesElement, options.modifiers.flip.padding); - - popper.setAttribute('x-placement', placement); - - // Apply `position` to popper before anything else because - // without the position applied we can't guarantee correct computations - setStyles(popper, { position: options.positionFixed ? 'fixed' : 'absolute' }); - - return options; - } - - /** - * @function - * @memberof Popper.Utils - * @argument {Object} data - The data object generated by `update` method - * @argument {Boolean} shouldRound - If the offsets should be rounded at all - * @returns {Object} The popper's position offsets rounded - * - * The tale of pixel-perfect positioning. It's still not 100% perfect, but as - * good as it can be within reason. - * Discussion here: https://github.com/FezVrasta/popper.js/pull/715 - * - * Low DPI screens cause a popper to be blurry if not using full pixels (Safari - * as well on High DPI screens). - * - * Firefox prefers no rounding for positioning and does not have blurriness on - * high DPI screens. - * - * Only horizontal placement and left/right values need to be considered. - */ - function getRoundedOffsets(data, shouldRound) { - var _data$offsets = data.offsets, - popper = _data$offsets.popper, - reference = _data$offsets.reference; - var round = Math.round, - floor = Math.floor; - - var noRound = function noRound(v) { - return v; - }; - - var referenceWidth = round(reference.width); - var popperWidth = round(popper.width); - - var isVertical = ['left', 'right'].indexOf(data.placement) !== -1; - var isVariation = data.placement.indexOf('-') !== -1; - var sameWidthParity = referenceWidth % 2 === popperWidth % 2; - var bothOddWidth = referenceWidth % 2 === 1 && popperWidth % 2 === 1; - - var horizontalToInteger = !shouldRound ? noRound : isVertical || isVariation || sameWidthParity ? round : floor; - var verticalToInteger = !shouldRound ? noRound : round; - - return { - left: horizontalToInteger(bothOddWidth && !isVariation && shouldRound ? popper.left - 1 : popper.left), - top: verticalToInteger(popper.top), - bottom: verticalToInteger(popper.bottom), - right: horizontalToInteger(popper.right) - }; - } - - var isFirefox = isBrowser && /Firefox/i.test(navigator.userAgent); - - /** - * @function - * @memberof Modifiers - * @argument {Object} data - The data object generated by `update` method - * @argument {Object} options - Modifiers configuration and options - * @returns {Object} The data object, properly modified - */ - function computeStyle(data, options) { - var x = options.x, - y = options.y; - var popper = data.offsets.popper; - - // Remove this legacy support in Popper.js v2 - - var legacyGpuAccelerationOption = find(data.instance.modifiers, function (modifier) { - return modifier.name === 'applyStyle'; - }).gpuAcceleration; - if (legacyGpuAccelerationOption !== undefined) { - console.warn('WARNING: `gpuAcceleration` option moved to `computeStyle` modifier and will not be supported in future versions of Popper.js!'); - } - var gpuAcceleration = legacyGpuAccelerationOption !== undefined ? legacyGpuAccelerationOption : options.gpuAcceleration; - - var offsetParent = getOffsetParent(data.instance.popper); - var offsetParentRect = getBoundingClientRect(offsetParent); - - // Styles - var styles = { - position: popper.position - }; - - var offsets = getRoundedOffsets(data, window.devicePixelRatio < 2 || !isFirefox); - - var sideA = x === 'bottom' ? 'top' : 'bottom'; - var sideB = y === 'right' ? 'left' : 'right'; - - // if gpuAcceleration is set to `true` and transform is supported, - // we use `translate3d` to apply the position to the popper we - // automatically use the supported prefixed version if needed - var prefixedProperty = getSupportedPropertyName('transform'); - - // now, let's make a step back and look at this code closely (wtf?) - // If the content of the popper grows once it's been positioned, it - // may happen that the popper gets misplaced because of the new content - // overflowing its reference element - // To avoid this problem, we provide two options (x and y), which allow - // the consumer to define the offset origin. - // If we position a popper on top of a reference element, we can set - // `x` to `top` to make the popper grow towards its top instead of - // its bottom. - var left = void 0, - top = void 0; - if (sideA === 'bottom') { - // when offsetParent is the positioning is relative to the bottom of the screen (excluding the scrollbar) - // and not the bottom of the html element - if (offsetParent.nodeName === 'HTML') { - top = -offsetParent.clientHeight + offsets.bottom; - } else { - top = -offsetParentRect.height + offsets.bottom; - } - } else { - top = offsets.top; - } - if (sideB === 'right') { - if (offsetParent.nodeName === 'HTML') { - left = -offsetParent.clientWidth + offsets.right; - } else { - left = -offsetParentRect.width + offsets.right; - } - } else { - left = offsets.left; - } - if (gpuAcceleration && prefixedProperty) { - styles[prefixedProperty] = 'translate3d(' + left + 'px, ' + top + 'px, 0)'; - styles[sideA] = 0; - styles[sideB] = 0; - styles.willChange = 'transform'; - } else { - // othwerise, we use the standard `top`, `left`, `bottom` and `right` properties - var invertTop = sideA === 'bottom' ? -1 : 1; - var invertLeft = sideB === 'right' ? -1 : 1; - styles[sideA] = top * invertTop; - styles[sideB] = left * invertLeft; - styles.willChange = sideA + ', ' + sideB; - } - - // Attributes - var attributes = { - 'x-placement': data.placement - }; - - // Update `data` attributes, styles and arrowStyles - data.attributes = _extends({}, attributes, data.attributes); - data.styles = _extends({}, styles, data.styles); - data.arrowStyles = _extends({}, data.offsets.arrow, data.arrowStyles); - - return data; - } - - /** - * Helper used to know if the given modifier depends from another one.
- * It checks if the needed modifier is listed and enabled. - * @method - * @memberof Popper.Utils - * @param {Array} modifiers - list of modifiers - * @param {String} requestingName - name of requesting modifier - * @param {String} requestedName - name of requested modifier - * @returns {Boolean} - */ - function isModifierRequired(modifiers, requestingName, requestedName) { - var requesting = find(modifiers, function (_ref) { - var name = _ref.name; - return name === requestingName; - }); - - var isRequired = !!requesting && modifiers.some(function (modifier) { - return modifier.name === requestedName && modifier.enabled && modifier.order < requesting.order; - }); - - if (!isRequired) { - var _requesting = '`' + requestingName + '`'; - var requested = '`' + requestedName + '`'; - console.warn(requested + ' modifier is required by ' + _requesting + ' modifier in order to work, be sure to include it before ' + _requesting + '!'); - } - return isRequired; - } - - /** - * @function - * @memberof Modifiers - * @argument {Object} data - The data object generated by update method - * @argument {Object} options - Modifiers configuration and options - * @returns {Object} The data object, properly modified - */ - function arrow(data, options) { - var _data$offsets$arrow; - - // arrow depends on keepTogether in order to work - if (!isModifierRequired(data.instance.modifiers, 'arrow', 'keepTogether')) { - return data; - } - - var arrowElement = options.element; - - // if arrowElement is a string, suppose it's a CSS selector - if (typeof arrowElement === 'string') { - arrowElement = data.instance.popper.querySelector(arrowElement); - - // if arrowElement is not found, don't run the modifier - if (!arrowElement) { - return data; - } - } else { - // if the arrowElement isn't a query selector we must check that the - // provided DOM node is child of its popper node - if (!data.instance.popper.contains(arrowElement)) { - console.warn('WARNING: `arrow.element` must be child of its popper element!'); - return data; - } - } - - var placement = data.placement.split('-')[0]; - var _data$offsets = data.offsets, - popper = _data$offsets.popper, - reference = _data$offsets.reference; - - var isVertical = ['left', 'right'].indexOf(placement) !== -1; - - var len = isVertical ? 'height' : 'width'; - var sideCapitalized = isVertical ? 'Top' : 'Left'; - var side = sideCapitalized.toLowerCase(); - var altSide = isVertical ? 'left' : 'top'; - var opSide = isVertical ? 'bottom' : 'right'; - var arrowElementSize = getOuterSizes(arrowElement)[len]; - - // - // extends keepTogether behavior making sure the popper and its - // reference have enough pixels in conjunction - // - - // top/left side - if (reference[opSide] - arrowElementSize < popper[side]) { - data.offsets.popper[side] -= popper[side] - (reference[opSide] - arrowElementSize); - } - // bottom/right side - if (reference[side] + arrowElementSize > popper[opSide]) { - data.offsets.popper[side] += reference[side] + arrowElementSize - popper[opSide]; - } - data.offsets.popper = getClientRect(data.offsets.popper); - - // compute center of the popper - var center = reference[side] + reference[len] / 2 - arrowElementSize / 2; - - // Compute the sideValue using the updated popper offsets - // take popper margin in account because we don't have this info available - var css = getStyleComputedProperty(data.instance.popper); - var popperMarginSide = parseFloat(css['margin' + sideCapitalized], 10); - var popperBorderSide = parseFloat(css['border' + sideCapitalized + 'Width'], 10); - var sideValue = center - data.offsets.popper[side] - popperMarginSide - popperBorderSide; - - // prevent arrowElement from being placed not contiguously to its popper - sideValue = Math.max(Math.min(popper[len] - arrowElementSize, sideValue), 0); - - data.arrowElement = arrowElement; - data.offsets.arrow = (_data$offsets$arrow = {}, defineProperty(_data$offsets$arrow, side, Math.round(sideValue)), defineProperty(_data$offsets$arrow, altSide, ''), _data$offsets$arrow); - - return data; - } - - /** - * Get the opposite placement variation of the given one - * @method - * @memberof Popper.Utils - * @argument {String} placement variation - * @returns {String} flipped placement variation - */ - function getOppositeVariation(variation) { - if (variation === 'end') { - return 'start'; - } else if (variation === 'start') { - return 'end'; - } - return variation; - } - - /** - * List of accepted placements to use as values of the `placement` option.
- * Valid placements are: - * - `auto` - * - `top` - * - `right` - * - `bottom` - * - `left` - * - * Each placement can have a variation from this list: - * - `-start` - * - `-end` - * - * Variations are interpreted easily if you think of them as the left to right - * written languages. Horizontally (`top` and `bottom`), `start` is left and `end` - * is right.
- * Vertically (`left` and `right`), `start` is top and `end` is bottom. - * - * Some valid examples are: - * - `top-end` (on top of reference, right aligned) - * - `right-start` (on right of reference, top aligned) - * - `bottom` (on bottom, centered) - * - `auto-end` (on the side with more space available, alignment depends by placement) - * - * @static - * @type {Array} - * @enum {String} - * @readonly - * @method placements - * @memberof Popper - */ - var placements = ['auto-start', 'auto', 'auto-end', 'top-start', 'top', 'top-end', 'right-start', 'right', 'right-end', 'bottom-end', 'bottom', 'bottom-start', 'left-end', 'left', 'left-start']; - - // Get rid of `auto` `auto-start` and `auto-end` - var validPlacements = placements.slice(3); - - /** - * Given an initial placement, returns all the subsequent placements - * clockwise (or counter-clockwise). - * - * @method - * @memberof Popper.Utils - * @argument {String} placement - A valid placement (it accepts variations) - * @argument {Boolean} counter - Set to true to walk the placements counterclockwise - * @returns {Array} placements including their variations - */ - function clockwise(placement) { - var counter = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false; - - var index = validPlacements.indexOf(placement); - var arr = validPlacements.slice(index + 1).concat(validPlacements.slice(0, index)); - return counter ? arr.reverse() : arr; - } - - var BEHAVIORS = { - FLIP: 'flip', - CLOCKWISE: 'clockwise', - COUNTERCLOCKWISE: 'counterclockwise' - }; - - /** - * @function - * @memberof Modifiers - * @argument {Object} data - The data object generated by update method - * @argument {Object} options - Modifiers configuration and options - * @returns {Object} The data object, properly modified - */ - function flip(data, options) { - // if `inner` modifier is enabled, we can't use the `flip` modifier - if (isModifierEnabled(data.instance.modifiers, 'inner')) { - return data; - } - - if (data.flipped && data.placement === data.originalPlacement) { - // seems like flip is trying to loop, probably there's not enough space on any of the flippable sides - return data; - } - - var boundaries = getBoundaries(data.instance.popper, data.instance.reference, options.padding, options.boundariesElement, data.positionFixed); - - var placement = data.placement.split('-')[0]; - var placementOpposite = getOppositePlacement(placement); - var variation = data.placement.split('-')[1] || ''; - - var flipOrder = []; - - switch (options.behavior) { - case BEHAVIORS.FLIP: - flipOrder = [placement, placementOpposite]; - break; - case BEHAVIORS.CLOCKWISE: - flipOrder = clockwise(placement); - break; - case BEHAVIORS.COUNTERCLOCKWISE: - flipOrder = clockwise(placement, true); - break; - default: - flipOrder = options.behavior; - } - - flipOrder.forEach(function (step, index) { - if (placement !== step || flipOrder.length === index + 1) { - return data; - } - - placement = data.placement.split('-')[0]; - placementOpposite = getOppositePlacement(placement); - - var popperOffsets = data.offsets.popper; - var refOffsets = data.offsets.reference; - - // using floor because the reference offsets may contain decimals we are not going to consider here - var floor = Math.floor; - var overlapsRef = placement === 'left' && floor(popperOffsets.right) > floor(refOffsets.left) || placement === 'right' && floor(popperOffsets.left) < floor(refOffsets.right) || placement === 'top' && floor(popperOffsets.bottom) > floor(refOffsets.top) || placement === 'bottom' && floor(popperOffsets.top) < floor(refOffsets.bottom); - - var overflowsLeft = floor(popperOffsets.left) < floor(boundaries.left); - var overflowsRight = floor(popperOffsets.right) > floor(boundaries.right); - var overflowsTop = floor(popperOffsets.top) < floor(boundaries.top); - var overflowsBottom = floor(popperOffsets.bottom) > floor(boundaries.bottom); - - var overflowsBoundaries = placement === 'left' && overflowsLeft || placement === 'right' && overflowsRight || placement === 'top' && overflowsTop || placement === 'bottom' && overflowsBottom; - - // flip the variation if required - var isVertical = ['top', 'bottom'].indexOf(placement) !== -1; - var flippedVariation = !!options.flipVariations && (isVertical && variation === 'start' && overflowsLeft || isVertical && variation === 'end' && overflowsRight || !isVertical && variation === 'start' && overflowsTop || !isVertical && variation === 'end' && overflowsBottom); - - if (overlapsRef || overflowsBoundaries || flippedVariation) { - // this boolean to detect any flip loop - data.flipped = true; - - if (overlapsRef || overflowsBoundaries) { - placement = flipOrder[index + 1]; - } - - if (flippedVariation) { - variation = getOppositeVariation(variation); - } - - data.placement = placement + (variation ? '-' + variation : ''); - - // this object contains `position`, we want to preserve it along with - // any additional property we may add in the future - data.offsets.popper = _extends({}, data.offsets.popper, getPopperOffsets(data.instance.popper, data.offsets.reference, data.placement)); - - data = runModifiers(data.instance.modifiers, data, 'flip'); - } - }); - return data; - } - - /** - * @function - * @memberof Modifiers - * @argument {Object} data - The data object generated by update method - * @argument {Object} options - Modifiers configuration and options - * @returns {Object} The data object, properly modified - */ - function keepTogether(data) { - var _data$offsets = data.offsets, - popper = _data$offsets.popper, - reference = _data$offsets.reference; - - var placement = data.placement.split('-')[0]; - var floor = Math.floor; - var isVertical = ['top', 'bottom'].indexOf(placement) !== -1; - var side = isVertical ? 'right' : 'bottom'; - var opSide = isVertical ? 'left' : 'top'; - var measurement = isVertical ? 'width' : 'height'; - - if (popper[side] < floor(reference[opSide])) { - data.offsets.popper[opSide] = floor(reference[opSide]) - popper[measurement]; - } - if (popper[opSide] > floor(reference[side])) { - data.offsets.popper[opSide] = floor(reference[side]); - } - - return data; - } - - /** - * Converts a string containing value + unit into a px value number - * @function - * @memberof {modifiers~offset} - * @private - * @argument {String} str - Value + unit string - * @argument {String} measurement - `height` or `width` - * @argument {Object} popperOffsets - * @argument {Object} referenceOffsets - * @returns {Number|String} - * Value in pixels, or original string if no values were extracted - */ - function toValue(str, measurement, popperOffsets, referenceOffsets) { - // separate value from unit - var split = str.match(/((?:\-|\+)?\d*\.?\d*)(.*)/); - var value = +split[1]; - var unit = split[2]; - - // If it's not a number it's an operator, I guess - if (!value) { - return str; - } - - if (unit.indexOf('%') === 0) { - var element = void 0; - switch (unit) { - case '%p': - element = popperOffsets; - break; - case '%': - case '%r': - default: - element = referenceOffsets; - } - - var rect = getClientRect(element); - return rect[measurement] / 100 * value; - } else if (unit === 'vh' || unit === 'vw') { - // if is a vh or vw, we calculate the size based on the viewport - var size = void 0; - if (unit === 'vh') { - size = Math.max(document.documentElement.clientHeight, window.innerHeight || 0); - } else { - size = Math.max(document.documentElement.clientWidth, window.innerWidth || 0); - } - return size / 100 * value; - } else { - // if is an explicit pixel unit, we get rid of the unit and keep the value - // if is an implicit unit, it's px, and we return just the value - return value; - } - } - - /** - * Parse an `offset` string to extrapolate `x` and `y` numeric offsets. - * @function - * @memberof {modifiers~offset} - * @private - * @argument {String} offset - * @argument {Object} popperOffsets - * @argument {Object} referenceOffsets - * @argument {String} basePlacement - * @returns {Array} a two cells array with x and y offsets in numbers - */ - function parseOffset(offset, popperOffsets, referenceOffsets, basePlacement) { - var offsets = [0, 0]; - - // Use height if placement is left or right and index is 0 otherwise use width - // in this way the first offset will use an axis and the second one - // will use the other one - var useHeight = ['right', 'left'].indexOf(basePlacement) !== -1; - - // Split the offset string to obtain a list of values and operands - // The regex addresses values with the plus or minus sign in front (+10, -20, etc) - var fragments = offset.split(/(\+|\-)/).map(function (frag) { - return frag.trim(); - }); - - // Detect if the offset string contains a pair of values or a single one - // they could be separated by comma or space - var divider = fragments.indexOf(find(fragments, function (frag) { - return frag.search(/,|\s/) !== -1; - })); - - if (fragments[divider] && fragments[divider].indexOf(',') === -1) { - console.warn('Offsets separated by white space(s) are deprecated, use a comma (,) instead.'); - } - - // If divider is found, we divide the list of values and operands to divide - // them by ofset X and Y. - var splitRegex = /\s*,\s*|\s+/; - var ops = divider !== -1 ? [fragments.slice(0, divider).concat([fragments[divider].split(splitRegex)[0]]), [fragments[divider].split(splitRegex)[1]].concat(fragments.slice(divider + 1))] : [fragments]; - - // Convert the values with units to absolute pixels to allow our computations - ops = ops.map(function (op, index) { - // Most of the units rely on the orientation of the popper - var measurement = (index === 1 ? !useHeight : useHeight) ? 'height' : 'width'; - var mergeWithPrevious = false; - return op - // This aggregates any `+` or `-` sign that aren't considered operators - // e.g.: 10 + +5 => [10, +, +5] - .reduce(function (a, b) { - if (a[a.length - 1] === '' && ['+', '-'].indexOf(b) !== -1) { - a[a.length - 1] = b; - mergeWithPrevious = true; - return a; - } else if (mergeWithPrevious) { - a[a.length - 1] += b; - mergeWithPrevious = false; - return a; - } else { - return a.concat(b); - } - }, []) - // Here we convert the string values into number values (in px) - .map(function (str) { - return toValue(str, measurement, popperOffsets, referenceOffsets); - }); - }); - - // Loop trough the offsets arrays and execute the operations - ops.forEach(function (op, index) { - op.forEach(function (frag, index2) { - if (isNumeric(frag)) { - offsets[index] += frag * (op[index2 - 1] === '-' ? -1 : 1); - } - }); - }); - return offsets; - } - - /** - * @function - * @memberof Modifiers - * @argument {Object} data - The data object generated by update method - * @argument {Object} options - Modifiers configuration and options - * @argument {Number|String} options.offset=0 - * The offset value as described in the modifier description - * @returns {Object} The data object, properly modified - */ - function offset(data, _ref) { - var offset = _ref.offset; - var placement = data.placement, - _data$offsets = data.offsets, - popper = _data$offsets.popper, - reference = _data$offsets.reference; - - var basePlacement = placement.split('-')[0]; - - var offsets = void 0; - if (isNumeric(+offset)) { - offsets = [+offset, 0]; - } else { - offsets = parseOffset(offset, popper, reference, basePlacement); - } - - if (basePlacement === 'left') { - popper.top += offsets[0]; - popper.left -= offsets[1]; - } else if (basePlacement === 'right') { - popper.top += offsets[0]; - popper.left += offsets[1]; - } else if (basePlacement === 'top') { - popper.left += offsets[0]; - popper.top -= offsets[1]; - } else if (basePlacement === 'bottom') { - popper.left += offsets[0]; - popper.top += offsets[1]; - } - - data.popper = popper; - return data; - } - - /** - * @function - * @memberof Modifiers - * @argument {Object} data - The data object generated by `update` method - * @argument {Object} options - Modifiers configuration and options - * @returns {Object} The data object, properly modified - */ - function preventOverflow(data, options) { - var boundariesElement = options.boundariesElement || getOffsetParent(data.instance.popper); - - // If offsetParent is the reference element, we really want to - // go one step up and use the next offsetParent as reference to - // avoid to make this modifier completely useless and look like broken - if (data.instance.reference === boundariesElement) { - boundariesElement = getOffsetParent(boundariesElement); - } - - // NOTE: DOM access here - // resets the popper's position so that the document size can be calculated excluding - // the size of the popper element itself - var transformProp = getSupportedPropertyName('transform'); - var popperStyles = data.instance.popper.style; // assignment to help minification - var top = popperStyles.top, - left = popperStyles.left, - transform = popperStyles[transformProp]; - - popperStyles.top = ''; - popperStyles.left = ''; - popperStyles[transformProp] = ''; - - var boundaries = getBoundaries(data.instance.popper, data.instance.reference, options.padding, boundariesElement, data.positionFixed); - - // NOTE: DOM access here - // restores the original style properties after the offsets have been computed - popperStyles.top = top; - popperStyles.left = left; - popperStyles[transformProp] = transform; - - options.boundaries = boundaries; - - var order = options.priority; - var popper = data.offsets.popper; - - var check = { - primary: function primary(placement) { - var value = popper[placement]; - if (popper[placement] < boundaries[placement] && !options.escapeWithReference) { - value = Math.max(popper[placement], boundaries[placement]); - } - return defineProperty({}, placement, value); - }, - secondary: function secondary(placement) { - var mainSide = placement === 'right' ? 'left' : 'top'; - var value = popper[mainSide]; - if (popper[placement] > boundaries[placement] && !options.escapeWithReference) { - value = Math.min(popper[mainSide], boundaries[placement] - (placement === 'right' ? popper.width : popper.height)); - } - return defineProperty({}, mainSide, value); - } - }; - - order.forEach(function (placement) { - var side = ['left', 'top'].indexOf(placement) !== -1 ? 'primary' : 'secondary'; - popper = _extends({}, popper, check[side](placement)); - }); - - data.offsets.popper = popper; - - return data; - } - - /** - * @function - * @memberof Modifiers - * @argument {Object} data - The data object generated by `update` method - * @argument {Object} options - Modifiers configuration and options - * @returns {Object} The data object, properly modified - */ - function shift(data) { - var placement = data.placement; - var basePlacement = placement.split('-')[0]; - var shiftvariation = placement.split('-')[1]; - - // if shift shiftvariation is specified, run the modifier - if (shiftvariation) { - var _data$offsets = data.offsets, - reference = _data$offsets.reference, - popper = _data$offsets.popper; - - var isVertical = ['bottom', 'top'].indexOf(basePlacement) !== -1; - var side = isVertical ? 'left' : 'top'; - var measurement = isVertical ? 'width' : 'height'; - - var shiftOffsets = { - start: defineProperty({}, side, reference[side]), - end: defineProperty({}, side, reference[side] + reference[measurement] - popper[measurement]) - }; - - data.offsets.popper = _extends({}, popper, shiftOffsets[shiftvariation]); - } - - return data; - } - - /** - * @function - * @memberof Modifiers - * @argument {Object} data - The data object generated by update method - * @argument {Object} options - Modifiers configuration and options - * @returns {Object} The data object, properly modified - */ - function hide(data) { - if (!isModifierRequired(data.instance.modifiers, 'hide', 'preventOverflow')) { - return data; - } - - var refRect = data.offsets.reference; - var bound = find(data.instance.modifiers, function (modifier) { - return modifier.name === 'preventOverflow'; - }).boundaries; - - if (refRect.bottom < bound.top || refRect.left > bound.right || refRect.top > bound.bottom || refRect.right < bound.left) { - // Avoid unnecessary DOM access if visibility hasn't changed - if (data.hide === true) { - return data; - } - - data.hide = true; - data.attributes['x-out-of-boundaries'] = ''; - } else { - // Avoid unnecessary DOM access if visibility hasn't changed - if (data.hide === false) { - return data; - } - - data.hide = false; - data.attributes['x-out-of-boundaries'] = false; - } - - return data; - } - - /** - * @function - * @memberof Modifiers - * @argument {Object} data - The data object generated by `update` method - * @argument {Object} options - Modifiers configuration and options - * @returns {Object} The data object, properly modified - */ - function inner(data) { - var placement = data.placement; - var basePlacement = placement.split('-')[0]; - var _data$offsets = data.offsets, - popper = _data$offsets.popper, - reference = _data$offsets.reference; - - var isHoriz = ['left', 'right'].indexOf(basePlacement) !== -1; - - var subtractLength = ['top', 'left'].indexOf(basePlacement) === -1; - - popper[isHoriz ? 'left' : 'top'] = reference[basePlacement] - (subtractLength ? popper[isHoriz ? 'width' : 'height'] : 0); - - data.placement = getOppositePlacement(placement); - data.offsets.popper = getClientRect(popper); - - return data; - } - - /** - * Modifier function, each modifier can have a function of this type assigned - * to its `fn` property.
- * These functions will be called on each update, this means that you must - * make sure they are performant enough to avoid performance bottlenecks. - * - * @function ModifierFn - * @argument {dataObject} data - The data object generated by `update` method - * @argument {Object} options - Modifiers configuration and options - * @returns {dataObject} The data object, properly modified - */ - - /** - * Modifiers are plugins used to alter the behavior of your poppers.
- * Popper.js uses a set of 9 modifiers to provide all the basic functionalities - * needed by the library. - * - * Usually you don't want to override the `order`, `fn` and `onLoad` props. - * All the other properties are configurations that could be tweaked. - * @namespace modifiers - */ - var modifiers = { - /** - * Modifier used to shift the popper on the start or end of its reference - * element.
- * It will read the variation of the `placement` property.
- * It can be one either `-end` or `-start`. - * @memberof modifiers - * @inner - */ - shift: { - /** @prop {number} order=100 - Index used to define the order of execution */ - order: 100, - /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */ - enabled: true, - /** @prop {ModifierFn} */ - fn: shift - }, - - /** - * The `offset` modifier can shift your popper on both its axis. - * - * It accepts the following units: - * - `px` or unit-less, interpreted as pixels - * - `%` or `%r`, percentage relative to the length of the reference element - * - `%p`, percentage relative to the length of the popper element - * - `vw`, CSS viewport width unit - * - `vh`, CSS viewport height unit - * - * For length is intended the main axis relative to the placement of the popper.
- * This means that if the placement is `top` or `bottom`, the length will be the - * `width`. In case of `left` or `right`, it will be the `height`. - * - * You can provide a single value (as `Number` or `String`), or a pair of values - * as `String` divided by a comma or one (or more) white spaces.
- * The latter is a deprecated method because it leads to confusion and will be - * removed in v2.
- * Additionally, it accepts additions and subtractions between different units. - * Note that multiplications and divisions aren't supported. - * - * Valid examples are: - * ``` - * 10 - * '10%' - * '10, 10' - * '10%, 10' - * '10 + 10%' - * '10 - 5vh + 3%' - * '-10px + 5vh, 5px - 6%' - * ``` - * > **NB**: If you desire to apply offsets to your poppers in a way that may make them overlap - * > with their reference element, unfortunately, you will have to disable the `flip` modifier. - * > You can read more on this at this [issue](https://github.com/FezVrasta/popper.js/issues/373). - * - * @memberof modifiers - * @inner - */ - offset: { - /** @prop {number} order=200 - Index used to define the order of execution */ - order: 200, - /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */ - enabled: true, - /** @prop {ModifierFn} */ - fn: offset, - /** @prop {Number|String} offset=0 - * The offset value as described in the modifier description - */ - offset: 0 - }, - - /** - * Modifier used to prevent the popper from being positioned outside the boundary. - * - * A scenario exists where the reference itself is not within the boundaries.
- * We can say it has "escaped the boundaries" — or just "escaped".
- * In this case we need to decide whether the popper should either: - * - * - detach from the reference and remain "trapped" in the boundaries, or - * - if it should ignore the boundary and "escape with its reference" - * - * When `escapeWithReference` is set to`true` and reference is completely - * outside its boundaries, the popper will overflow (or completely leave) - * the boundaries in order to remain attached to the edge of the reference. - * - * @memberof modifiers - * @inner - */ - preventOverflow: { - /** @prop {number} order=300 - Index used to define the order of execution */ - order: 300, - /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */ - enabled: true, - /** @prop {ModifierFn} */ - fn: preventOverflow, - /** - * @prop {Array} [priority=['left','right','top','bottom']] - * Popper will try to prevent overflow following these priorities by default, - * then, it could overflow on the left and on top of the `boundariesElement` - */ - priority: ['left', 'right', 'top', 'bottom'], - /** - * @prop {number} padding=5 - * Amount of pixel used to define a minimum distance between the boundaries - * and the popper. This makes sure the popper always has a little padding - * between the edges of its container - */ - padding: 5, - /** - * @prop {String|HTMLElement} boundariesElement='scrollParent' - * Boundaries used by the modifier. Can be `scrollParent`, `window`, - * `viewport` or any DOM element. - */ - boundariesElement: 'scrollParent' - }, - - /** - * Modifier used to make sure the reference and its popper stay near each other - * without leaving any gap between the two. Especially useful when the arrow is - * enabled and you want to ensure that it points to its reference element. - * It cares only about the first axis. You can still have poppers with margin - * between the popper and its reference element. - * @memberof modifiers - * @inner - */ - keepTogether: { - /** @prop {number} order=400 - Index used to define the order of execution */ - order: 400, - /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */ - enabled: true, - /** @prop {ModifierFn} */ - fn: keepTogether - }, - - /** - * This modifier is used to move the `arrowElement` of the popper to make - * sure it is positioned between the reference element and its popper element. - * It will read the outer size of the `arrowElement` node to detect how many - * pixels of conjunction are needed. - * - * It has no effect if no `arrowElement` is provided. - * @memberof modifiers - * @inner - */ - arrow: { - /** @prop {number} order=500 - Index used to define the order of execution */ - order: 500, - /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */ - enabled: true, - /** @prop {ModifierFn} */ - fn: arrow, - /** @prop {String|HTMLElement} element='[x-arrow]' - Selector or node used as arrow */ - element: '[x-arrow]' - }, - - /** - * Modifier used to flip the popper's placement when it starts to overlap its - * reference element. - * - * Requires the `preventOverflow` modifier before it in order to work. - * - * **NOTE:** this modifier will interrupt the current update cycle and will - * restart it if it detects the need to flip the placement. - * @memberof modifiers - * @inner - */ - flip: { - /** @prop {number} order=600 - Index used to define the order of execution */ - order: 600, - /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */ - enabled: true, - /** @prop {ModifierFn} */ - fn: flip, - /** - * @prop {String|Array} behavior='flip' - * The behavior used to change the popper's placement. It can be one of - * `flip`, `clockwise`, `counterclockwise` or an array with a list of valid - * placements (with optional variations) - */ - behavior: 'flip', - /** - * @prop {number} padding=5 - * The popper will flip if it hits the edges of the `boundariesElement` - */ - padding: 5, - /** - * @prop {String|HTMLElement} boundariesElement='viewport' - * The element which will define the boundaries of the popper position. - * The popper will never be placed outside of the defined boundaries - * (except if `keepTogether` is enabled) - */ - boundariesElement: 'viewport' - }, - - /** - * Modifier used to make the popper flow toward the inner of the reference element. - * By default, when this modifier is disabled, the popper will be placed outside - * the reference element. - * @memberof modifiers - * @inner - */ - inner: { - /** @prop {number} order=700 - Index used to define the order of execution */ - order: 700, - /** @prop {Boolean} enabled=false - Whether the modifier is enabled or not */ - enabled: false, - /** @prop {ModifierFn} */ - fn: inner - }, - - /** - * Modifier used to hide the popper when its reference element is outside of the - * popper boundaries. It will set a `x-out-of-boundaries` attribute which can - * be used to hide with a CSS selector the popper when its reference is - * out of boundaries. - * - * Requires the `preventOverflow` modifier before it in order to work. - * @memberof modifiers - * @inner - */ - hide: { - /** @prop {number} order=800 - Index used to define the order of execution */ - order: 800, - /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */ - enabled: true, - /** @prop {ModifierFn} */ - fn: hide - }, - - /** - * Computes the style that will be applied to the popper element to gets - * properly positioned. - * - * Note that this modifier will not touch the DOM, it just prepares the styles - * so that `applyStyle` modifier can apply it. This separation is useful - * in case you need to replace `applyStyle` with a custom implementation. - * - * This modifier has `850` as `order` value to maintain backward compatibility - * with previous versions of Popper.js. Expect the modifiers ordering method - * to change in future major versions of the library. - * - * @memberof modifiers - * @inner - */ - computeStyle: { - /** @prop {number} order=850 - Index used to define the order of execution */ - order: 850, - /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */ - enabled: true, - /** @prop {ModifierFn} */ - fn: computeStyle, - /** - * @prop {Boolean} gpuAcceleration=true - * If true, it uses the CSS 3D transformation to position the popper. - * Otherwise, it will use the `top` and `left` properties - */ - gpuAcceleration: true, - /** - * @prop {string} [x='bottom'] - * Where to anchor the X axis (`bottom` or `top`). AKA X offset origin. - * Change this if your popper should grow in a direction different from `bottom` - */ - x: 'bottom', - /** - * @prop {string} [x='left'] - * Where to anchor the Y axis (`left` or `right`). AKA Y offset origin. - * Change this if your popper should grow in a direction different from `right` - */ - y: 'right' - }, - - /** - * Applies the computed styles to the popper element. - * - * All the DOM manipulations are limited to this modifier. This is useful in case - * you want to integrate Popper.js inside a framework or view library and you - * want to delegate all the DOM manipulations to it. - * - * Note that if you disable this modifier, you must make sure the popper element - * has its position set to `absolute` before Popper.js can do its work! - * - * Just disable this modifier and define your own to achieve the desired effect. - * - * @memberof modifiers - * @inner - */ - applyStyle: { - /** @prop {number} order=900 - Index used to define the order of execution */ - order: 900, - /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */ - enabled: true, - /** @prop {ModifierFn} */ - fn: applyStyle, - /** @prop {Function} */ - onLoad: applyStyleOnLoad, - /** - * @deprecated since version 1.10.0, the property moved to `computeStyle` modifier - * @prop {Boolean} gpuAcceleration=true - * If true, it uses the CSS 3D transformation to position the popper. - * Otherwise, it will use the `top` and `left` properties - */ - gpuAcceleration: undefined - } - }; - - /** - * The `dataObject` is an object containing all the information used by Popper.js. - * This object is passed to modifiers and to the `onCreate` and `onUpdate` callbacks. - * @name dataObject - * @property {Object} data.instance The Popper.js instance - * @property {String} data.placement Placement applied to popper - * @property {String} data.originalPlacement Placement originally defined on init - * @property {Boolean} data.flipped True if popper has been flipped by flip modifier - * @property {Boolean} data.hide True if the reference element is out of boundaries, useful to know when to hide the popper - * @property {HTMLElement} data.arrowElement Node used as arrow by arrow modifier - * @property {Object} data.styles Any CSS property defined here will be applied to the popper. It expects the JavaScript nomenclature (eg. `marginBottom`) - * @property {Object} data.arrowStyles Any CSS property defined here will be applied to the popper arrow. It expects the JavaScript nomenclature (eg. `marginBottom`) - * @property {Object} data.boundaries Offsets of the popper boundaries - * @property {Object} data.offsets The measurements of popper, reference and arrow elements - * @property {Object} data.offsets.popper `top`, `left`, `width`, `height` values - * @property {Object} data.offsets.reference `top`, `left`, `width`, `height` values - * @property {Object} data.offsets.arrow] `top` and `left` offsets, only one of them will be different from 0 - */ - - /** - * Default options provided to Popper.js constructor.
- * These can be overridden using the `options` argument of Popper.js.
- * To override an option, simply pass an object with the same - * structure of the `options` object, as the 3rd argument. For example: - * ``` - * new Popper(ref, pop, { - * modifiers: { - * preventOverflow: { enabled: false } - * } - * }) - * ``` - * @type {Object} - * @static - * @memberof Popper - */ - var Defaults = { - /** - * Popper's placement. - * @prop {Popper.placements} placement='bottom' - */ - placement: 'bottom', - - /** - * Set this to true if you want popper to position it self in 'fixed' mode - * @prop {Boolean} positionFixed=false - */ - positionFixed: false, - - /** - * Whether events (resize, scroll) are initially enabled. - * @prop {Boolean} eventsEnabled=true - */ - eventsEnabled: true, - - /** - * Set to true if you want to automatically remove the popper when - * you call the `destroy` method. - * @prop {Boolean} removeOnDestroy=false - */ - removeOnDestroy: false, - - /** - * Callback called when the popper is created.
- * By default, it is set to no-op.
- * Access Popper.js instance with `data.instance`. - * @prop {onCreate} - */ - onCreate: function onCreate() {}, - - /** - * Callback called when the popper is updated. This callback is not called - * on the initialization/creation of the popper, but only on subsequent - * updates.
- * By default, it is set to no-op.
- * Access Popper.js instance with `data.instance`. - * @prop {onUpdate} - */ - onUpdate: function onUpdate() {}, - - /** - * List of modifiers used to modify the offsets before they are applied to the popper. - * They provide most of the functionalities of Popper.js. - * @prop {modifiers} - */ - modifiers: modifiers - }; - - /** - * @callback onCreate - * @param {dataObject} data - */ - - /** - * @callback onUpdate - * @param {dataObject} data - */ - - // Utils - // Methods - var Popper = function () { - /** - * Creates a new Popper.js instance. - * @class Popper - * @param {HTMLElement|referenceObject} reference - The reference element used to position the popper - * @param {HTMLElement} popper - The HTML element used as the popper - * @param {Object} options - Your custom options to override the ones defined in [Defaults](#defaults) - * @return {Object} instance - The generated Popper.js instance - */ - function Popper(reference, popper) { - var _this = this; - - var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}; - classCallCheck(this, Popper); - - this.scheduleUpdate = function () { - return requestAnimationFrame(_this.update); - }; - - // make update() debounced, so that it only runs at most once-per-tick - this.update = debounce(this.update.bind(this)); - - // with {} we create a new object with the options inside it - this.options = _extends({}, Popper.Defaults, options); - - // init state - this.state = { - isDestroyed: false, - isCreated: false, - scrollParents: [] - }; - - // get reference and popper elements (allow jQuery wrappers) - this.reference = reference && reference.jquery ? reference[0] : reference; - this.popper = popper && popper.jquery ? popper[0] : popper; - - // Deep merge modifiers options - this.options.modifiers = {}; - Object.keys(_extends({}, Popper.Defaults.modifiers, options.modifiers)).forEach(function (name) { - _this.options.modifiers[name] = _extends({}, Popper.Defaults.modifiers[name] || {}, options.modifiers ? options.modifiers[name] : {}); - }); - - // Refactoring modifiers' list (Object => Array) - this.modifiers = Object.keys(this.options.modifiers).map(function (name) { - return _extends({ - name: name - }, _this.options.modifiers[name]); - }) - // sort the modifiers by order - .sort(function (a, b) { - return a.order - b.order; - }); - - // modifiers have the ability to execute arbitrary code when Popper.js get inited - // such code is executed in the same order of its modifier - // they could add new properties to their options configuration - // BE AWARE: don't add options to `options.modifiers.name` but to `modifierOptions`! - this.modifiers.forEach(function (modifierOptions) { - if (modifierOptions.enabled && isFunction(modifierOptions.onLoad)) { - modifierOptions.onLoad(_this.reference, _this.popper, _this.options, modifierOptions, _this.state); - } - }); - - // fire the first update to position the popper in the right place - this.update(); - - var eventsEnabled = this.options.eventsEnabled; - if (eventsEnabled) { - // setup event listeners, they will take care of update the position in specific situations - this.enableEventListeners(); - } - - this.state.eventsEnabled = eventsEnabled; - } - - // We can't use class properties because they don't get listed in the - // class prototype and break stuff like Sinon stubs - - - createClass(Popper, [{ - key: 'update', - value: function update$$1() { - return update.call(this); - } - }, { - key: 'destroy', - value: function destroy$$1() { - return destroy.call(this); - } - }, { - key: 'enableEventListeners', - value: function enableEventListeners$$1() { - return enableEventListeners.call(this); - } - }, { - key: 'disableEventListeners', - value: function disableEventListeners$$1() { - return disableEventListeners.call(this); - } - - /** - * Schedules an update. It will run on the next UI update available. - * @method scheduleUpdate - * @memberof Popper - */ - - - /** - * Collection of utilities useful when writing custom modifiers. - * Starting from version 1.7, this method is available only if you - * include `popper-utils.js` before `popper.js`. - * - * **DEPRECATION**: This way to access PopperUtils is deprecated - * and will be removed in v2! Use the PopperUtils module directly instead. - * Due to the high instability of the methods contained in Utils, we can't - * guarantee them to follow semver. Use them at your own risk! - * @static - * @private - * @type {Object} - * @deprecated since version 1.8 - * @member Utils - * @memberof Popper - */ - - }]); - return Popper; - }(); - - /** - * The `referenceObject` is an object that provides an interface compatible with Popper.js - * and lets you use it as replacement of a real DOM node.
- * You can use this method to position a popper relatively to a set of coordinates - * in case you don't have a DOM node to use as reference. - * - * ``` - * new Popper(referenceObject, popperNode); - * ``` - * - * NB: This feature isn't supported in Internet Explorer 10. - * @name referenceObject - * @property {Function} data.getBoundingClientRect - * A function that returns a set of coordinates compatible with the native `getBoundingClientRect` method. - * @property {number} data.clientWidth - * An ES6 getter that will return the width of the virtual reference element. - * @property {number} data.clientHeight - * An ES6 getter that will return the height of the virtual reference element. - */ - - - Popper.Utils = (typeof window !== 'undefined' ? window : global).PopperUtils; - Popper.placements = placements; - Popper.Defaults = Defaults; - - /** - * ------------------------------------------------------------------------ - * Constants - * ------------------------------------------------------------------------ - */ - - var NAME$4 = 'dropdown'; - var VERSION$4 = '4.3.1'; - var DATA_KEY$4 = 'bs.dropdown'; - var EVENT_KEY$4 = "." + DATA_KEY$4; - var DATA_API_KEY$4 = '.data-api'; - var JQUERY_NO_CONFLICT$4 = $.fn[NAME$4]; - var ESCAPE_KEYCODE = 27; // KeyboardEvent.which value for Escape (Esc) key - - var SPACE_KEYCODE = 32; // KeyboardEvent.which value for space key - - var TAB_KEYCODE = 9; // KeyboardEvent.which value for tab key - - var ARROW_UP_KEYCODE = 38; // KeyboardEvent.which value for up arrow key - - var ARROW_DOWN_KEYCODE = 40; // KeyboardEvent.which value for down arrow key - - var RIGHT_MOUSE_BUTTON_WHICH = 3; // MouseEvent.which value for the right button (assuming a right-handed mouse) - - var REGEXP_KEYDOWN = new RegExp(ARROW_UP_KEYCODE + "|" + ARROW_DOWN_KEYCODE + "|" + ESCAPE_KEYCODE); - var Event$4 = { - HIDE: "hide" + EVENT_KEY$4, - HIDDEN: "hidden" + EVENT_KEY$4, - SHOW: "show" + EVENT_KEY$4, - SHOWN: "shown" + EVENT_KEY$4, - CLICK: "click" + EVENT_KEY$4, - CLICK_DATA_API: "click" + EVENT_KEY$4 + DATA_API_KEY$4, - KEYDOWN_DATA_API: "keydown" + EVENT_KEY$4 + DATA_API_KEY$4, - KEYUP_DATA_API: "keyup" + EVENT_KEY$4 + DATA_API_KEY$4 - }; - var ClassName$4 = { - DISABLED: 'disabled', - SHOW: 'show', - DROPUP: 'dropup', - DROPRIGHT: 'dropright', - DROPLEFT: 'dropleft', - MENURIGHT: 'dropdown-menu-right', - MENULEFT: 'dropdown-menu-left', - POSITION_STATIC: 'position-static' - }; - var Selector$4 = { - DATA_TOGGLE: '[data-toggle="dropdown"]', - FORM_CHILD: '.dropdown form', - MENU: '.dropdown-menu', - NAVBAR_NAV: '.navbar-nav', - VISIBLE_ITEMS: '.dropdown-menu .dropdown-item:not(.disabled):not(:disabled)' - }; - var AttachmentMap = { - TOP: 'top-start', - TOPEND: 'top-end', - BOTTOM: 'bottom-start', - BOTTOMEND: 'bottom-end', - RIGHT: 'right-start', - RIGHTEND: 'right-end', - LEFT: 'left-start', - LEFTEND: 'left-end' - }; - var Default$2 = { - offset: 0, - flip: true, - boundary: 'scrollParent', - reference: 'toggle', - display: 'dynamic' - }; - var DefaultType$2 = { - offset: '(number|string|function)', - flip: 'boolean', - boundary: '(string|element)', - reference: '(string|element)', - display: 'string' - /** - * ------------------------------------------------------------------------ - * Class Definition - * ------------------------------------------------------------------------ - */ - - }; - - var Dropdown = - /*#__PURE__*/ - function () { - function Dropdown(element, config) { - this._element = element; - this._popper = null; - this._config = this._getConfig(config); - this._menu = this._getMenuElement(); - this._inNavbar = this._detectNavbar(); - - this._addEventListeners(); - } // Getters - - - var _proto = Dropdown.prototype; - - // Public - _proto.toggle = function toggle() { - if (this._element.disabled || $(this._element).hasClass(ClassName$4.DISABLED)) { - return; - } - - var parent = Dropdown._getParentFromElement(this._element); - - var isActive = $(this._menu).hasClass(ClassName$4.SHOW); - - Dropdown._clearMenus(); - - if (isActive) { - return; - } - - var relatedTarget = { - relatedTarget: this._element - }; - var showEvent = $.Event(Event$4.SHOW, relatedTarget); - $(parent).trigger(showEvent); - - if (showEvent.isDefaultPrevented()) { - return; - } // Disable totally Popper.js for Dropdown in Navbar - - - if (!this._inNavbar) { - /** - * Check for Popper dependency - * Popper - https://popper.js.org - */ - if (typeof Popper === 'undefined') { - throw new TypeError('Bootstrap\'s dropdowns require Popper.js (https://popper.js.org/)'); - } - - var referenceElement = this._element; - - if (this._config.reference === 'parent') { - referenceElement = parent; - } else if (Util.isElement(this._config.reference)) { - referenceElement = this._config.reference; // Check if it's jQuery element - - if (typeof this._config.reference.jquery !== 'undefined') { - referenceElement = this._config.reference[0]; - } - } // If boundary is not `scrollParent`, then set position to `static` - // to allow the menu to "escape" the scroll parent's boundaries - // https://github.com/twbs/bootstrap/issues/24251 - - - if (this._config.boundary !== 'scrollParent') { - $(parent).addClass(ClassName$4.POSITION_STATIC); - } - - this._popper = new Popper(referenceElement, this._menu, this._getPopperConfig()); - } // If this is a touch-enabled device we add extra - // empty mouseover listeners to the body's immediate children; - // only needed because of broken event delegation on iOS - // https://www.quirksmode.org/blog/archives/2014/02/mouse_event_bub.html - - - if ('ontouchstart' in document.documentElement && $(parent).closest(Selector$4.NAVBAR_NAV).length === 0) { - $(document.body).children().on('mouseover', null, $.noop); - } - - this._element.focus(); - - this._element.setAttribute('aria-expanded', true); - - $(this._menu).toggleClass(ClassName$4.SHOW); - $(parent).toggleClass(ClassName$4.SHOW).trigger($.Event(Event$4.SHOWN, relatedTarget)); - }; - - _proto.show = function show() { - if (this._element.disabled || $(this._element).hasClass(ClassName$4.DISABLED) || $(this._menu).hasClass(ClassName$4.SHOW)) { - return; - } - - var relatedTarget = { - relatedTarget: this._element - }; - var showEvent = $.Event(Event$4.SHOW, relatedTarget); - - var parent = Dropdown._getParentFromElement(this._element); - - $(parent).trigger(showEvent); - - if (showEvent.isDefaultPrevented()) { - return; - } - - $(this._menu).toggleClass(ClassName$4.SHOW); - $(parent).toggleClass(ClassName$4.SHOW).trigger($.Event(Event$4.SHOWN, relatedTarget)); - }; - - _proto.hide = function hide() { - if (this._element.disabled || $(this._element).hasClass(ClassName$4.DISABLED) || !$(this._menu).hasClass(ClassName$4.SHOW)) { - return; - } - - var relatedTarget = { - relatedTarget: this._element - }; - var hideEvent = $.Event(Event$4.HIDE, relatedTarget); - - var parent = Dropdown._getParentFromElement(this._element); - - $(parent).trigger(hideEvent); - - if (hideEvent.isDefaultPrevented()) { - return; - } - - $(this._menu).toggleClass(ClassName$4.SHOW); - $(parent).toggleClass(ClassName$4.SHOW).trigger($.Event(Event$4.HIDDEN, relatedTarget)); - }; - - _proto.dispose = function dispose() { - $.removeData(this._element, DATA_KEY$4); - $(this._element).off(EVENT_KEY$4); - this._element = null; - this._menu = null; - - if (this._popper !== null) { - this._popper.destroy(); - - this._popper = null; - } - }; - - _proto.update = function update() { - this._inNavbar = this._detectNavbar(); - - if (this._popper !== null) { - this._popper.scheduleUpdate(); - } - } // Private - ; - - _proto._addEventListeners = function _addEventListeners() { - var _this = this; - - $(this._element).on(Event$4.CLICK, function (event) { - event.preventDefault(); - event.stopPropagation(); - - _this.toggle(); - }); - }; - - _proto._getConfig = function _getConfig(config) { - config = _objectSpread({}, this.constructor.Default, $(this._element).data(), config); - Util.typeCheckConfig(NAME$4, config, this.constructor.DefaultType); - return config; - }; - - _proto._getMenuElement = function _getMenuElement() { - if (!this._menu) { - var parent = Dropdown._getParentFromElement(this._element); - - if (parent) { - this._menu = parent.querySelector(Selector$4.MENU); - } - } - - return this._menu; - }; - - _proto._getPlacement = function _getPlacement() { - var $parentDropdown = $(this._element.parentNode); - var placement = AttachmentMap.BOTTOM; // Handle dropup - - if ($parentDropdown.hasClass(ClassName$4.DROPUP)) { - placement = AttachmentMap.TOP; - - if ($(this._menu).hasClass(ClassName$4.MENURIGHT)) { - placement = AttachmentMap.TOPEND; - } - } else if ($parentDropdown.hasClass(ClassName$4.DROPRIGHT)) { - placement = AttachmentMap.RIGHT; - } else if ($parentDropdown.hasClass(ClassName$4.DROPLEFT)) { - placement = AttachmentMap.LEFT; - } else if ($(this._menu).hasClass(ClassName$4.MENURIGHT)) { - placement = AttachmentMap.BOTTOMEND; - } - - return placement; - }; - - _proto._detectNavbar = function _detectNavbar() { - return $(this._element).closest('.navbar').length > 0; - }; - - _proto._getOffset = function _getOffset() { - var _this2 = this; - - var offset = {}; - - if (typeof this._config.offset === 'function') { - offset.fn = function (data) { - data.offsets = _objectSpread({}, data.offsets, _this2._config.offset(data.offsets, _this2._element) || {}); - return data; - }; - } else { - offset.offset = this._config.offset; - } - - return offset; - }; - - _proto._getPopperConfig = function _getPopperConfig() { - var popperConfig = { - placement: this._getPlacement(), - modifiers: { - offset: this._getOffset(), - flip: { - enabled: this._config.flip - }, - preventOverflow: { - boundariesElement: this._config.boundary - } - } // Disable Popper.js if we have a static display - - }; - - if (this._config.display === 'static') { - popperConfig.modifiers.applyStyle = { - enabled: false - }; - } - - return popperConfig; - } // Static - ; - - Dropdown._jQueryInterface = function _jQueryInterface(config) { - return this.each(function () { - var data = $(this).data(DATA_KEY$4); - - var _config = typeof config === 'object' ? config : null; - - if (!data) { - data = new Dropdown(this, _config); - $(this).data(DATA_KEY$4, data); - } - - if (typeof config === 'string') { - if (typeof data[config] === 'undefined') { - throw new TypeError("No method named \"" + config + "\""); - } - - data[config](); - } - }); - }; - - Dropdown._clearMenus = function _clearMenus(event) { - if (event && (event.which === RIGHT_MOUSE_BUTTON_WHICH || event.type === 'keyup' && event.which !== TAB_KEYCODE)) { - return; - } - - var toggles = [].slice.call(document.querySelectorAll(Selector$4.DATA_TOGGLE)); - - for (var i = 0, len = toggles.length; i < len; i++) { - var parent = Dropdown._getParentFromElement(toggles[i]); - - var context = $(toggles[i]).data(DATA_KEY$4); - var relatedTarget = { - relatedTarget: toggles[i] - }; - - if (event && event.type === 'click') { - relatedTarget.clickEvent = event; - } - - if (!context) { - continue; - } - - var dropdownMenu = context._menu; - - if (!$(parent).hasClass(ClassName$4.SHOW)) { - continue; - } - - if (event && (event.type === 'click' && /input|textarea/i.test(event.target.tagName) || event.type === 'keyup' && event.which === TAB_KEYCODE) && $.contains(parent, event.target)) { - continue; - } - - var hideEvent = $.Event(Event$4.HIDE, relatedTarget); - $(parent).trigger(hideEvent); - - if (hideEvent.isDefaultPrevented()) { - continue; - } // If this is a touch-enabled device we remove the extra - // empty mouseover listeners we added for iOS support - - - if ('ontouchstart' in document.documentElement) { - $(document.body).children().off('mouseover', null, $.noop); - } - - toggles[i].setAttribute('aria-expanded', 'false'); - $(dropdownMenu).removeClass(ClassName$4.SHOW); - $(parent).removeClass(ClassName$4.SHOW).trigger($.Event(Event$4.HIDDEN, relatedTarget)); - } - }; - - Dropdown._getParentFromElement = function _getParentFromElement(element) { - var parent; - var selector = Util.getSelectorFromElement(element); - - if (selector) { - parent = document.querySelector(selector); - } - - return parent || element.parentNode; - } // eslint-disable-next-line complexity - ; - - Dropdown._dataApiKeydownHandler = function _dataApiKeydownHandler(event) { - // If not input/textarea: - // - And not a key in REGEXP_KEYDOWN => not a dropdown command - // If input/textarea: - // - If space key => not a dropdown command - // - If key is other than escape - // - If key is not up or down => not a dropdown command - // - If trigger inside the menu => not a dropdown command - if (/input|textarea/i.test(event.target.tagName) ? event.which === SPACE_KEYCODE || event.which !== ESCAPE_KEYCODE && (event.which !== ARROW_DOWN_KEYCODE && event.which !== ARROW_UP_KEYCODE || $(event.target).closest(Selector$4.MENU).length) : !REGEXP_KEYDOWN.test(event.which)) { - return; - } - - event.preventDefault(); - event.stopPropagation(); - - if (this.disabled || $(this).hasClass(ClassName$4.DISABLED)) { - return; - } - - var parent = Dropdown._getParentFromElement(this); - - var isActive = $(parent).hasClass(ClassName$4.SHOW); - - if (!isActive || isActive && (event.which === ESCAPE_KEYCODE || event.which === SPACE_KEYCODE)) { - if (event.which === ESCAPE_KEYCODE) { - var toggle = parent.querySelector(Selector$4.DATA_TOGGLE); - $(toggle).trigger('focus'); - } - - $(this).trigger('click'); - return; - } - - var items = [].slice.call(parent.querySelectorAll(Selector$4.VISIBLE_ITEMS)); - - if (items.length === 0) { - return; - } - - var index = items.indexOf(event.target); - - if (event.which === ARROW_UP_KEYCODE && index > 0) { - // Up - index--; - } - - if (event.which === ARROW_DOWN_KEYCODE && index < items.length - 1) { - // Down - index++; - } - - if (index < 0) { - index = 0; - } - - items[index].focus(); - }; - - _createClass(Dropdown, null, [{ - key: "VERSION", - get: function get() { - return VERSION$4; - } - }, { - key: "Default", - get: function get() { - return Default$2; - } - }, { - key: "DefaultType", - get: function get() { - return DefaultType$2; - } - }]); - - return Dropdown; - }(); - /** - * ------------------------------------------------------------------------ - * Data Api implementation - * ------------------------------------------------------------------------ - */ - - - $(document).on(Event$4.KEYDOWN_DATA_API, Selector$4.DATA_TOGGLE, Dropdown._dataApiKeydownHandler).on(Event$4.KEYDOWN_DATA_API, Selector$4.MENU, Dropdown._dataApiKeydownHandler).on(Event$4.CLICK_DATA_API + " " + Event$4.KEYUP_DATA_API, Dropdown._clearMenus).on(Event$4.CLICK_DATA_API, Selector$4.DATA_TOGGLE, function (event) { - event.preventDefault(); - event.stopPropagation(); - - Dropdown._jQueryInterface.call($(this), 'toggle'); - }).on(Event$4.CLICK_DATA_API, Selector$4.FORM_CHILD, function (e) { - e.stopPropagation(); - }); - /** - * ------------------------------------------------------------------------ - * jQuery - * ------------------------------------------------------------------------ - */ - - $.fn[NAME$4] = Dropdown._jQueryInterface; - $.fn[NAME$4].Constructor = Dropdown; - - $.fn[NAME$4].noConflict = function () { - $.fn[NAME$4] = JQUERY_NO_CONFLICT$4; - return Dropdown._jQueryInterface; - }; - - /** - * ------------------------------------------------------------------------ - * Constants - * ------------------------------------------------------------------------ - */ - - var NAME$5 = 'modal'; - var VERSION$5 = '4.3.1'; - var DATA_KEY$5 = 'bs.modal'; - var EVENT_KEY$5 = "." + DATA_KEY$5; - var DATA_API_KEY$5 = '.data-api'; - var JQUERY_NO_CONFLICT$5 = $.fn[NAME$5]; - var ESCAPE_KEYCODE$1 = 27; // KeyboardEvent.which value for Escape (Esc) key - - var Default$3 = { - backdrop: true, - keyboard: true, - focus: true, - show: true - }; - var DefaultType$3 = { - backdrop: '(boolean|string)', - keyboard: 'boolean', - focus: 'boolean', - show: 'boolean' - }; - var Event$5 = { - HIDE: "hide" + EVENT_KEY$5, - HIDDEN: "hidden" + EVENT_KEY$5, - SHOW: "show" + EVENT_KEY$5, - SHOWN: "shown" + EVENT_KEY$5, - FOCUSIN: "focusin" + EVENT_KEY$5, - RESIZE: "resize" + EVENT_KEY$5, - CLICK_DISMISS: "click.dismiss" + EVENT_KEY$5, - KEYDOWN_DISMISS: "keydown.dismiss" + EVENT_KEY$5, - MOUSEUP_DISMISS: "mouseup.dismiss" + EVENT_KEY$5, - MOUSEDOWN_DISMISS: "mousedown.dismiss" + EVENT_KEY$5, - CLICK_DATA_API: "click" + EVENT_KEY$5 + DATA_API_KEY$5 - }; - var ClassName$5 = { - SCROLLABLE: 'modal-dialog-scrollable', - SCROLLBAR_MEASURER: 'modal-scrollbar-measure', - BACKDROP: 'modal-backdrop', - OPEN: 'modal-open', - FADE: 'fade', - SHOW: 'show' - }; - var Selector$5 = { - DIALOG: '.modal-dialog', - MODAL_BODY: '.modal-body', - DATA_TOGGLE: '[data-toggle="modal"]', - DATA_DISMISS: '[data-dismiss="modal"]', - FIXED_CONTENT: '.fixed-top, .fixed-bottom, .is-fixed, .sticky-top', - STICKY_CONTENT: '.sticky-top' - /** - * ------------------------------------------------------------------------ - * Class Definition - * ------------------------------------------------------------------------ - */ - - }; - - var Modal = - /*#__PURE__*/ - function () { - function Modal(element, config) { - this._config = this._getConfig(config); - this._element = element; - this._dialog = element.querySelector(Selector$5.DIALOG); - this._backdrop = null; - this._isShown = false; - this._isBodyOverflowing = false; - this._ignoreBackdropClick = false; - this._isTransitioning = false; - this._scrollbarWidth = 0; - } // Getters - - - var _proto = Modal.prototype; - - // Public - _proto.toggle = function toggle(relatedTarget) { - return this._isShown ? this.hide() : this.show(relatedTarget); - }; - - _proto.show = function show(relatedTarget) { - var _this = this; - - if (this._isShown || this._isTransitioning) { - return; - } - - if ($(this._element).hasClass(ClassName$5.FADE)) { - this._isTransitioning = true; - } - - var showEvent = $.Event(Event$5.SHOW, { - relatedTarget: relatedTarget - }); - $(this._element).trigger(showEvent); - - if (this._isShown || showEvent.isDefaultPrevented()) { - return; - } - - this._isShown = true; - - this._checkScrollbar(); - - this._setScrollbar(); - - this._adjustDialog(); - - this._setEscapeEvent(); - - this._setResizeEvent(); - - $(this._element).on(Event$5.CLICK_DISMISS, Selector$5.DATA_DISMISS, function (event) { - return _this.hide(event); - }); - $(this._dialog).on(Event$5.MOUSEDOWN_DISMISS, function () { - $(_this._element).one(Event$5.MOUSEUP_DISMISS, function (event) { - if ($(event.target).is(_this._element)) { - _this._ignoreBackdropClick = true; - } - }); - }); - - this._showBackdrop(function () { - return _this._showElement(relatedTarget); - }); - }; - - _proto.hide = function hide(event) { - var _this2 = this; - - if (event) { - event.preventDefault(); - } - - if (!this._isShown || this._isTransitioning) { - return; - } - - var hideEvent = $.Event(Event$5.HIDE); - $(this._element).trigger(hideEvent); - - if (!this._isShown || hideEvent.isDefaultPrevented()) { - return; - } - - this._isShown = false; - var transition = $(this._element).hasClass(ClassName$5.FADE); - - if (transition) { - this._isTransitioning = true; - } - - this._setEscapeEvent(); - - this._setResizeEvent(); - - $(document).off(Event$5.FOCUSIN); - $(this._element).removeClass(ClassName$5.SHOW); - $(this._element).off(Event$5.CLICK_DISMISS); - $(this._dialog).off(Event$5.MOUSEDOWN_DISMISS); - - if (transition) { - var transitionDuration = Util.getTransitionDurationFromElement(this._element); - $(this._element).one(Util.TRANSITION_END, function (event) { - return _this2._hideModal(event); - }).emulateTransitionEnd(transitionDuration); - } else { - this._hideModal(); - } - }; - - _proto.dispose = function dispose() { - [window, this._element, this._dialog].forEach(function (htmlElement) { - return $(htmlElement).off(EVENT_KEY$5); - }); - /** - * `document` has 2 events `Event.FOCUSIN` and `Event.CLICK_DATA_API` - * Do not move `document` in `htmlElements` array - * It will remove `Event.CLICK_DATA_API` event that should remain - */ - - $(document).off(Event$5.FOCUSIN); - $.removeData(this._element, DATA_KEY$5); - this._config = null; - this._element = null; - this._dialog = null; - this._backdrop = null; - this._isShown = null; - this._isBodyOverflowing = null; - this._ignoreBackdropClick = null; - this._isTransitioning = null; - this._scrollbarWidth = null; - }; - - _proto.handleUpdate = function handleUpdate() { - this._adjustDialog(); - } // Private - ; - - _proto._getConfig = function _getConfig(config) { - config = _objectSpread({}, Default$3, config); - Util.typeCheckConfig(NAME$5, config, DefaultType$3); - return config; - }; - - _proto._showElement = function _showElement(relatedTarget) { - var _this3 = this; - - var transition = $(this._element).hasClass(ClassName$5.FADE); - - if (!this._element.parentNode || this._element.parentNode.nodeType !== Node.ELEMENT_NODE) { - // Don't move modal's DOM position - document.body.appendChild(this._element); - } - - this._element.style.display = 'block'; - - this._element.removeAttribute('aria-hidden'); - - this._element.setAttribute('aria-modal', true); - - if ($(this._dialog).hasClass(ClassName$5.SCROLLABLE)) { - this._dialog.querySelector(Selector$5.MODAL_BODY).scrollTop = 0; - } else { - this._element.scrollTop = 0; - } - - if (transition) { - Util.reflow(this._element); - } - - $(this._element).addClass(ClassName$5.SHOW); - - if (this._config.focus) { - this._enforceFocus(); - } - - var shownEvent = $.Event(Event$5.SHOWN, { - relatedTarget: relatedTarget - }); - - var transitionComplete = function transitionComplete() { - if (_this3._config.focus) { - _this3._element.focus(); - } - - _this3._isTransitioning = false; - $(_this3._element).trigger(shownEvent); - }; - - if (transition) { - var transitionDuration = Util.getTransitionDurationFromElement(this._dialog); - $(this._dialog).one(Util.TRANSITION_END, transitionComplete).emulateTransitionEnd(transitionDuration); - } else { - transitionComplete(); - } - }; - - _proto._enforceFocus = function _enforceFocus() { - var _this4 = this; - - $(document).off(Event$5.FOCUSIN) // Guard against infinite focus loop - .on(Event$5.FOCUSIN, function (event) { - if (document !== event.target && _this4._element !== event.target && $(_this4._element).has(event.target).length === 0) { - _this4._element.focus(); - } - }); - }; - - _proto._setEscapeEvent = function _setEscapeEvent() { - var _this5 = this; - - if (this._isShown && this._config.keyboard) { - $(this._element).on(Event$5.KEYDOWN_DISMISS, function (event) { - if (event.which === ESCAPE_KEYCODE$1) { - event.preventDefault(); - - _this5.hide(); - } - }); - } else if (!this._isShown) { - $(this._element).off(Event$5.KEYDOWN_DISMISS); - } - }; - - _proto._setResizeEvent = function _setResizeEvent() { - var _this6 = this; - - if (this._isShown) { - $(window).on(Event$5.RESIZE, function (event) { - return _this6.handleUpdate(event); - }); - } else { - $(window).off(Event$5.RESIZE); - } - }; - - _proto._hideModal = function _hideModal() { - var _this7 = this; - - this._element.style.display = 'none'; - - this._element.setAttribute('aria-hidden', true); - - this._element.removeAttribute('aria-modal'); - - this._isTransitioning = false; - - this._showBackdrop(function () { - $(document.body).removeClass(ClassName$5.OPEN); - - _this7._resetAdjustments(); - - _this7._resetScrollbar(); - - $(_this7._element).trigger(Event$5.HIDDEN); - }); - }; - - _proto._removeBackdrop = function _removeBackdrop() { - if (this._backdrop) { - $(this._backdrop).remove(); - this._backdrop = null; - } - }; - - _proto._showBackdrop = function _showBackdrop(callback) { - var _this8 = this; - - var animate = $(this._element).hasClass(ClassName$5.FADE) ? ClassName$5.FADE : ''; - - if (this._isShown && this._config.backdrop) { - this._backdrop = document.createElement('div'); - this._backdrop.className = ClassName$5.BACKDROP; - - if (animate) { - this._backdrop.classList.add(animate); - } - - $(this._backdrop).appendTo(document.body); - $(this._element).on(Event$5.CLICK_DISMISS, function (event) { - if (_this8._ignoreBackdropClick) { - _this8._ignoreBackdropClick = false; - return; - } - - if (event.target !== event.currentTarget) { - return; - } - - if (_this8._config.backdrop === 'static') { - _this8._element.focus(); - } else { - _this8.hide(); - } - }); - - if (animate) { - Util.reflow(this._backdrop); - } - - $(this._backdrop).addClass(ClassName$5.SHOW); - - if (!callback) { - return; - } - - if (!animate) { - callback(); - return; - } - - var backdropTransitionDuration = Util.getTransitionDurationFromElement(this._backdrop); - $(this._backdrop).one(Util.TRANSITION_END, callback).emulateTransitionEnd(backdropTransitionDuration); - } else if (!this._isShown && this._backdrop) { - $(this._backdrop).removeClass(ClassName$5.SHOW); - - var callbackRemove = function callbackRemove() { - _this8._removeBackdrop(); - - if (callback) { - callback(); - } - }; - - if ($(this._element).hasClass(ClassName$5.FADE)) { - var _backdropTransitionDuration = Util.getTransitionDurationFromElement(this._backdrop); - - $(this._backdrop).one(Util.TRANSITION_END, callbackRemove).emulateTransitionEnd(_backdropTransitionDuration); - } else { - callbackRemove(); - } - } else if (callback) { - callback(); - } - } // ---------------------------------------------------------------------- - // the following methods are used to handle overflowing modals - // todo (fat): these should probably be refactored out of modal.js - // ---------------------------------------------------------------------- - ; - - _proto._adjustDialog = function _adjustDialog() { - var isModalOverflowing = this._element.scrollHeight > document.documentElement.clientHeight; - - if (!this._isBodyOverflowing && isModalOverflowing) { - this._element.style.paddingLeft = this._scrollbarWidth + "px"; - } - - if (this._isBodyOverflowing && !isModalOverflowing) { - this._element.style.paddingRight = this._scrollbarWidth + "px"; - } - }; - - _proto._resetAdjustments = function _resetAdjustments() { - this._element.style.paddingLeft = ''; - this._element.style.paddingRight = ''; - }; - - _proto._checkScrollbar = function _checkScrollbar() { - var rect = document.body.getBoundingClientRect(); - this._isBodyOverflowing = rect.left + rect.right < window.innerWidth; - this._scrollbarWidth = this._getScrollbarWidth(); - }; - - _proto._setScrollbar = function _setScrollbar() { - var _this9 = this; - - if (this._isBodyOverflowing) { - // Note: DOMNode.style.paddingRight returns the actual value or '' if not set - // while $(DOMNode).css('padding-right') returns the calculated value or 0 if not set - var fixedContent = [].slice.call(document.querySelectorAll(Selector$5.FIXED_CONTENT)); - var stickyContent = [].slice.call(document.querySelectorAll(Selector$5.STICKY_CONTENT)); // Adjust fixed content padding - - $(fixedContent).each(function (index, element) { - var actualPadding = element.style.paddingRight; - var calculatedPadding = $(element).css('padding-right'); - $(element).data('padding-right', actualPadding).css('padding-right', parseFloat(calculatedPadding) + _this9._scrollbarWidth + "px"); - }); // Adjust sticky content margin - - $(stickyContent).each(function (index, element) { - var actualMargin = element.style.marginRight; - var calculatedMargin = $(element).css('margin-right'); - $(element).data('margin-right', actualMargin).css('margin-right', parseFloat(calculatedMargin) - _this9._scrollbarWidth + "px"); - }); // Adjust body padding - - var actualPadding = document.body.style.paddingRight; - var calculatedPadding = $(document.body).css('padding-right'); - $(document.body).data('padding-right', actualPadding).css('padding-right', parseFloat(calculatedPadding) + this._scrollbarWidth + "px"); - } - - $(document.body).addClass(ClassName$5.OPEN); - }; - - _proto._resetScrollbar = function _resetScrollbar() { - // Restore fixed content padding - var fixedContent = [].slice.call(document.querySelectorAll(Selector$5.FIXED_CONTENT)); - $(fixedContent).each(function (index, element) { - var padding = $(element).data('padding-right'); - $(element).removeData('padding-right'); - element.style.paddingRight = padding ? padding : ''; - }); // Restore sticky content - - var elements = [].slice.call(document.querySelectorAll("" + Selector$5.STICKY_CONTENT)); - $(elements).each(function (index, element) { - var margin = $(element).data('margin-right'); - - if (typeof margin !== 'undefined') { - $(element).css('margin-right', margin).removeData('margin-right'); - } - }); // Restore body padding - - var padding = $(document.body).data('padding-right'); - $(document.body).removeData('padding-right'); - document.body.style.paddingRight = padding ? padding : ''; - }; - - _proto._getScrollbarWidth = function _getScrollbarWidth() { - // thx d.walsh - var scrollDiv = document.createElement('div'); - scrollDiv.className = ClassName$5.SCROLLBAR_MEASURER; - document.body.appendChild(scrollDiv); - var scrollbarWidth = scrollDiv.getBoundingClientRect().width - scrollDiv.clientWidth; - document.body.removeChild(scrollDiv); - return scrollbarWidth; - } // Static - ; - - Modal._jQueryInterface = function _jQueryInterface(config, relatedTarget) { - return this.each(function () { - var data = $(this).data(DATA_KEY$5); - - var _config = _objectSpread({}, Default$3, $(this).data(), typeof config === 'object' && config ? config : {}); - - if (!data) { - data = new Modal(this, _config); - $(this).data(DATA_KEY$5, data); - } - - if (typeof config === 'string') { - if (typeof data[config] === 'undefined') { - throw new TypeError("No method named \"" + config + "\""); - } - - data[config](relatedTarget); - } else if (_config.show) { - data.show(relatedTarget); - } - }); - }; - - _createClass(Modal, null, [{ - key: "VERSION", - get: function get() { - return VERSION$5; - } - }, { - key: "Default", - get: function get() { - return Default$3; - } - }]); - - return Modal; - }(); - /** - * ------------------------------------------------------------------------ - * Data Api implementation - * ------------------------------------------------------------------------ - */ - - - $(document).on(Event$5.CLICK_DATA_API, Selector$5.DATA_TOGGLE, function (event) { - var _this10 = this; - - var target; - var selector = Util.getSelectorFromElement(this); - - if (selector) { - target = document.querySelector(selector); - } - - var config = $(target).data(DATA_KEY$5) ? 'toggle' : _objectSpread({}, $(target).data(), $(this).data()); - - if (this.tagName === 'A' || this.tagName === 'AREA') { - event.preventDefault(); - } - - var $target = $(target).one(Event$5.SHOW, function (showEvent) { - if (showEvent.isDefaultPrevented()) { - // Only register focus restorer if modal will actually get shown - return; - } - - $target.one(Event$5.HIDDEN, function () { - if ($(_this10).is(':visible')) { - _this10.focus(); - } - }); - }); - - Modal._jQueryInterface.call($(target), config, this); - }); - /** - * ------------------------------------------------------------------------ - * jQuery - * ------------------------------------------------------------------------ - */ - - $.fn[NAME$5] = Modal._jQueryInterface; - $.fn[NAME$5].Constructor = Modal; - - $.fn[NAME$5].noConflict = function () { - $.fn[NAME$5] = JQUERY_NO_CONFLICT$5; - return Modal._jQueryInterface; - }; - - /** - * -------------------------------------------------------------------------- - * Bootstrap (v4.3.1): tools/sanitizer.js - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * -------------------------------------------------------------------------- - */ - var uriAttrs = ['background', 'cite', 'href', 'itemtype', 'longdesc', 'poster', 'src', 'xlink:href']; - var ARIA_ATTRIBUTE_PATTERN = /^aria-[\w-]*$/i; - var DefaultWhitelist = { - // Global attributes allowed on any supplied element below. - '*': ['class', 'dir', 'id', 'lang', 'role', ARIA_ATTRIBUTE_PATTERN], - a: ['target', 'href', 'title', 'rel'], - area: [], - b: [], - br: [], - col: [], - code: [], - div: [], - em: [], - hr: [], - h1: [], - h2: [], - h3: [], - h4: [], - h5: [], - h6: [], - i: [], - img: ['src', 'alt', 'title', 'width', 'height'], - li: [], - ol: [], - p: [], - pre: [], - s: [], - small: [], - span: [], - sub: [], - sup: [], - strong: [], - u: [], - ul: [] - /** - * A pattern that recognizes a commonly useful subset of URLs that are safe. - * - * Shoutout to Angular 7 https://github.com/angular/angular/blob/7.2.4/packages/core/src/sanitization/url_sanitizer.ts - */ - - }; - var SAFE_URL_PATTERN = /^(?:(?:https?|mailto|ftp|tel|file):|[^&:/?#]*(?:[/?#]|$))/gi; - /** - * A pattern that matches safe data URLs. Only matches image, video and audio types. - * - * Shoutout to Angular 7 https://github.com/angular/angular/blob/7.2.4/packages/core/src/sanitization/url_sanitizer.ts - */ - - var DATA_URL_PATTERN = /^data:(?:image\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\/(?:mpeg|mp4|ogg|webm)|audio\/(?:mp3|oga|ogg|opus));base64,[a-z0-9+/]+=*$/i; - - function allowedAttribute(attr, allowedAttributeList) { - var attrName = attr.nodeName.toLowerCase(); - - if (allowedAttributeList.indexOf(attrName) !== -1) { - if (uriAttrs.indexOf(attrName) !== -1) { - return Boolean(attr.nodeValue.match(SAFE_URL_PATTERN) || attr.nodeValue.match(DATA_URL_PATTERN)); - } - - return true; - } - - var regExp = allowedAttributeList.filter(function (attrRegex) { - return attrRegex instanceof RegExp; - }); // Check if a regular expression validates the attribute. - - for (var i = 0, l = regExp.length; i < l; i++) { - if (attrName.match(regExp[i])) { - return true; - } - } - - return false; - } - - function sanitizeHtml(unsafeHtml, whiteList, sanitizeFn) { - if (unsafeHtml.length === 0) { - return unsafeHtml; - } - - if (sanitizeFn && typeof sanitizeFn === 'function') { - return sanitizeFn(unsafeHtml); - } - - var domParser = new window.DOMParser(); - var createdDocument = domParser.parseFromString(unsafeHtml, 'text/html'); - var whitelistKeys = Object.keys(whiteList); - var elements = [].slice.call(createdDocument.body.querySelectorAll('*')); - - var _loop = function _loop(i, len) { - var el = elements[i]; - var elName = el.nodeName.toLowerCase(); - - if (whitelistKeys.indexOf(el.nodeName.toLowerCase()) === -1) { - el.parentNode.removeChild(el); - return "continue"; - } - - var attributeList = [].slice.call(el.attributes); - var whitelistedAttributes = [].concat(whiteList['*'] || [], whiteList[elName] || []); - attributeList.forEach(function (attr) { - if (!allowedAttribute(attr, whitelistedAttributes)) { - el.removeAttribute(attr.nodeName); - } - }); - }; - - for (var i = 0, len = elements.length; i < len; i++) { - var _ret = _loop(i, len); - - if (_ret === "continue") continue; - } - - return createdDocument.body.innerHTML; - } - - /** - * ------------------------------------------------------------------------ - * Constants - * ------------------------------------------------------------------------ - */ - - var NAME$6 = 'tooltip'; - var VERSION$6 = '4.3.1'; - var DATA_KEY$6 = 'bs.tooltip'; - var EVENT_KEY$6 = "." + DATA_KEY$6; - var JQUERY_NO_CONFLICT$6 = $.fn[NAME$6]; - var CLASS_PREFIX = 'bs-tooltip'; - var BSCLS_PREFIX_REGEX = new RegExp("(^|\\s)" + CLASS_PREFIX + "\\S+", 'g'); - var DISALLOWED_ATTRIBUTES = ['sanitize', 'whiteList', 'sanitizeFn']; - var DefaultType$4 = { - animation: 'boolean', - template: 'string', - title: '(string|element|function)', - trigger: 'string', - delay: '(number|object)', - html: 'boolean', - selector: '(string|boolean)', - placement: '(string|function)', - offset: '(number|string|function)', - container: '(string|element|boolean)', - fallbackPlacement: '(string|array)', - boundary: '(string|element)', - sanitize: 'boolean', - sanitizeFn: '(null|function)', - whiteList: 'object' - }; - var AttachmentMap$1 = { - AUTO: 'auto', - TOP: 'top', - RIGHT: 'right', - BOTTOM: 'bottom', - LEFT: 'left' - }; - var Default$4 = { - animation: true, - template: '

', - trigger: 'hover focus', - title: '', - delay: 0, - html: false, - selector: false, - placement: 'top', - offset: 0, - container: false, - fallbackPlacement: 'flip', - boundary: 'scrollParent', - sanitize: true, - sanitizeFn: null, - whiteList: DefaultWhitelist - }; - var HoverState = { - SHOW: 'show', - OUT: 'out' - }; - var Event$6 = { - HIDE: "hide" + EVENT_KEY$6, - HIDDEN: "hidden" + EVENT_KEY$6, - SHOW: "show" + EVENT_KEY$6, - SHOWN: "shown" + EVENT_KEY$6, - INSERTED: "inserted" + EVENT_KEY$6, - CLICK: "click" + EVENT_KEY$6, - FOCUSIN: "focusin" + EVENT_KEY$6, - FOCUSOUT: "focusout" + EVENT_KEY$6, - MOUSEENTER: "mouseenter" + EVENT_KEY$6, - MOUSELEAVE: "mouseleave" + EVENT_KEY$6 - }; - var ClassName$6 = { - FADE: 'fade', - SHOW: 'show' - }; - var Selector$6 = { - TOOLTIP: '.tooltip', - TOOLTIP_INNER: '.tooltip-inner', - ARROW: '.arrow' - }; - var Trigger = { - HOVER: 'hover', - FOCUS: 'focus', - CLICK: 'click', - MANUAL: 'manual' - /** - * ------------------------------------------------------------------------ - * Class Definition - * ------------------------------------------------------------------------ - */ - - }; - - var Tooltip = - /*#__PURE__*/ - function () { - function Tooltip(element, config) { - /** - * Check for Popper dependency - * Popper - https://popper.js.org - */ - if (typeof Popper === 'undefined') { - throw new TypeError('Bootstrap\'s tooltips require Popper.js (https://popper.js.org/)'); - } // private - - - this._isEnabled = true; - this._timeout = 0; - this._hoverState = ''; - this._activeTrigger = {}; - this._popper = null; // Protected - - this.element = element; - this.config = this._getConfig(config); - this.tip = null; - - this._setListeners(); - } // Getters - - - var _proto = Tooltip.prototype; - - // Public - _proto.enable = function enable() { - this._isEnabled = true; - }; - - _proto.disable = function disable() { - this._isEnabled = false; - }; - - _proto.toggleEnabled = function toggleEnabled() { - this._isEnabled = !this._isEnabled; - }; - - _proto.toggle = function toggle(event) { - if (!this._isEnabled) { - return; - } - - if (event) { - var dataKey = this.constructor.DATA_KEY; - var context = $(event.currentTarget).data(dataKey); - - if (!context) { - context = new this.constructor(event.currentTarget, this._getDelegateConfig()); - $(event.currentTarget).data(dataKey, context); - } - - context._activeTrigger.click = !context._activeTrigger.click; - - if (context._isWithActiveTrigger()) { - context._enter(null, context); - } else { - context._leave(null, context); - } - } else { - if ($(this.getTipElement()).hasClass(ClassName$6.SHOW)) { - this._leave(null, this); - - return; - } - - this._enter(null, this); - } - }; - - _proto.dispose = function dispose() { - clearTimeout(this._timeout); - $.removeData(this.element, this.constructor.DATA_KEY); - $(this.element).off(this.constructor.EVENT_KEY); - $(this.element).closest('.modal').off('hide.bs.modal'); - - if (this.tip) { - $(this.tip).remove(); - } - - this._isEnabled = null; - this._timeout = null; - this._hoverState = null; - this._activeTrigger = null; - - if (this._popper !== null) { - this._popper.destroy(); - } - - this._popper = null; - this.element = null; - this.config = null; - this.tip = null; - }; - - _proto.show = function show() { - var _this = this; - - if ($(this.element).css('display') === 'none') { - throw new Error('Please use show on visible elements'); - } - - var showEvent = $.Event(this.constructor.Event.SHOW); - - if (this.isWithContent() && this._isEnabled) { - $(this.element).trigger(showEvent); - var shadowRoot = Util.findShadowRoot(this.element); - var isInTheDom = $.contains(shadowRoot !== null ? shadowRoot : this.element.ownerDocument.documentElement, this.element); - - if (showEvent.isDefaultPrevented() || !isInTheDom) { - return; - } - - var tip = this.getTipElement(); - var tipId = Util.getUID(this.constructor.NAME); - tip.setAttribute('id', tipId); - this.element.setAttribute('aria-describedby', tipId); - this.setContent(); - - if (this.config.animation) { - $(tip).addClass(ClassName$6.FADE); - } - - var placement = typeof this.config.placement === 'function' ? this.config.placement.call(this, tip, this.element) : this.config.placement; - - var attachment = this._getAttachment(placement); - - this.addAttachmentClass(attachment); - - var container = this._getContainer(); - - $(tip).data(this.constructor.DATA_KEY, this); - - if (!$.contains(this.element.ownerDocument.documentElement, this.tip)) { - $(tip).appendTo(container); - } - - $(this.element).trigger(this.constructor.Event.INSERTED); - this._popper = new Popper(this.element, tip, { - placement: attachment, - modifiers: { - offset: this._getOffset(), - flip: { - behavior: this.config.fallbackPlacement - }, - arrow: { - element: Selector$6.ARROW - }, - preventOverflow: { - boundariesElement: this.config.boundary - } - }, - onCreate: function onCreate(data) { - if (data.originalPlacement !== data.placement) { - _this._handlePopperPlacementChange(data); - } - }, - onUpdate: function onUpdate(data) { - return _this._handlePopperPlacementChange(data); - } - }); - $(tip).addClass(ClassName$6.SHOW); // If this is a touch-enabled device we add extra - // empty mouseover listeners to the body's immediate children; - // only needed because of broken event delegation on iOS - // https://www.quirksmode.org/blog/archives/2014/02/mouse_event_bub.html - - if ('ontouchstart' in document.documentElement) { - $(document.body).children().on('mouseover', null, $.noop); - } - - var complete = function complete() { - if (_this.config.animation) { - _this._fixTransition(); - } - - var prevHoverState = _this._hoverState; - _this._hoverState = null; - $(_this.element).trigger(_this.constructor.Event.SHOWN); - - if (prevHoverState === HoverState.OUT) { - _this._leave(null, _this); - } - }; - - if ($(this.tip).hasClass(ClassName$6.FADE)) { - var transitionDuration = Util.getTransitionDurationFromElement(this.tip); - $(this.tip).one(Util.TRANSITION_END, complete).emulateTransitionEnd(transitionDuration); - } else { - complete(); - } - } - }; - - _proto.hide = function hide(callback) { - var _this2 = this; - - var tip = this.getTipElement(); - var hideEvent = $.Event(this.constructor.Event.HIDE); - - var complete = function complete() { - if (_this2._hoverState !== HoverState.SHOW && tip.parentNode) { - tip.parentNode.removeChild(tip); - } - - _this2._cleanTipClass(); - - _this2.element.removeAttribute('aria-describedby'); - - $(_this2.element).trigger(_this2.constructor.Event.HIDDEN); - - if (_this2._popper !== null) { - _this2._popper.destroy(); - } - - if (callback) { - callback(); - } - }; - - $(this.element).trigger(hideEvent); - - if (hideEvent.isDefaultPrevented()) { - return; - } - - $(tip).removeClass(ClassName$6.SHOW); // If this is a touch-enabled device we remove the extra - // empty mouseover listeners we added for iOS support - - if ('ontouchstart' in document.documentElement) { - $(document.body).children().off('mouseover', null, $.noop); - } - - this._activeTrigger[Trigger.CLICK] = false; - this._activeTrigger[Trigger.FOCUS] = false; - this._activeTrigger[Trigger.HOVER] = false; - - if ($(this.tip).hasClass(ClassName$6.FADE)) { - var transitionDuration = Util.getTransitionDurationFromElement(tip); - $(tip).one(Util.TRANSITION_END, complete).emulateTransitionEnd(transitionDuration); - } else { - complete(); - } - - this._hoverState = ''; - }; - - _proto.update = function update() { - if (this._popper !== null) { - this._popper.scheduleUpdate(); - } - } // Protected - ; - - _proto.isWithContent = function isWithContent() { - return Boolean(this.getTitle()); - }; - - _proto.addAttachmentClass = function addAttachmentClass(attachment) { - $(this.getTipElement()).addClass(CLASS_PREFIX + "-" + attachment); - }; - - _proto.getTipElement = function getTipElement() { - this.tip = this.tip || $(this.config.template)[0]; - return this.tip; - }; - - _proto.setContent = function setContent() { - var tip = this.getTipElement(); - this.setElementContent($(tip.querySelectorAll(Selector$6.TOOLTIP_INNER)), this.getTitle()); - $(tip).removeClass(ClassName$6.FADE + " " + ClassName$6.SHOW); - }; - - _proto.setElementContent = function setElementContent($element, content) { - if (typeof content === 'object' && (content.nodeType || content.jquery)) { - // Content is a DOM node or a jQuery - if (this.config.html) { - if (!$(content).parent().is($element)) { - $element.empty().append(content); - } - } else { - $element.text($(content).text()); - } - - return; - } - - if (this.config.html) { - if (this.config.sanitize) { - content = sanitizeHtml(content, this.config.whiteList, this.config.sanitizeFn); - } - - $element.html(content); - } else { - $element.text(content); - } - }; - - _proto.getTitle = function getTitle() { - var title = this.element.getAttribute('data-original-title'); - - if (!title) { - title = typeof this.config.title === 'function' ? this.config.title.call(this.element) : this.config.title; - } - - return title; - } // Private - ; - - _proto._getOffset = function _getOffset() { - var _this3 = this; - - var offset = {}; - - if (typeof this.config.offset === 'function') { - offset.fn = function (data) { - data.offsets = _objectSpread({}, data.offsets, _this3.config.offset(data.offsets, _this3.element) || {}); - return data; - }; - } else { - offset.offset = this.config.offset; - } - - return offset; - }; - - _proto._getContainer = function _getContainer() { - if (this.config.container === false) { - return document.body; - } - - if (Util.isElement(this.config.container)) { - return $(this.config.container); - } - - return $(document).find(this.config.container); - }; - - _proto._getAttachment = function _getAttachment(placement) { - return AttachmentMap$1[placement.toUpperCase()]; - }; - - _proto._setListeners = function _setListeners() { - var _this4 = this; - - var triggers = this.config.trigger.split(' '); - triggers.forEach(function (trigger) { - if (trigger === 'click') { - $(_this4.element).on(_this4.constructor.Event.CLICK, _this4.config.selector, function (event) { - return _this4.toggle(event); - }); - } else if (trigger !== Trigger.MANUAL) { - var eventIn = trigger === Trigger.HOVER ? _this4.constructor.Event.MOUSEENTER : _this4.constructor.Event.FOCUSIN; - var eventOut = trigger === Trigger.HOVER ? _this4.constructor.Event.MOUSELEAVE : _this4.constructor.Event.FOCUSOUT; - $(_this4.element).on(eventIn, _this4.config.selector, function (event) { - return _this4._enter(event); - }).on(eventOut, _this4.config.selector, function (event) { - return _this4._leave(event); - }); - } - }); - $(this.element).closest('.modal').on('hide.bs.modal', function () { - if (_this4.element) { - _this4.hide(); - } - }); - - if (this.config.selector) { - this.config = _objectSpread({}, this.config, { - trigger: 'manual', - selector: '' - }); - } else { - this._fixTitle(); - } - }; - - _proto._fixTitle = function _fixTitle() { - var titleType = typeof this.element.getAttribute('data-original-title'); - - if (this.element.getAttribute('title') || titleType !== 'string') { - this.element.setAttribute('data-original-title', this.element.getAttribute('title') || ''); - this.element.setAttribute('title', ''); - } - }; - - _proto._enter = function _enter(event, context) { - var dataKey = this.constructor.DATA_KEY; - context = context || $(event.currentTarget).data(dataKey); - - if (!context) { - context = new this.constructor(event.currentTarget, this._getDelegateConfig()); - $(event.currentTarget).data(dataKey, context); - } - - if (event) { - context._activeTrigger[event.type === 'focusin' ? Trigger.FOCUS : Trigger.HOVER] = true; - } - - if ($(context.getTipElement()).hasClass(ClassName$6.SHOW) || context._hoverState === HoverState.SHOW) { - context._hoverState = HoverState.SHOW; - return; - } - - clearTimeout(context._timeout); - context._hoverState = HoverState.SHOW; - - if (!context.config.delay || !context.config.delay.show) { - context.show(); - return; - } - - context._timeout = setTimeout(function () { - if (context._hoverState === HoverState.SHOW) { - context.show(); - } - }, context.config.delay.show); - }; - - _proto._leave = function _leave(event, context) { - var dataKey = this.constructor.DATA_KEY; - context = context || $(event.currentTarget).data(dataKey); - - if (!context) { - context = new this.constructor(event.currentTarget, this._getDelegateConfig()); - $(event.currentTarget).data(dataKey, context); - } - - if (event) { - context._activeTrigger[event.type === 'focusout' ? Trigger.FOCUS : Trigger.HOVER] = false; - } - - if (context._isWithActiveTrigger()) { - return; - } - - clearTimeout(context._timeout); - context._hoverState = HoverState.OUT; - - if (!context.config.delay || !context.config.delay.hide) { - context.hide(); - return; - } - - context._timeout = setTimeout(function () { - if (context._hoverState === HoverState.OUT) { - context.hide(); - } - }, context.config.delay.hide); - }; - - _proto._isWithActiveTrigger = function _isWithActiveTrigger() { - for (var trigger in this._activeTrigger) { - if (this._activeTrigger[trigger]) { - return true; - } - } - - return false; - }; - - _proto._getConfig = function _getConfig(config) { - var dataAttributes = $(this.element).data(); - Object.keys(dataAttributes).forEach(function (dataAttr) { - if (DISALLOWED_ATTRIBUTES.indexOf(dataAttr) !== -1) { - delete dataAttributes[dataAttr]; - } - }); - config = _objectSpread({}, this.constructor.Default, dataAttributes, typeof config === 'object' && config ? config : {}); - - if (typeof config.delay === 'number') { - config.delay = { - show: config.delay, - hide: config.delay - }; - } - - if (typeof config.title === 'number') { - config.title = config.title.toString(); - } - - if (typeof config.content === 'number') { - config.content = config.content.toString(); - } - - Util.typeCheckConfig(NAME$6, config, this.constructor.DefaultType); - - if (config.sanitize) { - config.template = sanitizeHtml(config.template, config.whiteList, config.sanitizeFn); - } - - return config; - }; - - _proto._getDelegateConfig = function _getDelegateConfig() { - var config = {}; - - if (this.config) { - for (var key in this.config) { - if (this.constructor.Default[key] !== this.config[key]) { - config[key] = this.config[key]; - } - } - } - - return config; - }; - - _proto._cleanTipClass = function _cleanTipClass() { - var $tip = $(this.getTipElement()); - var tabClass = $tip.attr('class').match(BSCLS_PREFIX_REGEX); - - if (tabClass !== null && tabClass.length) { - $tip.removeClass(tabClass.join('')); - } - }; - - _proto._handlePopperPlacementChange = function _handlePopperPlacementChange(popperData) { - var popperInstance = popperData.instance; - this.tip = popperInstance.popper; - - this._cleanTipClass(); - - this.addAttachmentClass(this._getAttachment(popperData.placement)); - }; - - _proto._fixTransition = function _fixTransition() { - var tip = this.getTipElement(); - var initConfigAnimation = this.config.animation; - - if (tip.getAttribute('x-placement') !== null) { - return; - } - - $(tip).removeClass(ClassName$6.FADE); - this.config.animation = false; - this.hide(); - this.show(); - this.config.animation = initConfigAnimation; - } // Static - ; - - Tooltip._jQueryInterface = function _jQueryInterface(config) { - return this.each(function () { - var data = $(this).data(DATA_KEY$6); - - var _config = typeof config === 'object' && config; - - if (!data && /dispose|hide/.test(config)) { - return; - } - - if (!data) { - data = new Tooltip(this, _config); - $(this).data(DATA_KEY$6, data); - } - - if (typeof config === 'string') { - if (typeof data[config] === 'undefined') { - throw new TypeError("No method named \"" + config + "\""); - } - - data[config](); - } - }); - }; - - _createClass(Tooltip, null, [{ - key: "VERSION", - get: function get() { - return VERSION$6; - } - }, { - key: "Default", - get: function get() { - return Default$4; - } - }, { - key: "NAME", - get: function get() { - return NAME$6; - } - }, { - key: "DATA_KEY", - get: function get() { - return DATA_KEY$6; - } - }, { - key: "Event", - get: function get() { - return Event$6; - } - }, { - key: "EVENT_KEY", - get: function get() { - return EVENT_KEY$6; - } - }, { - key: "DefaultType", - get: function get() { - return DefaultType$4; - } - }]); - - return Tooltip; - }(); - /** - * ------------------------------------------------------------------------ - * jQuery - * ------------------------------------------------------------------------ - */ - - - $.fn[NAME$6] = Tooltip._jQueryInterface; - $.fn[NAME$6].Constructor = Tooltip; - - $.fn[NAME$6].noConflict = function () { - $.fn[NAME$6] = JQUERY_NO_CONFLICT$6; - return Tooltip._jQueryInterface; - }; - - /** - * ------------------------------------------------------------------------ - * Constants - * ------------------------------------------------------------------------ - */ - - var NAME$7 = 'popover'; - var VERSION$7 = '4.3.1'; - var DATA_KEY$7 = 'bs.popover'; - var EVENT_KEY$7 = "." + DATA_KEY$7; - var JQUERY_NO_CONFLICT$7 = $.fn[NAME$7]; - var CLASS_PREFIX$1 = 'bs-popover'; - var BSCLS_PREFIX_REGEX$1 = new RegExp("(^|\\s)" + CLASS_PREFIX$1 + "\\S+", 'g'); - - var Default$5 = _objectSpread({}, Tooltip.Default, { - placement: 'right', - trigger: 'click', - content: '', - template: '' - }); - - var DefaultType$5 = _objectSpread({}, Tooltip.DefaultType, { - content: '(string|element|function)' - }); - - var ClassName$7 = { - FADE: 'fade', - SHOW: 'show' - }; - var Selector$7 = { - TITLE: '.popover-header', - CONTENT: '.popover-body' - }; - var Event$7 = { - HIDE: "hide" + EVENT_KEY$7, - HIDDEN: "hidden" + EVENT_KEY$7, - SHOW: "show" + EVENT_KEY$7, - SHOWN: "shown" + EVENT_KEY$7, - INSERTED: "inserted" + EVENT_KEY$7, - CLICK: "click" + EVENT_KEY$7, - FOCUSIN: "focusin" + EVENT_KEY$7, - FOCUSOUT: "focusout" + EVENT_KEY$7, - MOUSEENTER: "mouseenter" + EVENT_KEY$7, - MOUSELEAVE: "mouseleave" + EVENT_KEY$7 - /** - * ------------------------------------------------------------------------ - * Class Definition - * ------------------------------------------------------------------------ - */ - - }; - - var Popover = - /*#__PURE__*/ - function (_Tooltip) { - _inheritsLoose(Popover, _Tooltip); - - function Popover() { - return _Tooltip.apply(this, arguments) || this; - } - - var _proto = Popover.prototype; - - // Overrides - _proto.isWithContent = function isWithContent() { - return this.getTitle() || this._getContent(); - }; - - _proto.addAttachmentClass = function addAttachmentClass(attachment) { - $(this.getTipElement()).addClass(CLASS_PREFIX$1 + "-" + attachment); - }; - - _proto.getTipElement = function getTipElement() { - this.tip = this.tip || $(this.config.template)[0]; - return this.tip; - }; - - _proto.setContent = function setContent() { - var $tip = $(this.getTipElement()); // We use append for html objects to maintain js events - - this.setElementContent($tip.find(Selector$7.TITLE), this.getTitle()); - - var content = this._getContent(); - - if (typeof content === 'function') { - content = content.call(this.element); - } - - this.setElementContent($tip.find(Selector$7.CONTENT), content); - $tip.removeClass(ClassName$7.FADE + " " + ClassName$7.SHOW); - } // Private - ; - - _proto._getContent = function _getContent() { - return this.element.getAttribute('data-content') || this.config.content; - }; - - _proto._cleanTipClass = function _cleanTipClass() { - var $tip = $(this.getTipElement()); - var tabClass = $tip.attr('class').match(BSCLS_PREFIX_REGEX$1); - - if (tabClass !== null && tabClass.length > 0) { - $tip.removeClass(tabClass.join('')); - } - } // Static - ; - - Popover._jQueryInterface = function _jQueryInterface(config) { - return this.each(function () { - var data = $(this).data(DATA_KEY$7); - - var _config = typeof config === 'object' ? config : null; - - if (!data && /dispose|hide/.test(config)) { - return; - } - - if (!data) { - data = new Popover(this, _config); - $(this).data(DATA_KEY$7, data); - } - - if (typeof config === 'string') { - if (typeof data[config] === 'undefined') { - throw new TypeError("No method named \"" + config + "\""); - } - - data[config](); - } - }); - }; - - _createClass(Popover, null, [{ - key: "VERSION", - // Getters - get: function get() { - return VERSION$7; - } - }, { - key: "Default", - get: function get() { - return Default$5; - } - }, { - key: "NAME", - get: function get() { - return NAME$7; - } - }, { - key: "DATA_KEY", - get: function get() { - return DATA_KEY$7; - } - }, { - key: "Event", - get: function get() { - return Event$7; - } - }, { - key: "EVENT_KEY", - get: function get() { - return EVENT_KEY$7; - } - }, { - key: "DefaultType", - get: function get() { - return DefaultType$5; - } - }]); - - return Popover; - }(Tooltip); - /** - * ------------------------------------------------------------------------ - * jQuery - * ------------------------------------------------------------------------ - */ - - - $.fn[NAME$7] = Popover._jQueryInterface; - $.fn[NAME$7].Constructor = Popover; - - $.fn[NAME$7].noConflict = function () { - $.fn[NAME$7] = JQUERY_NO_CONFLICT$7; - return Popover._jQueryInterface; - }; - - /** - * ------------------------------------------------------------------------ - * Constants - * ------------------------------------------------------------------------ - */ - - var NAME$8 = 'scrollspy'; - var VERSION$8 = '4.3.1'; - var DATA_KEY$8 = 'bs.scrollspy'; - var EVENT_KEY$8 = "." + DATA_KEY$8; - var DATA_API_KEY$6 = '.data-api'; - var JQUERY_NO_CONFLICT$8 = $.fn[NAME$8]; - var Default$6 = { - offset: 10, - method: 'auto', - target: '' - }; - var DefaultType$6 = { - offset: 'number', - method: 'string', - target: '(string|element)' - }; - var Event$8 = { - ACTIVATE: "activate" + EVENT_KEY$8, - SCROLL: "scroll" + EVENT_KEY$8, - LOAD_DATA_API: "load" + EVENT_KEY$8 + DATA_API_KEY$6 - }; - var ClassName$8 = { - DROPDOWN_ITEM: 'dropdown-item', - DROPDOWN_MENU: 'dropdown-menu', - ACTIVE: 'active' - }; - var Selector$8 = { - DATA_SPY: '[data-spy="scroll"]', - ACTIVE: '.active', - NAV_LIST_GROUP: '.nav, .list-group', - NAV_LINKS: '.nav-link', - NAV_ITEMS: '.nav-item', - LIST_ITEMS: '.list-group-item', - DROPDOWN: '.dropdown', - DROPDOWN_ITEMS: '.dropdown-item', - DROPDOWN_TOGGLE: '.dropdown-toggle' - }; - var OffsetMethod = { - OFFSET: 'offset', - POSITION: 'position' - /** - * ------------------------------------------------------------------------ - * Class Definition - * ------------------------------------------------------------------------ - */ - - }; - - var ScrollSpy = - /*#__PURE__*/ - function () { - function ScrollSpy(element, config) { - var _this = this; - - this._element = element; - this._scrollElement = element.tagName === 'BODY' ? window : element; - this._config = this._getConfig(config); - this._selector = this._config.target + " " + Selector$8.NAV_LINKS + "," + (this._config.target + " " + Selector$8.LIST_ITEMS + ",") + (this._config.target + " " + Selector$8.DROPDOWN_ITEMS); - this._offsets = []; - this._targets = []; - this._activeTarget = null; - this._scrollHeight = 0; - $(this._scrollElement).on(Event$8.SCROLL, function (event) { - return _this._process(event); - }); - this.refresh(); - - this._process(); - } // Getters - - - var _proto = ScrollSpy.prototype; - - // Public - _proto.refresh = function refresh() { - var _this2 = this; - - var autoMethod = this._scrollElement === this._scrollElement.window ? OffsetMethod.OFFSET : OffsetMethod.POSITION; - var offsetMethod = this._config.method === 'auto' ? autoMethod : this._config.method; - var offsetBase = offsetMethod === OffsetMethod.POSITION ? this._getScrollTop() : 0; - this._offsets = []; - this._targets = []; - this._scrollHeight = this._getScrollHeight(); - var targets = [].slice.call(document.querySelectorAll(this._selector)); - targets.map(function (element) { - var target; - var targetSelector = Util.getSelectorFromElement(element); - - if (targetSelector) { - target = document.querySelector(targetSelector); - } - - if (target) { - var targetBCR = target.getBoundingClientRect(); - - if (targetBCR.width || targetBCR.height) { - // TODO (fat): remove sketch reliance on jQuery position/offset - return [$(target)[offsetMethod]().top + offsetBase, targetSelector]; - } - } - - return null; - }).filter(function (item) { - return item; - }).sort(function (a, b) { - return a[0] - b[0]; - }).forEach(function (item) { - _this2._offsets.push(item[0]); - - _this2._targets.push(item[1]); - }); - }; - - _proto.dispose = function dispose() { - $.removeData(this._element, DATA_KEY$8); - $(this._scrollElement).off(EVENT_KEY$8); - this._element = null; - this._scrollElement = null; - this._config = null; - this._selector = null; - this._offsets = null; - this._targets = null; - this._activeTarget = null; - this._scrollHeight = null; - } // Private - ; - - _proto._getConfig = function _getConfig(config) { - config = _objectSpread({}, Default$6, typeof config === 'object' && config ? config : {}); - - if (typeof config.target !== 'string') { - var id = $(config.target).attr('id'); - - if (!id) { - id = Util.getUID(NAME$8); - $(config.target).attr('id', id); - } - - config.target = "#" + id; - } - - Util.typeCheckConfig(NAME$8, config, DefaultType$6); - return config; - }; - - _proto._getScrollTop = function _getScrollTop() { - return this._scrollElement === window ? this._scrollElement.pageYOffset : this._scrollElement.scrollTop; - }; - - _proto._getScrollHeight = function _getScrollHeight() { - return this._scrollElement.scrollHeight || Math.max(document.body.scrollHeight, document.documentElement.scrollHeight); - }; - - _proto._getOffsetHeight = function _getOffsetHeight() { - return this._scrollElement === window ? window.innerHeight : this._scrollElement.getBoundingClientRect().height; - }; - - _proto._process = function _process() { - var scrollTop = this._getScrollTop() + this._config.offset; - - var scrollHeight = this._getScrollHeight(); - - var maxScroll = this._config.offset + scrollHeight - this._getOffsetHeight(); - - if (this._scrollHeight !== scrollHeight) { - this.refresh(); - } - - if (scrollTop >= maxScroll) { - var target = this._targets[this._targets.length - 1]; - - if (this._activeTarget !== target) { - this._activate(target); - } - - return; - } - - if (this._activeTarget && scrollTop < this._offsets[0] && this._offsets[0] > 0) { - this._activeTarget = null; - - this._clear(); - - return; - } - - var offsetLength = this._offsets.length; - - for (var i = offsetLength; i--;) { - var isActiveTarget = this._activeTarget !== this._targets[i] && scrollTop >= this._offsets[i] && (typeof this._offsets[i + 1] === 'undefined' || scrollTop < this._offsets[i + 1]); - - if (isActiveTarget) { - this._activate(this._targets[i]); - } - } - }; - - _proto._activate = function _activate(target) { - this._activeTarget = target; - - this._clear(); - - var queries = this._selector.split(',').map(function (selector) { - return selector + "[data-target=\"" + target + "\"]," + selector + "[href=\"" + target + "\"]"; - }); - - var $link = $([].slice.call(document.querySelectorAll(queries.join(',')))); - - if ($link.hasClass(ClassName$8.DROPDOWN_ITEM)) { - $link.closest(Selector$8.DROPDOWN).find(Selector$8.DROPDOWN_TOGGLE).addClass(ClassName$8.ACTIVE); - $link.addClass(ClassName$8.ACTIVE); - } else { - // Set triggered link as active - $link.addClass(ClassName$8.ACTIVE); // Set triggered links parents as active - // With both