version-0.1 (#1)
Squash and merge of version-0.1 Co-authored-by: James Wampler <james@wamp.dev> Co-committed-by: James Wampler <james@wamp.dev>
This commit was merged in pull request #1.
This commit is contained in:
0
.editorconfig
Normal file → Executable file
0
.editorconfig
Normal file → Executable file
0
.gitignore
vendored
Normal file → Executable file
0
.gitignore
vendored
Normal file → Executable file
0
.vscode/settings.json
vendored
Normal file → Executable file
0
.vscode/settings.json
vendored
Normal file → Executable file
49
CLAUDE.md
Normal file → Executable file
49
CLAUDE.md
Normal file → Executable file
@@ -1,44 +1,49 @@
|
|||||||
# CLAUDE.md
|
# CLAUDE.md
|
||||||
|
|
||||||
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
|
Guidance for Claude Code (claude.ai/code) when working in this repo.
|
||||||
|
|
||||||
## Project
|
## Project
|
||||||
|
|
||||||
MicCheck is an open source project written in asp.net, c#, typescript and VueJS that manages feature flags, their projects, and their environments.
|
MicCheck: open source. asp.net, c#, typescript, VueJS. Manages feature flags, projects, environments.
|
||||||
|
|
||||||
## Planned Structure
|
## Planned Structure
|
||||||
|
|
||||||
- `src/admin/` — administrative components in VueJS
|
- `src/admin/` — VueJS admin components
|
||||||
- `src/api/` - api and restful endpoints in .NET
|
- `src/api/` - .NET API + REST endpoints
|
||||||
- `tests/` — test suite
|
- `tests/` — test suite
|
||||||
- `docs/` — documentation
|
- `docs/` — documentation
|
||||||
|
|
||||||
## Best Practices
|
## Best Practices
|
||||||
|
|
||||||
- Ensure all projects are using the latest LTS version of .NET as well as the latest supported nuget packages for that .NET version
|
- Use latest LTS .NET + latest supported nuget packages for that version
|
||||||
- Ensure that langVersion is set to latest in all csproj files and nullable is enabled
|
- Set `langVersion` to latest in all csproj files; enable nullable
|
||||||
- Code in all projects should be organized by feature or area instead of type. (e.g. a features namespace with all feature related code in it or in child namespaces of it)
|
- Organize code by feature/area, not type (e.g. `features` namespace)
|
||||||
- All new feature requests should include corresponding unit tests that cover as much of the logic as possible.
|
- New features need unit tests covering as much logic as possible
|
||||||
- Any file modified should be evaluated for potential test cases and missing coverage areas.
|
- Any modified file: evaluate for missing test coverage
|
||||||
|
|
||||||
# Coding
|
# Coding
|
||||||
- Use descriptive names for all classes and method created. Avoid generic names like Provider, Manager, Helper
|
- Descriptive names for all classes/methods. No generic names: Provider, Manager, Helper
|
||||||
- Coding should match formating and style rules in the .editorconfig file
|
- Match formatting/style from `.editorconfig`
|
||||||
|
- Wrap lines at 220 characters, leave single line if fewer
|
||||||
|
- Place interfaces that are implemented by a single class at the bottom of the class file. An interface with multiple implementations of an interface should be in a seperate file.
|
||||||
|
- Do not use tuples for return types. Prefer records or classes for multiple values
|
||||||
|
- Do not use `sealed` on classes-
|
||||||
|
- Use `record` for data objects, `class` for objects with behavior. Avoid mutable state where possible.
|
||||||
|
|
||||||
## Testing
|
## Testing
|
||||||
- Write unit tests in a BDD style, testing as much code end-to-end as possible without without touching external resources like databases or file systems (e.g. WhenAUserDoesSomething_ThenAThingAppears)
|
- BDD-style unit tests, end-to-end as possible, no external resources (DB, filesystem). e.g. `WhenAUserDoesSomething_ThenAThingAppears`
|
||||||
- Mock any external dependencies using Moq.
|
- Mock external deps with Moq
|
||||||
- Do not name any mocked objects with the word Mock in them
|
- New features need unit tests covering as much logic as possible
|
||||||
- Do not include any Arrange / Act / Assert comments in the code
|
- Any modified file: evaluate for missing test coverage-
|
||||||
|
- No "Mock" in mocked object names
|
||||||
|
- No Arrange/Act/Assert comments
|
||||||
|
|
||||||
## Claude
|
## Claude
|
||||||
- Create all plans as .md file located in the `docs/` folder. Admin in `docs/admin/` and API in `docs/api/`
|
- Plans = `.md` files in `docs/`. Admin → `docs/admin/`, API → `docs/api/`
|
||||||
- Divide up large plans into discrete chucks of functionality so each can be built and committed independently.
|
- Split large plans into discrete chunks — each buildable + committable independently
|
||||||
- When generating a plan from a .md file in /docs/ save the plan in the same folder with the same filename minus the .md extention, but with a _plan.md at the end
|
- Plan generated from `docs/<name>.md` → save as `docs/<name>_plan.md`
|
||||||
- When implementing a plan from a .md file in /docs/ save the summary of the plan in the same folder with the same filename minus the .md extention, but with a _output.md at the end
|
- Plan implemented from `docs/<name>.md` → save summary as `docs/<name>_output.md`
|
||||||
|
|
||||||
|
|
||||||
## Stack
|
## Stack
|
||||||
|
|
||||||
The `.gitignore` is configured for a .NET/Visual Studio project (C#, NuGet, MSBuild). If this changes, update this file accordingly.
|
`.gitignore` configured for .NET/Visual Studio (C#, NuGet, MSBuild). Update if stack changes.
|
||||||
44
CLAUDE.original.md
Executable file
44
CLAUDE.original.md
Executable file
@@ -0,0 +1,44 @@
|
|||||||
|
# CLAUDE.md
|
||||||
|
|
||||||
|
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
|
||||||
|
|
||||||
|
## Project
|
||||||
|
|
||||||
|
MicCheck is an open source project written in asp.net, c#, typescript and VueJS that manages feature flags, their projects, and their environments.
|
||||||
|
|
||||||
|
## Planned Structure
|
||||||
|
|
||||||
|
- `src/admin/` — administrative components in VueJS
|
||||||
|
- `src/api/` - api and restful endpoints in .NET
|
||||||
|
- `tests/` — test suite
|
||||||
|
- `docs/` — documentation
|
||||||
|
|
||||||
|
## Best Practices
|
||||||
|
|
||||||
|
- Ensure all projects are using the latest LTS version of .NET as well as the latest supported nuget packages for that .NET version
|
||||||
|
- Ensure that langVersion is set to latest in all csproj files and nullable is enabled
|
||||||
|
- Code in all projects should be organized by feature or area instead of type. (e.g. a features namespace with all feature related code in it or in child namespaces of it)
|
||||||
|
- All new feature requests should include corresponding unit tests that cover as much of the logic as possible.
|
||||||
|
- Any file modified should be evaluated for potential test cases and missing coverage areas.
|
||||||
|
|
||||||
|
# Coding
|
||||||
|
- Use descriptive names for all classes and method created. Avoid generic names like Provider, Manager, Helper
|
||||||
|
- Coding should match formating and style rules in the .editorconfig file
|
||||||
|
|
||||||
|
## Testing
|
||||||
|
- Write unit tests in a BDD style, testing as much code end-to-end as possible without without touching external resources like databases or file systems (e.g. WhenAUserDoesSomething_ThenAThingAppears)
|
||||||
|
- Mock any external dependencies using Moq.
|
||||||
|
- Do not name any mocked objects with the word Mock in them
|
||||||
|
- Do not include any Arrange / Act / Assert comments in the code
|
||||||
|
|
||||||
|
|
||||||
|
## Claude
|
||||||
|
- Create all plans as .md file located in the `docs/` folder. Admin in `docs/admin/` and API in `docs/api/`
|
||||||
|
- Divide up large plans into discrete chucks of functionality so each can be built and committed independently.
|
||||||
|
- When generating a plan from a .md file in /docs/ save the plan in the same folder with the same filename minus the .md extention, but with a _plan.md at the end
|
||||||
|
- When implementing a plan from a .md file in /docs/ save the summary of the plan in the same folder with the same filename minus the .md extention, but with a _output.md at the end
|
||||||
|
|
||||||
|
|
||||||
|
## Stack
|
||||||
|
|
||||||
|
The `.gitignore` is configured for a .NET/Visual Studio project (C#, NuGet, MSBuild). If this changes, update this file accordingly.
|
||||||
21
LICENSE
Normal file
21
LICENSE
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
MIT License
|
||||||
|
|
||||||
|
Copyright (c) 2026 James Wampler
|
||||||
|
|
||||||
|
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.
|
||||||
14
MicCheck.slnx
Normal file → Executable file
14
MicCheck.slnx
Normal file → Executable file
@@ -1,8 +1,22 @@
|
|||||||
<Solution>
|
<Solution>
|
||||||
|
<Folder Name="/Solution Items/">
|
||||||
|
<File Path=".editorconfig" />
|
||||||
|
<File Path=".gitignore" />
|
||||||
|
<File Path="CLAUDE.md" />
|
||||||
|
<File Path="docker-compose.yml" />
|
||||||
|
<File Path="readme.md" />
|
||||||
|
</Folder>
|
||||||
<Folder Name="/src/">
|
<Folder Name="/src/">
|
||||||
|
<Project Path="src/admin/Admin.esproj">
|
||||||
|
<Build />
|
||||||
|
<Deploy />
|
||||||
|
</Project>
|
||||||
<Project Path="src/api/MicCheck.Api/MicCheck.Api.csproj" />
|
<Project Path="src/api/MicCheck.Api/MicCheck.Api.csproj" />
|
||||||
|
<Project Path="src/MicCheck.AppHost/MicCheck.AppHost.csproj" />
|
||||||
|
<Project Path="src/MicCheck.ServiceDefaults/MicCheck.ServiceDefaults.csproj" />
|
||||||
</Folder>
|
</Folder>
|
||||||
<Folder Name="/tests/">
|
<Folder Name="/tests/">
|
||||||
<Project Path="tests/api/MicCheck.Api.Tests.Unit/MicCheck.Api.Tests.Unit.csproj" />
|
<Project Path="tests/api/MicCheck.Api.Tests.Unit/MicCheck.Api.Tests.Unit.csproj" />
|
||||||
|
<Project Path="tests/api/MicCheck.Api.Tests.Integration/MicCheck.Api.Tests.Integration.csproj" />
|
||||||
</Folder>
|
</Folder>
|
||||||
</Solution>
|
</Solution>
|
||||||
|
|||||||
0
docker-compose.yml
Normal file → Executable file
0
docker-compose.yml
Normal file → Executable file
0
docs/admin/00-New-Website-output.md
Normal file → Executable file
0
docs/admin/00-New-Website-output.md
Normal file → Executable file
0
docs/admin/00-New-Website.md
Normal file → Executable file
0
docs/admin/00-New-Website.md
Normal file → Executable file
0
docs/admin/01-admin-site_plan.md
Normal file → Executable file
0
docs/admin/01-admin-site_plan.md
Normal file → Executable file
0
docs/api/00 - new-aspnet-project.md
Normal file → Executable file
0
docs/api/00 - new-aspnet-project.md
Normal file → Executable file
0
docs/api/00-output.md
Normal file → Executable file
0
docs/api/00-output.md
Normal file → Executable file
0
docs/api/01_project_setup.md
Normal file → Executable file
0
docs/api/01_project_setup.md
Normal file → Executable file
0
docs/api/01_project_setup_output.md
Normal file → Executable file
0
docs/api/01_project_setup_output.md
Normal file → Executable file
0
docs/api/02_core_domain_models.md
Normal file → Executable file
0
docs/api/02_core_domain_models.md
Normal file → Executable file
0
docs/api/02_core_domain_models_output.md
Normal file → Executable file
0
docs/api/02_core_domain_models_output.md
Normal file → Executable file
0
docs/api/03_database_and_repositories.md
Normal file → Executable file
0
docs/api/03_database_and_repositories.md
Normal file → Executable file
0
docs/api/03_database_and_repositories_output.md
Normal file → Executable file
0
docs/api/03_database_and_repositories_output.md
Normal file → Executable file
0
docs/api/04_authentication_and_authorization.md
Normal file → Executable file
0
docs/api/04_authentication_and_authorization.md
Normal file → Executable file
0
docs/api/04_authentication_and_authorization_output.md
Normal file → Executable file
0
docs/api/04_authentication_and_authorization_output.md
Normal file → Executable file
0
docs/api/05_flags_api.md
Normal file → Executable file
0
docs/api/05_flags_api.md
Normal file → Executable file
0
docs/api/05_flags_api_output.md
Normal file → Executable file
0
docs/api/05_flags_api_output.md
Normal file → Executable file
0
docs/api/06_admin_api.md
Normal file → Executable file
0
docs/api/06_admin_api.md
Normal file → Executable file
0
docs/api/06_admin_api_output.md
Normal file → Executable file
0
docs/api/06_admin_api_output.md
Normal file → Executable file
0
docs/api/07_audit_and_webhooks.md
Normal file → Executable file
0
docs/api/07_audit_and_webhooks.md
Normal file → Executable file
0
docs/api/07_audit_and_webhooks_output.md
Normal file → Executable file
0
docs/api/07_audit_and_webhooks_output.md
Normal file → Executable file
0
docs/api/08_testing_strategy.md
Normal file → Executable file
0
docs/api/08_testing_strategy.md
Normal file → Executable file
0
dotnet-install.sh
vendored
Normal file → Executable file
0
dotnet-install.sh
vendored
Normal file → Executable file
0
dotnet-tools.json
Normal file → Executable file
0
dotnet-tools.json
Normal file → Executable file
42
readme.md
Normal file → Executable file
42
readme.md
Normal file → Executable file
@@ -0,0 +1,42 @@
|
|||||||
|
# MicCheck
|
||||||
|
|
||||||
|
Open source feature flag management platform. Manage projects, environments, feature flags, segments, and identities across your apps.
|
||||||
|
|
||||||
|
Built with .NET (API) and Vue.js + Vuetify (admin UI).
|
||||||
|
|
||||||
|
## Structure
|
||||||
|
|
||||||
|
```
|
||||||
|
src/
|
||||||
|
api/MicCheck.Api/ .NET API — REST endpoints, organized by feature (Features, Projects, Environments,
|
||||||
|
Segments, Identities, Organizations, Webhooks, Audit, Users)
|
||||||
|
admin/ Vue.js + Vuetify admin SPA
|
||||||
|
MicCheck.AppHost/ .NET Aspire orchestration host for local dev
|
||||||
|
MicCheck.ServiceDefaults/ Shared .NET Aspire service defaults (telemetry, health checks)
|
||||||
|
tests/
|
||||||
|
api/MicCheck.Api.Tests.Unit/ Unit tests
|
||||||
|
api/MicCheck.Api.Tests.Integration/ Integration tests
|
||||||
|
docs/
|
||||||
|
admin/ Admin implementation plans/output docs
|
||||||
|
api/ API implementation plans/output docs
|
||||||
|
```
|
||||||
|
|
||||||
|
Code in the API is organized by feature area (e.g. `Features`, `Segments`, `Identities`) rather than by technical layer.
|
||||||
|
|
||||||
|
## Running locally
|
||||||
|
|
||||||
|
`docker-compose.yml` provides supporting services. `MicCheck.AppHost` (.NET Aspire) orchestrates the API and admin app for local development.
|
||||||
|
|
||||||
|
```sh
|
||||||
|
./dev-build.sh
|
||||||
|
```
|
||||||
|
|
||||||
|
## Testing
|
||||||
|
|
||||||
|
```sh
|
||||||
|
dotnet test
|
||||||
|
```
|
||||||
|
|
||||||
|
## License
|
||||||
|
|
||||||
|
MIT — see [LICENSE](LICENSE).
|
||||||
|
|||||||
14
src/MicCheck.AppHost/AppHost.cs
Executable file
14
src/MicCheck.AppHost/AppHost.cs
Executable file
@@ -0,0 +1,14 @@
|
|||||||
|
var builder = DistributedApplication.CreateBuilder(args);
|
||||||
|
|
||||||
|
var postgres = builder.AddPostgres("postgres").WithDataVolume("miccheck-pgdata").WithPgAdmin();
|
||||||
|
|
||||||
|
var miccheckDb = postgres.AddDatabase("miccheck");
|
||||||
|
|
||||||
|
var api = builder.AddProject<Projects.MicCheck_Api>("api").WithReference(miccheckDb).WaitFor(miccheckDb);
|
||||||
|
|
||||||
|
builder.AddViteApp("admin", "../admin", "serve")
|
||||||
|
.WithReference(api)
|
||||||
|
.WaitFor(api)
|
||||||
|
.WithExternalHttpEndpoints();
|
||||||
|
|
||||||
|
builder.Build().Run();
|
||||||
23
src/MicCheck.AppHost/MicCheck.AppHost.csproj
Executable file
23
src/MicCheck.AppHost/MicCheck.AppHost.csproj
Executable file
@@ -0,0 +1,23 @@
|
|||||||
|
<Project Sdk="Aspire.AppHost.Sdk/13.4.0">
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<ProjectReference Include="..\api\MicCheck.Api\MicCheck.Api.csproj" />
|
||||||
|
<ProjectReference Include="..\admin\Admin.esproj" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<PackageReference Include="Aspire.Hosting.JavaScript" Version="13.4.2" />
|
||||||
|
<PackageReference Include="Aspire.Hosting.PostgreSQL" Version="13.4.0" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<OutputType>Exe</OutputType>
|
||||||
|
<TargetFramework>net10.0</TargetFramework>
|
||||||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
<LangVersion>latest</LangVersion>
|
||||||
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
||||||
|
<UserSecretsId>d10a4485-2ac0-4ba7-bda5-8eb63e417567</UserSecretsId>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
</Project>
|
||||||
29
src/MicCheck.AppHost/Properties/launchSettings.json
Executable file
29
src/MicCheck.AppHost/Properties/launchSettings.json
Executable file
@@ -0,0 +1,29 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://json.schemastore.org/launchsettings.json",
|
||||||
|
"profiles": {
|
||||||
|
"https": {
|
||||||
|
"commandName": "Project",
|
||||||
|
"dotnetRunMessages": true,
|
||||||
|
"launchBrowser": true,
|
||||||
|
"applicationUrl": "https://localhost:17244;http://localhost:15050",
|
||||||
|
"environmentVariables": {
|
||||||
|
"ASPNETCORE_ENVIRONMENT": "Development",
|
||||||
|
"DOTNET_ENVIRONMENT": "Development",
|
||||||
|
"ASPIRE_DASHBOARD_OTLP_ENDPOINT_URL": "https://localhost:21229",
|
||||||
|
"ASPIRE_RESOURCE_SERVICE_ENDPOINT_URL": "https://localhost:22051"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"http": {
|
||||||
|
"commandName": "Project",
|
||||||
|
"dotnetRunMessages": true,
|
||||||
|
"launchBrowser": true,
|
||||||
|
"applicationUrl": "http://localhost:15050",
|
||||||
|
"environmentVariables": {
|
||||||
|
"ASPNETCORE_ENVIRONMENT": "Development",
|
||||||
|
"DOTNET_ENVIRONMENT": "Development",
|
||||||
|
"ASPIRE_DASHBOARD_OTLP_ENDPOINT_URL": "http://localhost:19033",
|
||||||
|
"ASPIRE_RESOURCE_SERVICE_ENDPOINT_URL": "http://localhost:20209"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
16
src/MicCheck.AppHost/appsettings.Development.json
Executable file
16
src/MicCheck.AppHost/appsettings.Development.json
Executable file
@@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"Logging": {
|
||||||
|
"LogLevel": {
|
||||||
|
"Default": "Information",
|
||||||
|
"Microsoft.AspNetCore": "Warning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Dashboard": {
|
||||||
|
"Frontend": {
|
||||||
|
"AuthMode": "Unsecured"
|
||||||
|
},
|
||||||
|
"Otlp": {
|
||||||
|
"AuthMode": "Unsecured"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
9
src/MicCheck.AppHost/appsettings.json
Executable file
9
src/MicCheck.AppHost/appsettings.json
Executable file
@@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"Logging": {
|
||||||
|
"LogLevel": {
|
||||||
|
"Default": "Information",
|
||||||
|
"Microsoft.AspNetCore": "Warning",
|
||||||
|
"Aspire.Hosting.Dcp": "Warning"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
5
src/MicCheck.AppHost/aspire.config.json
Executable file
5
src/MicCheck.AppHost/aspire.config.json
Executable file
@@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"appHost": {
|
||||||
|
"path": "MicCheck.AppHost.csproj"
|
||||||
|
}
|
||||||
|
}
|
||||||
127
src/MicCheck.ServiceDefaults/Extensions.cs
Executable file
127
src/MicCheck.ServiceDefaults/Extensions.cs
Executable file
@@ -0,0 +1,127 @@
|
|||||||
|
using Microsoft.AspNetCore.Builder;
|
||||||
|
using Microsoft.AspNetCore.Diagnostics.HealthChecks;
|
||||||
|
using Microsoft.Extensions.DependencyInjection;
|
||||||
|
using Microsoft.Extensions.Diagnostics.HealthChecks;
|
||||||
|
using Microsoft.Extensions.Logging;
|
||||||
|
using Microsoft.Extensions.ServiceDiscovery;
|
||||||
|
using OpenTelemetry;
|
||||||
|
using OpenTelemetry.Metrics;
|
||||||
|
using OpenTelemetry.Trace;
|
||||||
|
|
||||||
|
namespace Microsoft.Extensions.Hosting;
|
||||||
|
|
||||||
|
// Adds common Aspire services: service discovery, resilience, health checks, and OpenTelemetry.
|
||||||
|
// This project should be referenced by each service project in your solution.
|
||||||
|
// To learn more about using this project, see https://aka.ms/aspire/service-defaults
|
||||||
|
public static class Extensions
|
||||||
|
{
|
||||||
|
private const string HealthEndpointPath = "/health";
|
||||||
|
private const string AlivenessEndpointPath = "/alive";
|
||||||
|
|
||||||
|
public static TBuilder AddServiceDefaults<TBuilder>(this TBuilder builder) where TBuilder : IHostApplicationBuilder
|
||||||
|
{
|
||||||
|
builder.ConfigureOpenTelemetry();
|
||||||
|
|
||||||
|
builder.AddDefaultHealthChecks();
|
||||||
|
|
||||||
|
builder.Services.AddServiceDiscovery();
|
||||||
|
|
||||||
|
builder.Services.ConfigureHttpClientDefaults(http =>
|
||||||
|
{
|
||||||
|
// Turn on resilience by default
|
||||||
|
http.AddStandardResilienceHandler();
|
||||||
|
|
||||||
|
// Turn on service discovery by default
|
||||||
|
http.AddServiceDiscovery();
|
||||||
|
});
|
||||||
|
|
||||||
|
// Uncomment the following to restrict the allowed schemes for service discovery.
|
||||||
|
// builder.Services.Configure<ServiceDiscoveryOptions>(options =>
|
||||||
|
// {
|
||||||
|
// options.AllowedSchemes = ["https"];
|
||||||
|
// });
|
||||||
|
|
||||||
|
return builder;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static TBuilder ConfigureOpenTelemetry<TBuilder>(this TBuilder builder) where TBuilder : IHostApplicationBuilder
|
||||||
|
{
|
||||||
|
builder.Logging.AddOpenTelemetry(logging =>
|
||||||
|
{
|
||||||
|
logging.IncludeFormattedMessage = true;
|
||||||
|
logging.IncludeScopes = true;
|
||||||
|
});
|
||||||
|
|
||||||
|
builder.Services.AddOpenTelemetry()
|
||||||
|
.WithMetrics(metrics =>
|
||||||
|
{
|
||||||
|
metrics.AddAspNetCoreInstrumentation()
|
||||||
|
.AddHttpClientInstrumentation()
|
||||||
|
.AddRuntimeInstrumentation();
|
||||||
|
})
|
||||||
|
.WithTracing(tracing =>
|
||||||
|
{
|
||||||
|
tracing.AddSource(builder.Environment.ApplicationName)
|
||||||
|
.AddAspNetCoreInstrumentation(tracing =>
|
||||||
|
// Exclude health check requests from tracing
|
||||||
|
tracing.Filter = context =>
|
||||||
|
!context.Request.Path.StartsWithSegments(HealthEndpointPath)
|
||||||
|
&& !context.Request.Path.StartsWithSegments(AlivenessEndpointPath)
|
||||||
|
)
|
||||||
|
// Uncomment the following line to enable gRPC instrumentation (requires the OpenTelemetry.Instrumentation.GrpcNetClient package)
|
||||||
|
//.AddGrpcClientInstrumentation()
|
||||||
|
.AddHttpClientInstrumentation();
|
||||||
|
});
|
||||||
|
|
||||||
|
builder.AddOpenTelemetryExporters();
|
||||||
|
|
||||||
|
return builder;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static TBuilder AddOpenTelemetryExporters<TBuilder>(this TBuilder builder) where TBuilder : IHostApplicationBuilder
|
||||||
|
{
|
||||||
|
var useOtlpExporter = !string.IsNullOrWhiteSpace(builder.Configuration["OTEL_EXPORTER_OTLP_ENDPOINT"]);
|
||||||
|
|
||||||
|
if (useOtlpExporter)
|
||||||
|
{
|
||||||
|
builder.Services.AddOpenTelemetry().UseOtlpExporter();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Uncomment the following lines to enable the Azure Monitor exporter (requires the Azure.Monitor.OpenTelemetry.AspNetCore package)
|
||||||
|
//if (!string.IsNullOrEmpty(builder.Configuration["APPLICATIONINSIGHTS_CONNECTION_STRING"]))
|
||||||
|
//{
|
||||||
|
// builder.Services.AddOpenTelemetry()
|
||||||
|
// .UseAzureMonitor();
|
||||||
|
//}
|
||||||
|
|
||||||
|
return builder;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static TBuilder AddDefaultHealthChecks<TBuilder>(this TBuilder builder) where TBuilder : IHostApplicationBuilder
|
||||||
|
{
|
||||||
|
builder.Services.AddHealthChecks()
|
||||||
|
// Add a default liveness check to ensure app is responsive
|
||||||
|
.AddCheck("self", () => HealthCheckResult.Healthy(), ["live"]);
|
||||||
|
|
||||||
|
return builder;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static WebApplication MapDefaultEndpoints(this WebApplication app)
|
||||||
|
{
|
||||||
|
// Adding health checks endpoints to applications in non-development environments has security implications.
|
||||||
|
// See https://aka.ms/aspire/healthchecks for details before enabling these endpoints in non-development environments.
|
||||||
|
if (app.Environment.IsDevelopment())
|
||||||
|
{
|
||||||
|
// All health checks must pass for app to be considered ready to accept traffic after starting
|
||||||
|
app.MapHealthChecks(HealthEndpointPath);
|
||||||
|
|
||||||
|
// Only health checks tagged with the "live" tag must pass for app to be considered alive
|
||||||
|
app.MapHealthChecks(AlivenessEndpointPath, new HealthCheckOptions
|
||||||
|
{
|
||||||
|
Predicate = r => r.Tags.Contains("live")
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
return app;
|
||||||
|
}
|
||||||
|
}
|
||||||
24
src/MicCheck.ServiceDefaults/MicCheck.ServiceDefaults.csproj
Executable file
24
src/MicCheck.ServiceDefaults/MicCheck.ServiceDefaults.csproj
Executable file
@@ -0,0 +1,24 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<TargetFramework>net10.0</TargetFramework>
|
||||||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
<LangVersion>latest</LangVersion>
|
||||||
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
||||||
|
<IsAspireSharedProject>true</IsAspireSharedProject>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<FrameworkReference Include="Microsoft.AspNetCore.App" />
|
||||||
|
|
||||||
|
<PackageReference Include="Microsoft.Extensions.Http.Resilience" Version="10.6.0" />
|
||||||
|
<PackageReference Include="Microsoft.Extensions.ServiceDiscovery" Version="10.6.0" />
|
||||||
|
<PackageReference Include="OpenTelemetry.Exporter.OpenTelemetryProtocol" Version="1.15.3" />
|
||||||
|
<PackageReference Include="OpenTelemetry.Extensions.Hosting" Version="1.15.3" />
|
||||||
|
<PackageReference Include="OpenTelemetry.Instrumentation.AspNetCore" Version="1.15.2" />
|
||||||
|
<PackageReference Include="OpenTelemetry.Instrumentation.Http" Version="1.15.1" />
|
||||||
|
<PackageReference Include="OpenTelemetry.Instrumentation.Runtime" Version="1.15.1" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
</Project>
|
||||||
0
src/admin/.dockerignore
Normal file → Executable file
0
src/admin/.dockerignore
Normal file → Executable file
11
src/admin/Admin.esproj
Executable file
11
src/admin/Admin.esproj
Executable file
@@ -0,0 +1,11 @@
|
|||||||
|
<Project Sdk="Microsoft.VisualStudio.JavaScript.Sdk/1.0.2752196">
|
||||||
|
<PropertyGroup>
|
||||||
|
<StartupCommand>npm run serve</StartupCommand>
|
||||||
|
<JavaScriptTestRoot>.\</JavaScriptTestRoot>
|
||||||
|
<JavaScriptTestFramework>Jest</JavaScriptTestFramework>
|
||||||
|
<!-- Allows the build (or compile) script located on package.json to run on Build -->
|
||||||
|
<ShouldRunBuildScript>false</ShouldRunBuildScript>
|
||||||
|
<!-- Folder where production build objects will be placed -->
|
||||||
|
<BuildOutputFolder>$(MSBuildProjectDirectory)\dist</BuildOutputFolder>
|
||||||
|
</PropertyGroup>
|
||||||
|
</Project>
|
||||||
0
src/admin/Dockerfile
Normal file → Executable file
0
src/admin/Dockerfile
Normal file → Executable file
0
src/admin/babel.config.js
Normal file → Executable file
0
src/admin/babel.config.js
Normal file → Executable file
0
src/admin/index.html
Normal file → Executable file
0
src/admin/index.html
Normal file → Executable file
9
src/admin/jest.config.js
Normal file → Executable file
9
src/admin/jest.config.js
Normal file → Executable file
@@ -16,12 +16,19 @@ module.exports = {
|
|||||||
'^.+\\.[jt]sx?$': 'babel-jest',
|
'^.+\\.[jt]sx?$': 'babel-jest',
|
||||||
},
|
},
|
||||||
transformIgnorePatterns: [
|
transformIgnorePatterns: [
|
||||||
'/node_modules/(?!(vuetify)/)',
|
'/node_modules/(?!(vuetify|@vueuse|@iconify)/)',
|
||||||
],
|
],
|
||||||
moduleNameMapper: {
|
moduleNameMapper: {
|
||||||
'\\.(css|scss|sass)$': '<rootDir>/tests/__mocks__/styleMock.js',
|
'\\.(css|scss|sass)$': '<rootDir>/tests/__mocks__/styleMock.js',
|
||||||
'\\.(svg|png|jpg|jpeg|gif|webp|woff2?)$': '<rootDir>/tests/__mocks__/fileMock.js',
|
'\\.(svg|png|jpg|jpeg|gif|webp|woff2?)$': '<rootDir>/tests/__mocks__/fileMock.js',
|
||||||
'^@/(.*)$': '<rootDir>/src/$1',
|
'^@/(.*)$': '<rootDir>/src/$1',
|
||||||
|
'^@core/(.*)$': '<rootDir>/src/@core/$1',
|
||||||
|
'^@core$': '<rootDir>/src/@core',
|
||||||
|
'^@layouts/(.*)$': '<rootDir>/src/@layouts/$1',
|
||||||
|
'^@layouts$': '<rootDir>/src/@layouts',
|
||||||
|
'^@images/(.*)$': '<rootDir>/src/assets/images/$1',
|
||||||
|
'^@styles/(.*)$': '<rootDir>/src/assets/styles/$1',
|
||||||
|
'^@configured-variables$': '<rootDir>/tests/__mocks__/styleMock.js',
|
||||||
},
|
},
|
||||||
globals: {
|
globals: {
|
||||||
'vue-jest': {
|
'vue-jest': {
|
||||||
|
|||||||
0
src/admin/nginx.conf
Normal file → Executable file
0
src/admin/nginx.conf
Normal file → Executable file
4922
src/admin/package-lock.json
generated
Normal file → Executable file
4922
src/admin/package-lock.json
generated
Normal file → Executable file
File diff suppressed because it is too large
Load Diff
16
src/admin/package.json
Normal file → Executable file
16
src/admin/package.json
Normal file → Executable file
@@ -10,12 +10,19 @@
|
|||||||
"test": "jest --passWithNoTests"
|
"test": "jest --passWithNoTests"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@mdi/js": "^7.4.47",
|
"@fontsource-variable/inter": "^5.2.8",
|
||||||
|
"@iconify-json/bxl": "^1.2.0",
|
||||||
|
"@iconify-json/ri": "^1.2.0",
|
||||||
|
"@iconify/vue": "^4.1.0",
|
||||||
|
"@vueuse/core": "^11.0.0",
|
||||||
|
"apexcharts": "^5.15.0",
|
||||||
"axios": "^1.15.0",
|
"axios": "^1.15.0",
|
||||||
"pinia": "^3.0.4",
|
"pinia": "^3.0.4",
|
||||||
"vue": "^3.4.0",
|
"vue": "^3.4.0",
|
||||||
"vue-router": "^4.3.0",
|
"vue-router": "^4.3.0",
|
||||||
"vuetify": "^3.6.0"
|
"vue3-apexcharts": "^1.11.1",
|
||||||
|
"vue3-perfect-scrollbar": "^2.0.0",
|
||||||
|
"vuetify": "^3.7.5"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/core": "^7.24.0",
|
"@babel/core": "^7.24.0",
|
||||||
@@ -27,13 +34,16 @@
|
|||||||
"@vue/test-utils": "^2.4.6",
|
"@vue/test-utils": "^2.4.6",
|
||||||
"@vue/vue3-jest": "^29.2.6",
|
"@vue/vue3-jest": "^29.2.6",
|
||||||
"babel-jest": "^29.7.0",
|
"babel-jest": "^29.7.0",
|
||||||
|
"eslint": "^10.4.1",
|
||||||
"jest": "^29.7.0",
|
"jest": "^29.7.0",
|
||||||
"jest-environment-jsdom": "^29.7.0",
|
"jest-environment-jsdom": "^29.7.0",
|
||||||
"sass": "^1.77.2",
|
"sass": "^1.77.2",
|
||||||
|
"sass-embedded": "^1.77.0",
|
||||||
"ts-jest": "^29.1.4",
|
"ts-jest": "^29.1.4",
|
||||||
"typescript": "^5.4.5",
|
"typescript": "^5.4.5",
|
||||||
"vite": "^8.0.8",
|
"vite": "^8.0.8",
|
||||||
"vite-plugin-vuetify": "^2.1.3"
|
"vite-plugin-vuetify": "^2.1.3",
|
||||||
|
"vite-svg-loader": "^5.1.0"
|
||||||
},
|
},
|
||||||
"overrides": {
|
"overrides": {
|
||||||
"brace-expansion": "^5.0.5"
|
"brace-expansion": "^5.0.5"
|
||||||
|
|||||||
28
src/admin/src/@core/components/MoreBtn.vue
Executable file
28
src/admin/src/@core/components/MoreBtn.vue
Executable file
@@ -0,0 +1,28 @@
|
|||||||
|
<script lang="ts" setup>
|
||||||
|
interface Props {
|
||||||
|
menuList?: unknown[]
|
||||||
|
itemProps?: boolean
|
||||||
|
iconSize?: string
|
||||||
|
}
|
||||||
|
|
||||||
|
const props = defineProps<Props>()
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<IconBtn>
|
||||||
|
<VIcon
|
||||||
|
:size="iconSize"
|
||||||
|
icon="ri-more-2-line"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<VMenu
|
||||||
|
v-if="props.menuList"
|
||||||
|
activator="parent"
|
||||||
|
>
|
||||||
|
<VList
|
||||||
|
:items="props.menuList"
|
||||||
|
:item-props="props.itemProps"
|
||||||
|
/>
|
||||||
|
</VMenu>
|
||||||
|
</IconBtn>
|
||||||
|
</template>
|
||||||
35
src/admin/src/@core/components/ThemeSwitcher.vue
Executable file
35
src/admin/src/@core/components/ThemeSwitcher.vue
Executable file
@@ -0,0 +1,35 @@
|
|||||||
|
<script setup lang="ts">
|
||||||
|
import { watch } from 'vue';
|
||||||
|
import { useCycleList } from '@vueuse/core';
|
||||||
|
import { useTheme } from 'vuetify';
|
||||||
|
import type { ThemeSwitcherTheme } from '@layouts/types';
|
||||||
|
|
||||||
|
const props = defineProps<{
|
||||||
|
themes: ThemeSwitcherTheme[]
|
||||||
|
}>()
|
||||||
|
|
||||||
|
const { name: themeName, global: globalTheme } = useTheme()
|
||||||
|
const { state: currentThemeName, next: getNextThemeName, index: currentThemeIndex } = useCycleList(props.themes.map(t => t.name), { initialValue: themeName })
|
||||||
|
|
||||||
|
const changeTheme = () => {
|
||||||
|
globalTheme.name.value = getNextThemeName()
|
||||||
|
}
|
||||||
|
|
||||||
|
// Update icon if theme is changed from other sources
|
||||||
|
watch(() => globalTheme.name.value, val => {
|
||||||
|
currentThemeName.value = val
|
||||||
|
})
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<IconBtn @click="changeTheme">
|
||||||
|
<VIcon :icon="props.themes[currentThemeIndex].icon" />
|
||||||
|
<VTooltip
|
||||||
|
activator="parent"
|
||||||
|
open-delay="1000"
|
||||||
|
scroll-strategy="close"
|
||||||
|
>
|
||||||
|
<span class="text-capitalize">{{ currentThemeName }}</span>
|
||||||
|
</VTooltip>
|
||||||
|
</IconBtn>
|
||||||
|
</template>
|
||||||
53
src/admin/src/@core/components/cards/CardStatisticsHorizontal.vue
Executable file
53
src/admin/src/@core/components/cards/CardStatisticsHorizontal.vue
Executable file
@@ -0,0 +1,53 @@
|
|||||||
|
<script setup lang="ts">
|
||||||
|
interface Props {
|
||||||
|
title: string
|
||||||
|
color?: string
|
||||||
|
icon: string
|
||||||
|
stats: number
|
||||||
|
change: number
|
||||||
|
}
|
||||||
|
|
||||||
|
const props = withDefaults(defineProps<Props>(), {
|
||||||
|
color: 'primary',
|
||||||
|
})
|
||||||
|
|
||||||
|
const isPositive = controlledComputed(() => props.change, () => Math.sign(props.change) === 1)
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<VCard>
|
||||||
|
<VCardText class="d-flex align-center">
|
||||||
|
<VAvatar
|
||||||
|
size="44"
|
||||||
|
rounded
|
||||||
|
:color="props.color"
|
||||||
|
variant="tonal"
|
||||||
|
class="me-4"
|
||||||
|
>
|
||||||
|
<VIcon
|
||||||
|
:icon="props.icon"
|
||||||
|
size="30"
|
||||||
|
/>
|
||||||
|
</VAvatar>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<span class="text-caption">{{ props.title }}</span>
|
||||||
|
<div class="d-flex align-center flex-wrap">
|
||||||
|
<span class="text-h6 font-weight-semibold">{{ kFormatter(props.stats) }}</span>
|
||||||
|
<div
|
||||||
|
v-if="props.change"
|
||||||
|
:class="`${isPositive ? 'text-success' : 'text-error'} mt-1`"
|
||||||
|
>
|
||||||
|
<VIcon
|
||||||
|
:icon="isPositive ? 'ri-arrow-up-s-line' : 'ri-arrow-down-s-line'"
|
||||||
|
size="24"
|
||||||
|
/>
|
||||||
|
<span class="text-base">
|
||||||
|
{{ Math.abs(props.change) }}%
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</VCardText>
|
||||||
|
</VCard>
|
||||||
|
</template>
|
||||||
71
src/admin/src/@core/components/cards/CardStatisticsVertical.vue
Executable file
71
src/admin/src/@core/components/cards/CardStatisticsVertical.vue
Executable file
@@ -0,0 +1,71 @@
|
|||||||
|
<script setup lang="ts">
|
||||||
|
interface Props {
|
||||||
|
title: string
|
||||||
|
color?: string
|
||||||
|
icon: string
|
||||||
|
stats: string
|
||||||
|
change: number
|
||||||
|
subtitle: string
|
||||||
|
}
|
||||||
|
|
||||||
|
const props = withDefaults(defineProps<Props>(), {
|
||||||
|
color: 'primary',
|
||||||
|
})
|
||||||
|
|
||||||
|
const isPositive = computed(() => Math.sign(props.change) === 1)
|
||||||
|
|
||||||
|
const moreList = [
|
||||||
|
{ title: 'Share', value: 'Share' },
|
||||||
|
{ title: 'Refresh', value: 'Refresh' },
|
||||||
|
{ title: 'Update', value: 'Update' },
|
||||||
|
]
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<VCard>
|
||||||
|
<VCardText class="d-flex align-center">
|
||||||
|
<VAvatar
|
||||||
|
v-if="props.icon"
|
||||||
|
size="40"
|
||||||
|
:color="props.color"
|
||||||
|
class="elevation-2"
|
||||||
|
>
|
||||||
|
<VIcon
|
||||||
|
:icon="props.icon"
|
||||||
|
size="24"
|
||||||
|
/>
|
||||||
|
</VAvatar>
|
||||||
|
|
||||||
|
<VSpacer />
|
||||||
|
|
||||||
|
<MoreBtn
|
||||||
|
class="me-n3 mt-n1"
|
||||||
|
:menu-list="moreList"
|
||||||
|
/>
|
||||||
|
</VCardText>
|
||||||
|
|
||||||
|
<VCardText>
|
||||||
|
<h6 class="text-h6 mb-1">
|
||||||
|
{{ props.title }}
|
||||||
|
</h6>
|
||||||
|
|
||||||
|
<div
|
||||||
|
v-if="props.change"
|
||||||
|
class="d-flex align-center mb-1 flex-wrap"
|
||||||
|
>
|
||||||
|
<h4 class="text-h4 me-2">
|
||||||
|
{{ props.stats }}
|
||||||
|
</h4>
|
||||||
|
<div
|
||||||
|
:class="isPositive ? 'text-success' : 'text-error'"
|
||||||
|
class="text-body-1"
|
||||||
|
>
|
||||||
|
{{ isPositive ? `+${props.change}` : props.change }}%
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="text-body-2">
|
||||||
|
{{ props.subtitle }}
|
||||||
|
</div>
|
||||||
|
</VCardText>
|
||||||
|
</VCard>
|
||||||
|
</template>
|
||||||
65
src/admin/src/@core/components/cards/CardStatisticsWithImages.vue
Executable file
65
src/admin/src/@core/components/cards/CardStatisticsWithImages.vue
Executable file
@@ -0,0 +1,65 @@
|
|||||||
|
<script setup lang="ts">
|
||||||
|
interface Props {
|
||||||
|
title: string
|
||||||
|
subtitle: string
|
||||||
|
stats: string
|
||||||
|
change: number
|
||||||
|
image: string
|
||||||
|
color?: string
|
||||||
|
}
|
||||||
|
|
||||||
|
const props = withDefaults(defineProps<Props>(), {
|
||||||
|
color: 'primary',
|
||||||
|
})
|
||||||
|
|
||||||
|
const isPositive = controlledComputed(() => props.change, () => Math.sign(props.change) === 1)
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<VCard class="overflow-visible">
|
||||||
|
<div class="d-flex position-relative">
|
||||||
|
<VCardText>
|
||||||
|
<h6 class="text-base font-weight-semibold mb-4">
|
||||||
|
{{ props.title }}
|
||||||
|
</h6>
|
||||||
|
<div class="d-flex align-center flex-wrap mb-4">
|
||||||
|
<h5 class="text-h5 font-weight-semibold me-2">
|
||||||
|
{{ props.stats }}
|
||||||
|
</h5>
|
||||||
|
<span
|
||||||
|
class="text-caption"
|
||||||
|
:class="isPositive ? 'text-success' : 'text-error'"
|
||||||
|
>
|
||||||
|
{{ isPositive ? `+${props.change}` : props.change }}%
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<VChip
|
||||||
|
v-if="props.subtitle"
|
||||||
|
size="small"
|
||||||
|
:color="props.color"
|
||||||
|
>
|
||||||
|
{{ props.subtitle }}
|
||||||
|
</VChip>
|
||||||
|
</VCardText>
|
||||||
|
|
||||||
|
<VSpacer />
|
||||||
|
|
||||||
|
<div class="illustrator-img">
|
||||||
|
<VImg
|
||||||
|
v-if="props.image"
|
||||||
|
:src="props.image"
|
||||||
|
:width="110"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</VCard>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style lang="scss">
|
||||||
|
.illustrator-img {
|
||||||
|
position: absolute;
|
||||||
|
inset-block-end: 0;
|
||||||
|
inset-inline-end: 5%;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
191
src/admin/src/@core/scss/base/_components.scss
Executable file
191
src/admin/src/@core/scss/base/_components.scss
Executable file
@@ -0,0 +1,191 @@
|
|||||||
|
@use "mixins";
|
||||||
|
@use "@layouts/styles/placeholders";
|
||||||
|
@use "@layouts/styles/mixins" as layoutMixins;
|
||||||
|
@use "@configured-variables" as variables;
|
||||||
|
@use "@styles/variables/_vuetify.scss" as vuetify;
|
||||||
|
|
||||||
|
// 👉 Avatar group
|
||||||
|
.v-avatar-group {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
> * {
|
||||||
|
&:not(:first-child) {
|
||||||
|
margin-inline-start: -0.8rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
transition: transform 0.25s ease, box-shadow 0.15s ease;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
z-index: 2;
|
||||||
|
transform: translateY(-5px) scale(1.05);
|
||||||
|
|
||||||
|
@include mixins.elevation(3);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
> .v-avatar {
|
||||||
|
border: 2px solid rgb(var(--v-theme-surface));
|
||||||
|
transition: transform 0.15s ease;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 👉 Button outline with default color border color
|
||||||
|
.v-alert--variant-outlined,
|
||||||
|
.v-avatar--variant-outlined,
|
||||||
|
.v-btn.v-btn--variant-outlined,
|
||||||
|
.v-card--variant-outlined,
|
||||||
|
.v-chip--variant-outlined,
|
||||||
|
.v-list-item--variant-outlined {
|
||||||
|
&:not([class*="text-"]) {
|
||||||
|
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
||||||
|
}
|
||||||
|
|
||||||
|
&.text-default {
|
||||||
|
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 👉 Custom Input
|
||||||
|
.v-label.custom-input {
|
||||||
|
padding: 1rem;
|
||||||
|
border: 1px solid rgba(var(--v-border-color), var(--v-border-opacity));
|
||||||
|
opacity: 1;
|
||||||
|
white-space: normal;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
border-color: rgba(var(--v-border-color), 0.25);
|
||||||
|
}
|
||||||
|
|
||||||
|
&.active {
|
||||||
|
border-color: rgb(var(--v-theme-primary));
|
||||||
|
|
||||||
|
.v-icon {
|
||||||
|
color: rgb(var(--v-theme-primary)) !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&.custom-checkbox,
|
||||||
|
&.custom-radio {
|
||||||
|
.v-input__control {
|
||||||
|
grid-area: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 👉 Datatable
|
||||||
|
.v-data-table-footer__pagination {
|
||||||
|
@include layoutMixins.rtl {
|
||||||
|
.v-btn {
|
||||||
|
.v-icon {
|
||||||
|
transform: rotate(180deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Dialog responsive width
|
||||||
|
.v-dialog {
|
||||||
|
// dialog custom close btn
|
||||||
|
.v-dialog-close-btn {
|
||||||
|
position: absolute;
|
||||||
|
z-index: 1;
|
||||||
|
color: rgba(var(--v-theme-on-surface), var(--v-disabled-opacity)) !important;
|
||||||
|
inset-block-start: 0.5rem;
|
||||||
|
inset-inline-end: 0.5rem;
|
||||||
|
|
||||||
|
.v-btn__overlay {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.v-card {
|
||||||
|
@extend %style-scroll-bar;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 600px) {
|
||||||
|
.v-dialog {
|
||||||
|
&.v-dialog-sm,
|
||||||
|
&.v-dialog-lg,
|
||||||
|
&.v-dialog-xl {
|
||||||
|
.v-overlay__content {
|
||||||
|
inline-size: 565px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 960px) {
|
||||||
|
.v-dialog {
|
||||||
|
&.v-dialog-lg,
|
||||||
|
&.v-dialog-xl {
|
||||||
|
.v-overlay__content {
|
||||||
|
inline-size: 865px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 1264px) {
|
||||||
|
.v-dialog.v-dialog-xl {
|
||||||
|
.v-overlay__content {
|
||||||
|
inline-size: 1165px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 👉 Expansion panel
|
||||||
|
.v-expansion-panels.customized-panels {
|
||||||
|
border: 1px solid rgba(var(--v-border-color), var(--v-border-opacity));
|
||||||
|
border-radius: vuetify.$border-radius-root;
|
||||||
|
|
||||||
|
.v-expansion-panel-title {
|
||||||
|
background-color: rgb(var(--v-theme-expansion-panel-text-custom-bg));
|
||||||
|
border-block-end: 1px solid rgba(var(--v-border-color), var(--v-border-opacity));
|
||||||
|
margin-block-end: -1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.v-expansion-panel-text__wrapper {
|
||||||
|
padding: 20px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// v-tab with pill support
|
||||||
|
.v-tabs.v-tabs-pill {
|
||||||
|
.v-tab.v-btn {
|
||||||
|
border-radius: 0.25rem !important;
|
||||||
|
transition: none;
|
||||||
|
|
||||||
|
.v-tab__slider {
|
||||||
|
visibility: hidden;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// loop for all colors bg
|
||||||
|
@each $color-name in variables.$theme-colors-name {
|
||||||
|
body .v-tabs.v-tabs-pill {
|
||||||
|
.v-slide-group__content {
|
||||||
|
gap: 0.25rem;
|
||||||
|
}
|
||||||
|
.v-tab--selected.text-#{$color-name} {
|
||||||
|
background-color: rgb(var(--v-theme-#{$color-name}));
|
||||||
|
color: rgb(var(--v-theme-on-#{$color-name})) !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ℹ️ We are make even width of all v-timeline body
|
||||||
|
.v-timeline--vertical.v-timeline {
|
||||||
|
.v-timeline-item {
|
||||||
|
.v-timeline-item__body {
|
||||||
|
justify-self: stretch !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 👉 Switch
|
||||||
|
.v-switch .v-selection-control:not(.v-selection-control--dirty) .v-switch__thumb {
|
||||||
|
color: #fff !important;
|
||||||
|
}
|
||||||
16
src/admin/src/@core/scss/base/_dark.scss
Executable file
16
src/admin/src/@core/scss/base/_dark.scss
Executable file
@@ -0,0 +1,16 @@
|
|||||||
|
@use "@configured-variables" as variables;
|
||||||
|
|
||||||
|
// ————————————————————————————————————
|
||||||
|
// * ——— Perfect Scrollbar
|
||||||
|
// ————————————————————————————————————
|
||||||
|
|
||||||
|
body.v-theme--dark {
|
||||||
|
.ps__rail-y,
|
||||||
|
.ps__rail-x {
|
||||||
|
background-color: transparent !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ps__thumb-y {
|
||||||
|
background-color: variables.$plugin-ps-thumb-y-dark;
|
||||||
|
}
|
||||||
|
}
|
||||||
103
src/admin/src/@core/scss/base/_default-layout-w-vertical-nav.scss
Executable file
103
src/admin/src/@core/scss/base/_default-layout-w-vertical-nav.scss
Executable file
@@ -0,0 +1,103 @@
|
|||||||
|
@use "@configured-variables" as variables;
|
||||||
|
@use "@core/scss/base/placeholders" as *;
|
||||||
|
@use "@core/scss/template/placeholders" as *;
|
||||||
|
@use "misc";
|
||||||
|
@use "@core/scss/base/mixins";
|
||||||
|
|
||||||
|
$header: ".layout-navbar";
|
||||||
|
|
||||||
|
@if variables.$layout-vertical-nav-navbar-is-contained {
|
||||||
|
$header: ".layout-navbar .navbar-content-container";
|
||||||
|
}
|
||||||
|
|
||||||
|
.layout-wrapper.layout-nav-type-vertical {
|
||||||
|
// SECTION Layout Navbar
|
||||||
|
// 👉 Elevated navbar
|
||||||
|
@if variables.$vertical-nav-navbar-style == "elevated" {
|
||||||
|
// Add transition
|
||||||
|
#{$header} {
|
||||||
|
transition: padding 0.2s ease, background-color 0.18s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
// If navbar is contained => Add border radius to header
|
||||||
|
@if variables.$layout-vertical-nav-navbar-is-contained {
|
||||||
|
#{$header} {
|
||||||
|
border-radius: 0 0 variables.$default-layout-with-vertical-nav-navbar-footer-roundness variables.$default-layout-with-vertical-nav-navbar-footer-roundness;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Scrolled styles for sticky navbar
|
||||||
|
@at-root {
|
||||||
|
/* ℹ️ This html selector with not selector is required when:
|
||||||
|
dialog is opened and window don't have any scroll. This removes window-scrolled class from layout and our style broke
|
||||||
|
*/
|
||||||
|
html.v-overlay-scroll-blocked:not([style*="--v-body-scroll-y: 0px;"]) .layout-navbar-sticky,
|
||||||
|
&.window-scrolled.layout-navbar-sticky {
|
||||||
|
|
||||||
|
#{$header} {
|
||||||
|
@extend %default-layout-vertical-nav-scrolled-sticky-elevated-nav;
|
||||||
|
@extend %default-layout-vertical-nav-floating-navbar-and-sticky-elevated-navbar-scrolled;
|
||||||
|
}
|
||||||
|
|
||||||
|
.navbar-blur#{$header} {
|
||||||
|
@extend %blurry-bg;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 👉 Floating navbar
|
||||||
|
@else if variables.$vertical-nav-navbar-style == "floating" {
|
||||||
|
// ℹ️ Regardless of navbar is contained or not => Apply overlay to .layout-navbar
|
||||||
|
.layout-navbar {
|
||||||
|
&.navbar-blur {
|
||||||
|
@extend %default-layout-vertical-nav-floating-navbar-overlay;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&:not(.layout-navbar-sticky) {
|
||||||
|
#{$header} {
|
||||||
|
margin-block-start: variables.$vertical-nav-floating-navbar-top;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#{$header} {
|
||||||
|
@if variables.$layout-vertical-nav-navbar-is-contained {
|
||||||
|
border-radius: variables.$default-layout-with-vertical-nav-navbar-footer-roundness;
|
||||||
|
}
|
||||||
|
|
||||||
|
background-color: rgb(var(--v-theme-surface));
|
||||||
|
|
||||||
|
@extend %default-layout-vertical-nav-floating-navbar-and-sticky-elevated-navbar-scrolled;
|
||||||
|
}
|
||||||
|
|
||||||
|
.navbar-blur#{$header} {
|
||||||
|
@extend %blurry-bg;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// !SECTION
|
||||||
|
|
||||||
|
// 👉 Layout footer
|
||||||
|
.layout-footer {
|
||||||
|
$ele-layout-footer: &;
|
||||||
|
|
||||||
|
.footer-content-container {
|
||||||
|
border-radius: variables.$default-layout-with-vertical-nav-navbar-footer-roundness variables.$default-layout-with-vertical-nav-navbar-footer-roundness 0 0;
|
||||||
|
|
||||||
|
// Sticky footer
|
||||||
|
@at-root {
|
||||||
|
// ℹ️ .layout-footer-sticky#{$ele-layout-footer} => .layout-footer-sticky.layout-wrapper.layout-nav-type-vertical .layout-footer
|
||||||
|
.layout-footer-sticky#{$ele-layout-footer} {
|
||||||
|
.footer-content-container {
|
||||||
|
background-color: rgb(var(--v-theme-surface));
|
||||||
|
padding-block: 0;
|
||||||
|
padding-inline: 1.2rem;
|
||||||
|
|
||||||
|
@include mixins.elevation(3);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
16
src/admin/src/@core/scss/base/_default-layout.scss
Executable file
16
src/admin/src/@core/scss/base/_default-layout.scss
Executable file
@@ -0,0 +1,16 @@
|
|||||||
|
@use "@core/scss/base/placeholders";
|
||||||
|
@use "@core/scss/base/variables";
|
||||||
|
|
||||||
|
.layout-vertical-nav,
|
||||||
|
.layout-horizontal-nav {
|
||||||
|
ol,
|
||||||
|
ul {
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.layout-navbar {
|
||||||
|
@if variables.$navbar-high-emphasis-text {
|
||||||
|
@extend %layout-navbar;
|
||||||
|
}
|
||||||
|
}
|
||||||
40
src/admin/src/@core/scss/base/_index.scss
Executable file
40
src/admin/src/@core/scss/base/_index.scss
Executable file
@@ -0,0 +1,40 @@
|
|||||||
|
@use "sass:map";
|
||||||
|
|
||||||
|
// Layout
|
||||||
|
@use "vertical-nav";
|
||||||
|
@use "default-layout";
|
||||||
|
@use "default-layout-w-vertical-nav";
|
||||||
|
|
||||||
|
// Layouts package
|
||||||
|
@use "layouts";
|
||||||
|
|
||||||
|
// Components
|
||||||
|
@use "components";
|
||||||
|
|
||||||
|
// Utilities
|
||||||
|
@use "utilities";
|
||||||
|
|
||||||
|
// Misc
|
||||||
|
@use "misc";
|
||||||
|
|
||||||
|
// Dark
|
||||||
|
@use "dark";
|
||||||
|
|
||||||
|
// libs
|
||||||
|
@use "libs/perfect-scrollbar";
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: rgb(var(--v-theme-primary));
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Vuetify 3 don't provide margin bottom style like vuetify 2
|
||||||
|
p {
|
||||||
|
margin-block-end: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Iconify icon size
|
||||||
|
svg.iconify {
|
||||||
|
block-size: 1em;
|
||||||
|
inline-size: 1em;
|
||||||
|
}
|
||||||
63
src/admin/src/@core/scss/base/_layouts.scss
Executable file
63
src/admin/src/@core/scss/base/_layouts.scss
Executable file
@@ -0,0 +1,63 @@
|
|||||||
|
@use "@configured-variables" as variables;
|
||||||
|
|
||||||
|
/* ℹ️ This styles extends the existing layout package's styles for handling cases that aren't related to layouts package */
|
||||||
|
|
||||||
|
/*
|
||||||
|
ℹ️ When we use v-layout as immediate first child of `.page-content-container`, it adds display:flex and page doesn't get contained height
|
||||||
|
*/
|
||||||
|
// .layout-wrapper.layout-nav-type-vertical {
|
||||||
|
// &.layout-content-height-fixed {
|
||||||
|
// .page-content-container {
|
||||||
|
// > .v-layout:first-child > :not(.v-navigation-drawer):first-child {
|
||||||
|
// flex-grow: 1;
|
||||||
|
// block-size: 100%;
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
.layout-wrapper.layout-nav-type-vertical {
|
||||||
|
&.layout-content-height-fixed {
|
||||||
|
.page-content-container {
|
||||||
|
> .v-layout:first-child {
|
||||||
|
overflow: hidden;
|
||||||
|
min-block-size: 100%;
|
||||||
|
|
||||||
|
> .v-main {
|
||||||
|
// overflow-y: auto;
|
||||||
|
|
||||||
|
.v-main__wrap > :first-child {
|
||||||
|
block-size: 100%;
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ℹ️ Let div/v-layout take full height. E.g. Email App
|
||||||
|
.layout-wrapper.layout-nav-type-horizontal {
|
||||||
|
&.layout-content-height-fixed {
|
||||||
|
> .layout-page-content {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 👉 Floating navbar styles
|
||||||
|
@if variables.$vertical-nav-navbar-style == "floating" {
|
||||||
|
// ℹ️ Add spacing above navbar if navbar is floating (was in %layout-navbar-sticky placeholder)
|
||||||
|
body .layout-wrapper.layout-nav-type-vertical.layout-navbar-sticky {
|
||||||
|
.layout-navbar {
|
||||||
|
inset-block-start: variables.$vertical-nav-floating-navbar-top;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
ℹ️ If it's floating navbar
|
||||||
|
Add `vertical-nav-floating-navbar-top` as margin top to .layout-page-content
|
||||||
|
*/
|
||||||
|
.layout-page-content {
|
||||||
|
margin-block-start: variables.$vertical-nav-floating-navbar-top;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
20
src/admin/src/@core/scss/base/_misc.scss
Executable file
20
src/admin/src/@core/scss/base/_misc.scss
Executable file
@@ -0,0 +1,20 @@
|
|||||||
|
// ℹ️ scrollable-content allows creating fixed header and scrollable content for VNavigationDrawer (Used when perfect scrollbar is used)
|
||||||
|
.scrollable-content {
|
||||||
|
&.v-navigation-drawer {
|
||||||
|
.v-navigation-drawer__content {
|
||||||
|
display: flex;
|
||||||
|
overflow: hidden;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ℹ️ adding styling for code tag
|
||||||
|
code {
|
||||||
|
border-radius: 3px;
|
||||||
|
color: rgb(var(--v-code-color));
|
||||||
|
font-size: 90%;
|
||||||
|
font-weight: 400;
|
||||||
|
padding-block: 0.2em;
|
||||||
|
padding-inline: 0.4em;
|
||||||
|
}
|
||||||
63
src/admin/src/@core/scss/base/_mixins.scss
Executable file
63
src/admin/src/@core/scss/base/_mixins.scss
Executable file
@@ -0,0 +1,63 @@
|
|||||||
|
@use "sass:map";
|
||||||
|
@use "@styles/variables/vuetify.scss";
|
||||||
|
|
||||||
|
@mixin elevation($z, $important: false) {
|
||||||
|
box-shadow: map.get(vuetify.$shadow-key-umbra, $z), map.get(vuetify.$shadow-key-penumbra, $z), map.get(vuetify.$shadow-key-ambient, $z) if($important, !important, null);
|
||||||
|
}
|
||||||
|
|
||||||
|
// #region before-pseudo
|
||||||
|
// ℹ️ This mixin is inspired from vuetify for adding hover styles via before pseudo element
|
||||||
|
@mixin before-pseudo() {
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
&::before {
|
||||||
|
position: absolute;
|
||||||
|
border-radius: inherit;
|
||||||
|
background: currentcolor;
|
||||||
|
block-size: 100%;
|
||||||
|
content: "";
|
||||||
|
inline-size: 100%;
|
||||||
|
inset: 0;
|
||||||
|
opacity: 0;
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// #endregion before-pseudo
|
||||||
|
|
||||||
|
@mixin bordered-skin($component, $border-property: "border", $important: false) {
|
||||||
|
#{$component} {
|
||||||
|
box-shadow: none !important;
|
||||||
|
// stylelint-disable-next-line annotation-no-unknown
|
||||||
|
#{$border-property}: 1px solid rgba(var(--v-border-color), var(--v-border-opacity)) if($important, !important, null);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// #region selected-states
|
||||||
|
// ℹ️ Inspired from vuetify's active-states mixin
|
||||||
|
// focus => 0.12 & selected => 0.08
|
||||||
|
@mixin selected-states($selector) {
|
||||||
|
#{$selector} {
|
||||||
|
opacity: calc(var(--v-selected-opacity) * var(--v-theme-overlay-multiplier));
|
||||||
|
}
|
||||||
|
|
||||||
|
&:hover
|
||||||
|
#{$selector} {
|
||||||
|
opacity: calc(var(--v-selected-opacity) + var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
|
||||||
|
}
|
||||||
|
|
||||||
|
&:focus-visible
|
||||||
|
#{$selector} {
|
||||||
|
opacity: calc(var(--v-selected-opacity) + var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
||||||
|
}
|
||||||
|
|
||||||
|
@supports not selector(:focus-visible) {
|
||||||
|
&:focus {
|
||||||
|
#{$selector} {
|
||||||
|
opacity: calc(var(--v-selected-opacity) + var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// #endregion selected-states
|
||||||
184
src/admin/src/@core/scss/base/_utilities.scss
Executable file
184
src/admin/src/@core/scss/base/_utilities.scss
Executable file
@@ -0,0 +1,184 @@
|
|||||||
|
@use "@configured-variables" as variables;
|
||||||
|
@use "@layouts/styles/mixins" as layoutsMixins;
|
||||||
|
|
||||||
|
/* 👉 Demo spacers */
|
||||||
|
|
||||||
|
/* TODO: Use vuetify SCSS variable here; */
|
||||||
|
$card-spacer-content: 16px;
|
||||||
|
|
||||||
|
.demo-space-x {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
align-items: center;
|
||||||
|
margin-block-start: -$card-spacer-content;
|
||||||
|
|
||||||
|
& > * {
|
||||||
|
margin-block-start: $card-spacer-content;
|
||||||
|
margin-inline-end: $card-spacer-content;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo-space-y {
|
||||||
|
& > * {
|
||||||
|
margin-block-end: $card-spacer-content;
|
||||||
|
|
||||||
|
&:last-child {
|
||||||
|
margin-block-end: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 👉 Card match height
|
||||||
|
.match-height.v-row {
|
||||||
|
.v-card {
|
||||||
|
block-size: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 👉 Whitespace
|
||||||
|
.whitespace-no-wrap {
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 👉 Colors
|
||||||
|
|
||||||
|
/*
|
||||||
|
ℹ️ Vuetify is applying `.text-white` class to badge icon but don't provide its styles
|
||||||
|
Moreover, we also use this class in some places
|
||||||
|
|
||||||
|
ℹ️ In vuetify 2 with `$color-pack: false` SCSS var config this class was getting generated but this is not the case in v3
|
||||||
|
|
||||||
|
ℹ️ We also need !important to get correct color in badge icon
|
||||||
|
*/
|
||||||
|
.text-white {
|
||||||
|
color: #fff !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.text-white-variant {
|
||||||
|
color: rgba(255, 255, 255, var(--v-high-emphasis-opacity));
|
||||||
|
}
|
||||||
|
|
||||||
|
.text-link {
|
||||||
|
&:not(:hover) {
|
||||||
|
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.bg-var-theme-background {
|
||||||
|
background-color: rgba(var(--v-theme-on-background), var(--v-hover-opacity)) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bg-global-primary {
|
||||||
|
background-color: rgb(var(--v-theme-primary)) !important;
|
||||||
|
color: rgb(var(--v-theme-on-primary)) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
// [/^bg-light-(\w+)$/, ([, w]) => ({ backgroundColor: `rgba(var(--v-theme-${w}), var(--v-activated-opacity))` })],
|
||||||
|
@each $color-name in variables.$theme-colors-name {
|
||||||
|
.bg-light-#{$color-name} {
|
||||||
|
background-color: rgba(var(--v-theme-#{$color-name}), var(--v-activated-opacity)) !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 👉 clamp text
|
||||||
|
.clamp-text {
|
||||||
|
display: -webkit-box;
|
||||||
|
overflow: hidden;
|
||||||
|
-webkit-box-orient: vertical;
|
||||||
|
-webkit-line-clamp: 2;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
}
|
||||||
|
|
||||||
|
.custom-badge {
|
||||||
|
.v-badge__badge {
|
||||||
|
border-radius: 6px !important;
|
||||||
|
block-size: 12px !important;
|
||||||
|
inline-size: 12px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.leading-normal {
|
||||||
|
line-height: normal !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 👉 for rtl only
|
||||||
|
.flip-in-rtl {
|
||||||
|
@include layoutsMixins.rtl {
|
||||||
|
transform: scaleX(-1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 👉 Carousel
|
||||||
|
.carousel-delimiter-top-end {
|
||||||
|
.v-carousel__controls {
|
||||||
|
justify-content: end;
|
||||||
|
block-size: 40px;
|
||||||
|
inset-block-start: 0;
|
||||||
|
padding-inline: 1rem;
|
||||||
|
|
||||||
|
.v-btn--icon.v-btn--density-default {
|
||||||
|
block-size: calc(var(--v-btn-height) + -10px);
|
||||||
|
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
||||||
|
inline-size: calc(var(--v-btn-height) + -8px);
|
||||||
|
|
||||||
|
&.v-btn--active {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.v-btn__overlay {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.v-ripple__container {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.v-btn__content {
|
||||||
|
.v-icon {
|
||||||
|
block-size: 8px !important;
|
||||||
|
font-size: 8px !important;
|
||||||
|
inline-size: 8px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@each $color-name in variables.$theme-colors-name {
|
||||||
|
|
||||||
|
&.dots-active-#{$color-name} {
|
||||||
|
.v-carousel__controls {
|
||||||
|
.v-btn--active {
|
||||||
|
color: rgb(var(--v-theme-#{$color-name})) !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.v-timeline-item {
|
||||||
|
.app-timeline-title {
|
||||||
|
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
||||||
|
font-size: 16px;
|
||||||
|
font-weight: 500;
|
||||||
|
line-height: 1.3125rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.app-timeline-meta {
|
||||||
|
color: rgba(var(--v-theme-on-surface), var(--v-disabled-opacity));
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 0.875rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.app-timeline-text {
|
||||||
|
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 1.25rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.timeline-chip {
|
||||||
|
border-radius: 6px;
|
||||||
|
background: rgba(var(--v-theme-on-surface), var(--v-hover-opacity));
|
||||||
|
padding-block: 5px;
|
||||||
|
padding-inline: 10px;
|
||||||
|
}
|
||||||
|
}
|
||||||
90
src/admin/src/@core/scss/base/_utils.scss
Executable file
90
src/admin/src/@core/scss/base/_utils.scss
Executable file
@@ -0,0 +1,90 @@
|
|||||||
|
@use "sass:map";
|
||||||
|
@use "sass:list";
|
||||||
|
@use "@configured-variables" as variables;
|
||||||
|
|
||||||
|
// Thanks: https://css-tricks.com/snippets/sass/deep-getset-maps/
|
||||||
|
@function map-deep-get($map, $keys...) {
|
||||||
|
@each $key in $keys {
|
||||||
|
$map: map.get($map, $key);
|
||||||
|
}
|
||||||
|
|
||||||
|
@return $map;
|
||||||
|
}
|
||||||
|
|
||||||
|
@function map-deep-set($map, $keys, $value) {
|
||||||
|
$maps: ($map,);
|
||||||
|
$result: null;
|
||||||
|
|
||||||
|
// If the last key is a map already
|
||||||
|
// Warn the user we will be overriding it with $value
|
||||||
|
@if type-of(nth($keys, -1)) == "map" {
|
||||||
|
@warn "The last key you specified is a map; it will be overrided with `#{$value}`.";
|
||||||
|
}
|
||||||
|
|
||||||
|
// If $keys is a single key
|
||||||
|
// Just merge and return
|
||||||
|
@if length($keys) == 1 {
|
||||||
|
@return map-merge($map, ($keys: $value));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Loop from the first to the second to last key from $keys
|
||||||
|
// Store the associated map to this key in the $maps list
|
||||||
|
// If the key doesn't exist, throw an error
|
||||||
|
@for $i from 1 through length($keys) - 1 {
|
||||||
|
$current-key: list.nth($keys, $i);
|
||||||
|
$current-map: list.nth($maps, -1);
|
||||||
|
$current-get: map.get($current-map, $current-key);
|
||||||
|
|
||||||
|
@if not $current-get {
|
||||||
|
@error "Key `#{$key}` doesn't exist at current level in map.";
|
||||||
|
}
|
||||||
|
|
||||||
|
$maps: list.append($maps, $current-get);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Loop from the last map to the first one
|
||||||
|
// Merge it with the previous one
|
||||||
|
@for $i from length($maps) through 1 {
|
||||||
|
$current-map: list.nth($maps, $i);
|
||||||
|
$current-key: list.nth($keys, $i);
|
||||||
|
$current-val: if($i == list.length($maps), $value, $result);
|
||||||
|
$result: map.map-merge($current-map, ($current-key: $current-val));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Return result
|
||||||
|
@return $result;
|
||||||
|
}
|
||||||
|
|
||||||
|
// font size utility classes
|
||||||
|
@each $name, $size in variables.$font-sizes {
|
||||||
|
.text-#{$name} {
|
||||||
|
font-size: $size;
|
||||||
|
line-height: map.get(variables.$font-line-height, $name);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// truncate utility class
|
||||||
|
.truncate {
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
// gap utility class
|
||||||
|
@each $name, $size in variables.$gap {
|
||||||
|
.gap-#{$name} {
|
||||||
|
gap: $size;
|
||||||
|
}
|
||||||
|
|
||||||
|
.gap-x-#{$name} {
|
||||||
|
column-gap: $size;
|
||||||
|
}
|
||||||
|
|
||||||
|
.gap-y-#{$name} {
|
||||||
|
row-gap: $size;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.list-none {
|
||||||
|
list-style-type: none;
|
||||||
|
}
|
||||||
198
src/admin/src/@core/scss/base/_variables.scss
Executable file
198
src/admin/src/@core/scss/base/_variables.scss
Executable file
@@ -0,0 +1,198 @@
|
|||||||
|
@use "vuetify/lib/styles/tools/functions" as *;
|
||||||
|
|
||||||
|
/*
|
||||||
|
TODO: Add docs on when to use placeholder vs when to use SASS variable
|
||||||
|
|
||||||
|
Placeholder
|
||||||
|
- When we want to keep customization to our self between templates use it
|
||||||
|
|
||||||
|
Variables
|
||||||
|
- When we want to allow customization from both user and our side
|
||||||
|
- You can also use variable for consistency (e.g. mx 1 rem should be applied to both vertical nav items and vertical nav header)
|
||||||
|
*/
|
||||||
|
|
||||||
|
@forward "@layouts/styles/variables" with (
|
||||||
|
// Adjust z-index so vertical nav & overlay stays on top of v-layout in v-main. E.g. Email app
|
||||||
|
$layout-vertical-nav-z-index: 1003,
|
||||||
|
$layout-overlay-z-index: 1002,
|
||||||
|
);
|
||||||
|
@use "@layouts/styles/variables" as *;
|
||||||
|
|
||||||
|
// 👉 Default layout
|
||||||
|
|
||||||
|
$navbar-high-emphasis-text: true !default;
|
||||||
|
|
||||||
|
// @forward "@layouts/styles/variables" with (
|
||||||
|
// $layout-vertical-nav-width: 350px !default,
|
||||||
|
// );
|
||||||
|
|
||||||
|
$theme-colors-name: (
|
||||||
|
"primary",
|
||||||
|
"secondary",
|
||||||
|
"error",
|
||||||
|
"info",
|
||||||
|
"success",
|
||||||
|
"warning"
|
||||||
|
) !default;
|
||||||
|
|
||||||
|
// 👉 Default layout with vertical nav
|
||||||
|
|
||||||
|
$default-layout-with-vertical-nav-navbar-footer-roundness: 10px !default;
|
||||||
|
|
||||||
|
// 👉 Vertical nav
|
||||||
|
$vertical-nav-background-color-rgb: var(--v-theme-background) !default;
|
||||||
|
$vertical-nav-background-color: rgb(#{$vertical-nav-background-color-rgb}) !default;
|
||||||
|
|
||||||
|
// ℹ️ This is used to keep consistency between nav items and nav header left & right margin
|
||||||
|
// This is used by nav items & nav header
|
||||||
|
$vertical-nav-horizontal-spacing: 1rem !default;
|
||||||
|
$vertical-nav-horizontal-padding: 0.75rem !default;
|
||||||
|
|
||||||
|
// Vertical nav header height. Mostly we will align it with navbar height;
|
||||||
|
$vertical-nav-header-height: $layout-vertical-nav-navbar-height !default;
|
||||||
|
$vertical-nav-navbar-elevation: 3 !default;
|
||||||
|
$vertical-nav-navbar-style: "elevated" !default; // options: elevated, floating
|
||||||
|
$vertical-nav-floating-navbar-top: 1rem !default;
|
||||||
|
|
||||||
|
// Vertical nav header padding
|
||||||
|
$vertical-nav-header-padding: 1rem $vertical-nav-horizontal-padding !default;
|
||||||
|
$vertical-nav-header-inline-spacing: $vertical-nav-horizontal-spacing !default;
|
||||||
|
|
||||||
|
// Move logo when vertical nav is mini (collapsed but not hovered)
|
||||||
|
$vertical-nav-header-logo-translate-x-when-vertical-nav-mini: -4px !default;
|
||||||
|
|
||||||
|
// Space between logo and title
|
||||||
|
$vertical-nav-header-logo-title-spacing: 0.9rem !default;
|
||||||
|
|
||||||
|
// Section title margin top (when its not first child)
|
||||||
|
$vertical-nav-section-title-mt: 1.5rem !default;
|
||||||
|
|
||||||
|
// Section title margin bottom
|
||||||
|
$vertical-nav-section-title-mb: 0.5rem !default;
|
||||||
|
|
||||||
|
// Vertical nav icons
|
||||||
|
$vertical-nav-items-icon-size: 1.5rem !default;
|
||||||
|
$vertical-nav-items-nested-icon-size: 0.9rem !default;
|
||||||
|
$vertical-nav-items-icon-margin-inline-end: 0.5rem !default;
|
||||||
|
|
||||||
|
// Transition duration for nav group arrow
|
||||||
|
$vertical-nav-nav-group-arrow-transition-duration: 0.15s !default;
|
||||||
|
|
||||||
|
// Timing function for nav group arrow
|
||||||
|
$vertical-nav-nav-group-arrow-transition-timing-function: ease-in-out !default;
|
||||||
|
|
||||||
|
// 👉 Horizontal nav
|
||||||
|
|
||||||
|
/*
|
||||||
|
❗ Heads up
|
||||||
|
==================
|
||||||
|
Here we assume we will always use shorthand property which will apply same padding on four side
|
||||||
|
This is because this have been used as value of top property by `.popper-content`
|
||||||
|
*/
|
||||||
|
$horizontal-nav-padding: 0.6875rem !default;
|
||||||
|
|
||||||
|
// Gap between top level horizontal nav items
|
||||||
|
$horizontal-nav-top-level-items-gap: 4px !default;
|
||||||
|
|
||||||
|
// Horizontal nav icons
|
||||||
|
$horizontal-nav-items-icon-size: 1.5rem !default;
|
||||||
|
$horizontal-nav-third-level-icon-size: 0.9rem !default;
|
||||||
|
$horizontal-nav-items-icon-margin-inline-end: 0.625rem !default;
|
||||||
|
$horizontal-nav-group-arrow-icon-size: 1.375rem !default;
|
||||||
|
|
||||||
|
// ℹ️ We used SCSS variable because we want to allow users to update max height of popper content
|
||||||
|
// 120px is combined height of navbar & horizontal nav
|
||||||
|
$horizontal-nav-popper-content-max-height: calc(100dvh - 120px - 4rem) !default;
|
||||||
|
|
||||||
|
// ℹ️ This variable is used for horizontal nav popper content's `margin-top` and "The bridge"'s height. We need to sync both values.
|
||||||
|
$horizontal-nav-popper-content-top: calc($horizontal-nav-padding + 0.375rem) !default;
|
||||||
|
|
||||||
|
// 👉 Plugins
|
||||||
|
|
||||||
|
$plugin-ps-thumb-y-dark: rgba(var(--v-theme-surface-variant), 0.35) !default;
|
||||||
|
|
||||||
|
// 👉 Vuetify
|
||||||
|
|
||||||
|
// Used in src/@core/scss/base/libs/vuetify/_overrides.scss
|
||||||
|
$vuetify-reduce-default-compact-button-icon-size: true !default;
|
||||||
|
|
||||||
|
// 👉 Custom variables
|
||||||
|
// for utility classes
|
||||||
|
$font-sizes: () !default;
|
||||||
|
$font-sizes: map-deep-merge(
|
||||||
|
(
|
||||||
|
"xs": 0.75rem,
|
||||||
|
"sm": 0.875rem,
|
||||||
|
"base": 1rem,
|
||||||
|
"lg": 1.125rem,
|
||||||
|
"xl": 1.25rem,
|
||||||
|
"2xl": 1.5rem,
|
||||||
|
"3xl": 1.875rem,
|
||||||
|
"4xl": 2.25rem,
|
||||||
|
"5xl": 3rem,
|
||||||
|
"6xl": 3.75rem,
|
||||||
|
"7xl": 4.5rem,
|
||||||
|
"8xl": 6rem,
|
||||||
|
"9xl": 8rem
|
||||||
|
),
|
||||||
|
$font-sizes
|
||||||
|
);
|
||||||
|
|
||||||
|
// line height
|
||||||
|
$font-line-height: () !default;
|
||||||
|
$font-line-height: map-deep-merge(
|
||||||
|
(
|
||||||
|
"xs": 1rem,
|
||||||
|
"sm": 1.25rem,
|
||||||
|
"base": 1.5rem,
|
||||||
|
"lg": 1.75rem,
|
||||||
|
"xl": 1.75rem,
|
||||||
|
"2xl": 2rem,
|
||||||
|
"3xl": 2.25rem,
|
||||||
|
"4xl": 2.5rem,
|
||||||
|
"5xl": 1,
|
||||||
|
"6xl": 1,
|
||||||
|
"7xl": 1,
|
||||||
|
"8xl": 1,
|
||||||
|
"9xl": 1
|
||||||
|
),
|
||||||
|
$font-line-height
|
||||||
|
);
|
||||||
|
|
||||||
|
// gap utility class
|
||||||
|
$gap: () !default;
|
||||||
|
$gap: map-deep-merge(
|
||||||
|
(
|
||||||
|
"0": 0,
|
||||||
|
"1": 0.25rem,
|
||||||
|
"2": 0.5rem,
|
||||||
|
"3": 0.75rem,
|
||||||
|
"4": 1rem,
|
||||||
|
"5": 1.25rem,
|
||||||
|
"6":1.5rem,
|
||||||
|
"7": 1.75rem,
|
||||||
|
"8": 2rem,
|
||||||
|
"9": 2.25rem,
|
||||||
|
"10": 2.5rem,
|
||||||
|
"11": 2.75rem,
|
||||||
|
"12": 3rem,
|
||||||
|
"14": 3.5rem,
|
||||||
|
"16": 4rem,
|
||||||
|
"20": 5rem,
|
||||||
|
"24": 6rem,
|
||||||
|
"28": 7rem,
|
||||||
|
"32": 8rem,
|
||||||
|
"36": 9rem,
|
||||||
|
"40": 10rem,
|
||||||
|
"44": 11rem,
|
||||||
|
"48": 12rem,
|
||||||
|
"52": 13rem,
|
||||||
|
"56": 14rem,
|
||||||
|
"60": 15rem,
|
||||||
|
"64": 16rem,
|
||||||
|
"72": 18rem,
|
||||||
|
"80": 20rem,
|
||||||
|
"96": 24rem
|
||||||
|
),
|
||||||
|
$gap
|
||||||
|
);
|
||||||
259
src/admin/src/@core/scss/base/_vertical-nav.scss
Executable file
259
src/admin/src/@core/scss/base/_vertical-nav.scss
Executable file
@@ -0,0 +1,259 @@
|
|||||||
|
@use "@core/scss/base/placeholders" as *;
|
||||||
|
@use "@core/scss/template/placeholders" as *;
|
||||||
|
@use "@layouts/styles/mixins" as layoutsMixins;
|
||||||
|
@use "@configured-variables" as variables;
|
||||||
|
@use "@core/scss/base/mixins" as mixins;
|
||||||
|
@use "vuetify/lib/styles/tools/states" as vuetifyStates;
|
||||||
|
|
||||||
|
.layout-nav-type-vertical {
|
||||||
|
// 👉 Layout Vertical nav
|
||||||
|
.layout-vertical-nav {
|
||||||
|
$sl-layout-nav-type-vertical: &;
|
||||||
|
|
||||||
|
@extend %nav;
|
||||||
|
|
||||||
|
@at-root {
|
||||||
|
// ℹ️ Add styles for collapsed vertical nav
|
||||||
|
.layout-vertical-nav-collapsed#{$sl-layout-nav-type-vertical}.hovered {
|
||||||
|
@include mixins.elevation(6);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
background-color: variables.$vertical-nav-background-color;
|
||||||
|
|
||||||
|
// 👉 Nav header
|
||||||
|
.nav-header {
|
||||||
|
overflow: hidden;
|
||||||
|
padding: variables.$vertical-nav-header-padding;
|
||||||
|
margin-inline: variables.$vertical-nav-header-inline-spacing;
|
||||||
|
min-block-size: variables.$vertical-nav-header-height;
|
||||||
|
|
||||||
|
// TEMPLATE: Check if we need to move this to master
|
||||||
|
.app-logo {
|
||||||
|
flex-shrink: 0;
|
||||||
|
transition: transform 0.25s ease-in-out;
|
||||||
|
|
||||||
|
@at-root {
|
||||||
|
// Move logo a bit to align center with the icons in vertical nav mini variant
|
||||||
|
.layout-vertical-nav-collapsed#{$sl-layout-nav-type-vertical}:not(.hovered) .nav-header .app-logo {
|
||||||
|
transform: translateX(variables.$vertical-nav-header-logo-translate-x-when-vertical-nav-mini);
|
||||||
|
|
||||||
|
@include layoutsMixins.rtl {
|
||||||
|
transform: translateX(-(variables.$vertical-nav-header-logo-translate-x-when-vertical-nav-mini));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.app-title {
|
||||||
|
margin-inline-start: variables.$vertical-nav-header-logo-title-spacing;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-action {
|
||||||
|
@extend %nav-header-action;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 👉 Nav items shadow
|
||||||
|
.vertical-nav-items-shadow {
|
||||||
|
position: absolute;
|
||||||
|
z-index: 1;
|
||||||
|
background:
|
||||||
|
linear-gradient(
|
||||||
|
rgb(#{variables.$vertical-nav-background-color-rgb}) 5%,
|
||||||
|
rgba(#{variables.$vertical-nav-background-color-rgb}, 75%) 45%,
|
||||||
|
rgba(#{variables.$vertical-nav-background-color-rgb}, 20%) 80%,
|
||||||
|
transparent
|
||||||
|
);
|
||||||
|
block-size: 55px;
|
||||||
|
inline-size: 100%;
|
||||||
|
inset-block-start: calc(#{variables.$vertical-nav-header-height} - 2px);
|
||||||
|
opacity: 0;
|
||||||
|
pointer-events: none;
|
||||||
|
transition: opacity 0.15s ease-in-out;
|
||||||
|
will-change: opacity;
|
||||||
|
|
||||||
|
@include layoutsMixins.rtl {
|
||||||
|
transform: translateX(8px);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&.scrolled {
|
||||||
|
.vertical-nav-items-shadow {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ℹ️ Setting z-index 1 will make perfect scrollbar thumb appear on top of vertical nav items shadow;
|
||||||
|
.ps__rail-y {
|
||||||
|
z-index: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 👉 Nav section title
|
||||||
|
.nav-section-title {
|
||||||
|
@extend %vertical-nav-item;
|
||||||
|
@extend %vertical-nav-section-title;
|
||||||
|
|
||||||
|
margin-block-end: variables.$vertical-nav-section-title-mb;
|
||||||
|
|
||||||
|
&:not(:first-child) {
|
||||||
|
margin-block-start: variables.$vertical-nav-section-title-mt;
|
||||||
|
}
|
||||||
|
|
||||||
|
.placeholder-icon {
|
||||||
|
margin-inline: auto;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Nav item badge
|
||||||
|
.nav-item-badge {
|
||||||
|
@extend %vertical-nav-item-badge;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 👉 Nav group & Link
|
||||||
|
.nav-link,
|
||||||
|
.nav-group {
|
||||||
|
overflow: hidden;
|
||||||
|
|
||||||
|
> :first-child {
|
||||||
|
@extend %vertical-nav-item;
|
||||||
|
@extend %vertical-nav-item-interactive;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-item-icon {
|
||||||
|
@extend %vertical-nav-items-icon;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.disabled {
|
||||||
|
opacity: var(--v-disabled-opacity);
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 👉 Vertical nav link
|
||||||
|
.nav-link {
|
||||||
|
@extend %nav-link;
|
||||||
|
|
||||||
|
> .router-link-exact-active {
|
||||||
|
@extend %nav-link-active;
|
||||||
|
}
|
||||||
|
|
||||||
|
> a {
|
||||||
|
// Adds before psudo element to style hover state
|
||||||
|
@include mixins.before-pseudo;
|
||||||
|
|
||||||
|
// Adds vuetify states
|
||||||
|
|
||||||
|
&:not(.router-link-active, .router-link-exact-active) {
|
||||||
|
@include vuetifyStates.states($active: false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 👉 Vertical nav group
|
||||||
|
.nav-group {
|
||||||
|
// Reduce the size of icon if link/group is inside group
|
||||||
|
.nav-group,
|
||||||
|
.nav-link {
|
||||||
|
.nav-item-icon {
|
||||||
|
@extend %vertical-nav-items-nested-icon;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Hide icons after 2nd level
|
||||||
|
& .nav-group {
|
||||||
|
.nav-link,
|
||||||
|
.nav-group {
|
||||||
|
.nav-item-icon {
|
||||||
|
@extend %vertical-nav-items-icon-after-2nd-level;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-group-arrow {
|
||||||
|
flex-shrink: 0;
|
||||||
|
transform-origin: center;
|
||||||
|
transition: transform variables.$vertical-nav-nav-group-arrow-transition-duration variables.$vertical-nav-nav-group-arrow-transition-timing-function;
|
||||||
|
will-change: transform;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Rotate arrow icon if group is opened
|
||||||
|
&.open {
|
||||||
|
> .nav-group-label .nav-group-arrow {
|
||||||
|
transform: rotateZ(90deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Nav group label
|
||||||
|
> :first-child {
|
||||||
|
// Adds before psudo element to style hover state
|
||||||
|
@include mixins.before-pseudo;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:not(.active,.open) > :first-child {
|
||||||
|
// Adds vuetify states
|
||||||
|
@include vuetifyStates.states($active: false);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Active & open states for nav group label
|
||||||
|
&.active,
|
||||||
|
&.open {
|
||||||
|
> :first-child {
|
||||||
|
@extend %vertical-nav-group-open-active;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// SECTION: Transitions
|
||||||
|
.vertical-nav-section-title-enter-active,
|
||||||
|
.vertical-nav-section-title-leave-active {
|
||||||
|
transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
.vertical-nav-section-title-enter-from,
|
||||||
|
.vertical-nav-section-title-leave-to {
|
||||||
|
opacity: 0;
|
||||||
|
transform: translateX(15px);
|
||||||
|
|
||||||
|
@include layoutsMixins.rtl {
|
||||||
|
transform: translateX(-15px);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.transition-slide-x-enter-active,
|
||||||
|
.transition-slide-x-leave-active {
|
||||||
|
transition: opacity 0.1s ease-in-out, transform 0.12s ease-in-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
.transition-slide-x-enter-from,
|
||||||
|
.transition-slide-x-leave-to {
|
||||||
|
opacity: 0;
|
||||||
|
transform: translateX(-15px);
|
||||||
|
|
||||||
|
@include layoutsMixins.rtl {
|
||||||
|
transform: translateX(15px);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.vertical-nav-app-title-enter-active,
|
||||||
|
.vertical-nav-app-title-leave-active {
|
||||||
|
transition: opacity 0.1s ease-in-out, transform 0.12s ease-in-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
.vertical-nav-app-title-enter-from,
|
||||||
|
.vertical-nav-app-title-leave-to {
|
||||||
|
opacity: 0;
|
||||||
|
transform: translateX(-15px);
|
||||||
|
|
||||||
|
@include layoutsMixins.rtl {
|
||||||
|
transform: translateX(15px);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// !SECTION
|
||||||
35
src/admin/src/@core/scss/base/libs/_perfect-scrollbar.scss
Executable file
35
src/admin/src/@core/scss/base/libs/_perfect-scrollbar.scss
Executable file
@@ -0,0 +1,35 @@
|
|||||||
|
$ps-size: 0.25rem;
|
||||||
|
$ps-hover-size: 0.375rem;
|
||||||
|
$ps-track-size: 0.5rem;
|
||||||
|
|
||||||
|
.ps__thumb-y {
|
||||||
|
inline-size: $ps-size !important;
|
||||||
|
inset-inline-end: 0.0625rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ps__thumb-y,
|
||||||
|
.ps__thumb-x {
|
||||||
|
background-color: rgb(var(--v-theme-perfect-scrollbar-thumb)) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ps__thumb-x {
|
||||||
|
block-size: $ps-size !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ps__rail-x {
|
||||||
|
background: transparent !important;
|
||||||
|
block-size: $ps-track-size;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ps__rail-y {
|
||||||
|
background: transparent !important;
|
||||||
|
inline-size: $ps-track-size !important;
|
||||||
|
inset-inline-end: 0.125rem !important;
|
||||||
|
inset-inline-start: unset !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ps__rail-y.ps--clicking .ps__thumb-y,
|
||||||
|
.ps__rail-y:focus > .ps__thumb-y,
|
||||||
|
.ps__rail-y:hover > .ps__thumb-y {
|
||||||
|
inline-size: $ps-hover-size !important;
|
||||||
|
}
|
||||||
1
src/admin/src/@core/scss/base/libs/vuetify/_index.scss
Executable file
1
src/admin/src/@core/scss/base/libs/vuetify/_index.scss
Executable file
@@ -0,0 +1 @@
|
|||||||
|
@use "overrides";
|
||||||
257
src/admin/src/@core/scss/base/libs/vuetify/_overrides.scss
Executable file
257
src/admin/src/@core/scss/base/libs/vuetify/_overrides.scss
Executable file
@@ -0,0 +1,257 @@
|
|||||||
|
@use "@core/scss/base/utils";
|
||||||
|
@use "@configured-variables" as variables;
|
||||||
|
|
||||||
|
// 👉 Application
|
||||||
|
// ℹ️ We need accurate vh in mobile devices as well
|
||||||
|
.v-application__wrap {
|
||||||
|
/* stylelint-disable-next-line liberty/use-logical-spec */
|
||||||
|
min-height: 100dvh;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 👉 Typography
|
||||||
|
h1,
|
||||||
|
h2,
|
||||||
|
h3,
|
||||||
|
h4,
|
||||||
|
h5,
|
||||||
|
h6,
|
||||||
|
.text-h1,
|
||||||
|
.text-h2,
|
||||||
|
.text-h3,
|
||||||
|
.text-h4,
|
||||||
|
.text-h5,
|
||||||
|
.text-h6,
|
||||||
|
.text-button,
|
||||||
|
.text-overline,
|
||||||
|
.v-card-title {
|
||||||
|
color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
|
||||||
|
}
|
||||||
|
|
||||||
|
body,
|
||||||
|
.text-body-1,
|
||||||
|
.text-body-2,
|
||||||
|
.text-subtitle-1,
|
||||||
|
.text-subtitle-2 {
|
||||||
|
color: rgba(var(--v-theme-on-background), var(--v-medium-emphasis-opacity));
|
||||||
|
}
|
||||||
|
|
||||||
|
// 👉 Grid
|
||||||
|
// Remove margin-bottom of v-input_details inside grid (validation error message)
|
||||||
|
.v-row {
|
||||||
|
.v-col,
|
||||||
|
[class^="v-col-*"] {
|
||||||
|
.v-input__details {
|
||||||
|
margin-block-end: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 👉 Button
|
||||||
|
@if variables.$vuetify-reduce-default-compact-button-icon-size {
|
||||||
|
.v-btn--density-compact.v-btn--size-default {
|
||||||
|
.v-btn__content > svg {
|
||||||
|
block-size: 22px;
|
||||||
|
font-size: 22px;
|
||||||
|
inline-size: 22px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 👉 Card
|
||||||
|
// Removes padding-top for immediately placed v-card-text after itself
|
||||||
|
.v-card-text {
|
||||||
|
& + & {
|
||||||
|
padding-block-start: 0 !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
👉 Checkbox & Radio Ripple
|
||||||
|
|
||||||
|
TODO Checkbox and switch component. Remove it when vuetify resolve the extra spacing: https://github.com/vuetifyjs/vuetify/issues/15519
|
||||||
|
We need this because form elements likes checkbox and switches are by default set to height of textfield height which is way big than we want
|
||||||
|
Tested with checkbox & switches
|
||||||
|
*/
|
||||||
|
.v-checkbox.v-input,
|
||||||
|
.v-switch.v-input {
|
||||||
|
--v-input-control-height: auto;
|
||||||
|
|
||||||
|
flex: unset;
|
||||||
|
}
|
||||||
|
|
||||||
|
.v-radio-group {
|
||||||
|
.v-selection-control-group {
|
||||||
|
.v-radio:not(:last-child) {
|
||||||
|
margin-inline-end: 0.9rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
👉 Tabs
|
||||||
|
Disable tab transition
|
||||||
|
|
||||||
|
This is for tabs where we don't have card wrapper to tabs and have multiple cards as tab content.
|
||||||
|
|
||||||
|
This class will disable transition and adds `overflow: unset` on `VWindow` to allow spreading shadow
|
||||||
|
*/
|
||||||
|
.disable-tab-transition {
|
||||||
|
overflow: unset !important;
|
||||||
|
|
||||||
|
.v-window__container {
|
||||||
|
block-size: auto !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.v-window-item:not(.v-window-item--active) {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.v-window__container .v-window-item {
|
||||||
|
transform: none !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 👉 List
|
||||||
|
.v-list {
|
||||||
|
// Set icons opacity to .87
|
||||||
|
.v-list-item__prepend > .v-icon,
|
||||||
|
.v-list-item__append > .v-icon {
|
||||||
|
opacity: var(--v-high-emphasis-opacity);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 👉 Card list
|
||||||
|
|
||||||
|
/*
|
||||||
|
ℹ️ Custom class
|
||||||
|
|
||||||
|
Remove list spacing inside card
|
||||||
|
|
||||||
|
This is because card title gets padding of 20px and list item have padding of 16px. Moreover, list container have padding-bottom as well.
|
||||||
|
*/
|
||||||
|
.card-list {
|
||||||
|
--v-card-list-gap: 20px;
|
||||||
|
|
||||||
|
&.v-list {
|
||||||
|
padding-block: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.v-list-item {
|
||||||
|
min-block-size: unset;
|
||||||
|
min-block-size: auto !important;
|
||||||
|
padding-block: 0 !important;
|
||||||
|
padding-inline: 0 !important;
|
||||||
|
|
||||||
|
> .v-ripple__container {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:not(:last-child) {
|
||||||
|
padding-block-end: var(--v-card-list-gap) !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.v-list-item:hover,
|
||||||
|
.v-list-item:focus,
|
||||||
|
.v-list-item:active,
|
||||||
|
.v-list-item.active {
|
||||||
|
> .v-list-item__overlay {
|
||||||
|
opacity: 0 !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 👉 Divider
|
||||||
|
.v-divider {
|
||||||
|
color: rgb(var(--v-border-color));
|
||||||
|
}
|
||||||
|
|
||||||
|
.v-divider.v-divider--vertical {
|
||||||
|
block-size: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 👉 DataTable
|
||||||
|
.v-data-table {
|
||||||
|
/* stylelint-disable-next-line no-descending-specificity */
|
||||||
|
.v-checkbox-btn .v-selection-control__wrapper {
|
||||||
|
margin-inline-start: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.v-selection-control {
|
||||||
|
display: flex !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.v-pagination {
|
||||||
|
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 👉 v-field
|
||||||
|
.v-field:hover .v-field__outline {
|
||||||
|
--v-field-border-opacity: var(--v-medium-emphasis-opacity);
|
||||||
|
}
|
||||||
|
|
||||||
|
// 👉 VLabel
|
||||||
|
.v-label {
|
||||||
|
opacity: 1 !important;
|
||||||
|
|
||||||
|
&:not(.v-field-label--floating) {
|
||||||
|
color: rgba(var(--v-theme-on-background), var(--v-medium-emphasis-opacity));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 👉 Overlay
|
||||||
|
.v-overlay__scrim,
|
||||||
|
.v-navigation-drawer__scrim {
|
||||||
|
background: rgba(var(--v-overlay-scrim-background), var(--v-overlay-scrim-opacity)) !important;
|
||||||
|
opacity: 1 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 👉 VMessages
|
||||||
|
.v-messages {
|
||||||
|
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
||||||
|
opacity: 1 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 👉 Alert close btn
|
||||||
|
.v-alert__close {
|
||||||
|
.v-btn--icon .v-icon {
|
||||||
|
--v-icon-size-multiplier: 1.5;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 👉 Badge icon alignment
|
||||||
|
.v-badge__badge {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 👉 Btn focus outline style removed
|
||||||
|
.v-btn:focus-visible::after {
|
||||||
|
opacity: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
// .v-select chip spacing for slot
|
||||||
|
.v-input:not(.v-select--chips) .v-select__selection {
|
||||||
|
.v-chip {
|
||||||
|
margin-block: 2px var(--select-chips-margin-bottom);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 👉 VCard and VList subtitle color
|
||||||
|
.v-card-subtitle,
|
||||||
|
.v-list-item-subtitle {
|
||||||
|
color: rgba(var(--v-theme-on-background), var(--v-medium-emphasis-opacity));
|
||||||
|
}
|
||||||
|
|
||||||
|
// 👉 placeholders
|
||||||
|
.v-field__input {
|
||||||
|
@at-root {
|
||||||
|
& input::placeholder,
|
||||||
|
input#{&}::placeholder,
|
||||||
|
textarea#{&}::placeholder {
|
||||||
|
color: rgba(var(--v-theme-on-surface), var(--v-disabled-opacity)) !important;
|
||||||
|
opacity: 1 !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
64
src/admin/src/@core/scss/base/libs/vuetify/_variables.scss
Executable file
64
src/admin/src/@core/scss/base/libs/vuetify/_variables.scss
Executable file
@@ -0,0 +1,64 @@
|
|||||||
|
@use "sass:map";
|
||||||
|
|
||||||
|
/* 👉 Shadow opacities */
|
||||||
|
$shadow-key-umbra-opacity-custom: var(--v-shadow-key-umbra-opacity);
|
||||||
|
$shadow-key-penumbra-opacity-custom: var(--v-shadow-key-penumbra-opacity);
|
||||||
|
$shadow-key-ambient-opacity-custom: var(--v-shadow-key-ambient-opacity);
|
||||||
|
|
||||||
|
/* 👉 Card transition properties */
|
||||||
|
$card-transition-property-custom: box-shadow, opacity;
|
||||||
|
|
||||||
|
@forward "vuetify/settings" with (
|
||||||
|
// 👉 General settings
|
||||||
|
$color-pack: false !default,
|
||||||
|
|
||||||
|
// 👉 Shadow opacity
|
||||||
|
$shadow-key-umbra-opacity: $shadow-key-umbra-opacity-custom !default,
|
||||||
|
$shadow-key-penumbra-opacity: $shadow-key-penumbra-opacity-custom !default,
|
||||||
|
$shadow-key-ambient-opacity: $shadow-key-ambient-opacity-custom !default,
|
||||||
|
|
||||||
|
// 👉 Card
|
||||||
|
$card-color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity)) !default,
|
||||||
|
$card-elevation: 6 !default,
|
||||||
|
$card-title-line-height: 1.6 !default,
|
||||||
|
$card-actions-min-height: unset !default,
|
||||||
|
$card-text-padding: 1.25rem !default,
|
||||||
|
$card-item-padding: 1.25rem !default,
|
||||||
|
$card-actions-padding: 0 12px 12px !default,
|
||||||
|
$card-transition-property: $card-transition-property-custom !default,
|
||||||
|
$card-subtitle-opacity: 1 !default,
|
||||||
|
|
||||||
|
// 👉 Expansion Panel
|
||||||
|
$expansion-panel-active-title-min-height: 48px !default,
|
||||||
|
|
||||||
|
// 👉 List
|
||||||
|
$list-item-icon-margin-end: 16px !default,
|
||||||
|
$list-item-icon-margin-start: 16px !default,
|
||||||
|
$list-item-subtitle-opacity: 1 !default,
|
||||||
|
|
||||||
|
// 👉 Navigation Drawer
|
||||||
|
$navigation-drawer-content-overflow-y: hidden !default,
|
||||||
|
|
||||||
|
// 👉 Tooltip
|
||||||
|
$tooltip-background-color: rgba(59, 55, 68, 0.9) !default,
|
||||||
|
$tooltip-text-color: rgb(var(--v-theme-on-primary)) !default,
|
||||||
|
$tooltip-font-size: 0.75rem !default,
|
||||||
|
|
||||||
|
$button-icon-density: ("default": 2, "comfortable": 0, "compact": -1 ) !default,
|
||||||
|
|
||||||
|
// 👉 VTimeline
|
||||||
|
$timeline-dot-size: 34px !default,
|
||||||
|
|
||||||
|
// 👉 table
|
||||||
|
$table-transition-property: height !default,
|
||||||
|
|
||||||
|
// 👉 VOverlay
|
||||||
|
$overlay-opacity: 1 !default,
|
||||||
|
|
||||||
|
// 👉 VContainer
|
||||||
|
$container-max-widths: (
|
||||||
|
"xl": 1440px,
|
||||||
|
"xxl": 1440px
|
||||||
|
) !default,
|
||||||
|
|
||||||
|
);
|
||||||
45
src/admin/src/@core/scss/base/placeholders/_default-layout-vertical-nav.scss
Executable file
45
src/admin/src/@core/scss/base/placeholders/_default-layout-vertical-nav.scss
Executable file
@@ -0,0 +1,45 @@
|
|||||||
|
@use "@configured-variables" as variables;
|
||||||
|
@use "misc";
|
||||||
|
@use "@core/scss/base/mixins";
|
||||||
|
|
||||||
|
%default-layout-vertical-nav-scrolled-sticky-elevated-nav {
|
||||||
|
background-color: rgb(var(--v-theme-surface));
|
||||||
|
}
|
||||||
|
|
||||||
|
%default-layout-vertical-nav-floating-navbar-and-sticky-elevated-navbar-scrolled {
|
||||||
|
@include mixins.elevation(variables.$vertical-nav-navbar-elevation);
|
||||||
|
|
||||||
|
// If navbar is contained => Squeeze navbar content on scroll
|
||||||
|
@if variables.$layout-vertical-nav-navbar-is-contained {
|
||||||
|
padding-inline: 1.2rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
%default-layout-vertical-nav-floating-navbar-overlay {
|
||||||
|
isolation: isolate;
|
||||||
|
|
||||||
|
&::after {
|
||||||
|
position: absolute;
|
||||||
|
z-index: -1;
|
||||||
|
/* stylelint-disable property-no-vendor-prefix */
|
||||||
|
-webkit-backdrop-filter: blur(10px);
|
||||||
|
backdrop-filter: blur(10px);
|
||||||
|
/* stylelint-enable */
|
||||||
|
background:
|
||||||
|
linear-gradient(
|
||||||
|
180deg,
|
||||||
|
rgba(var(--v-theme-background), 70%) 44%,
|
||||||
|
rgba(var(--v-theme-background), 43%) 73%,
|
||||||
|
rgba(var(--v-theme-background), 0%)
|
||||||
|
);
|
||||||
|
background-repeat: repeat;
|
||||||
|
block-size: calc(variables.$layout-vertical-nav-navbar-height + variables.$vertical-nav-floating-navbar-top + 0.5rem);
|
||||||
|
content: "";
|
||||||
|
inset-block-start: -(variables.$vertical-nav-floating-navbar-top);
|
||||||
|
inset-inline: 0 0;
|
||||||
|
/* stylelint-disable property-no-vendor-prefix */
|
||||||
|
-webkit-mask: linear-gradient(black, black 18%, transparent 100%);
|
||||||
|
mask: linear-gradient(black, black 18%, transparent 100%);
|
||||||
|
/* stylelint-enable */
|
||||||
|
}
|
||||||
|
}
|
||||||
3
src/admin/src/@core/scss/base/placeholders/_default-layout.scss
Executable file
3
src/admin/src/@core/scss/base/placeholders/_default-layout.scss
Executable file
@@ -0,0 +1,3 @@
|
|||||||
|
%layout-navbar {
|
||||||
|
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
||||||
|
}
|
||||||
5
src/admin/src/@core/scss/base/placeholders/_index.scss
Executable file
5
src/admin/src/@core/scss/base/placeholders/_index.scss
Executable file
@@ -0,0 +1,5 @@
|
|||||||
|
@forward "vertical-nav";
|
||||||
|
@forward "nav";
|
||||||
|
@forward "default-layout";
|
||||||
|
@forward "default-layout-vertical-nav";
|
||||||
|
@forward "misc";
|
||||||
7
src/admin/src/@core/scss/base/placeholders/_misc.scss
Executable file
7
src/admin/src/@core/scss/base/placeholders/_misc.scss
Executable file
@@ -0,0 +1,7 @@
|
|||||||
|
%blurry-bg {
|
||||||
|
/* stylelint-disable property-no-vendor-prefix */
|
||||||
|
-webkit-backdrop-filter: blur(6px);
|
||||||
|
backdrop-filter: blur(6px);
|
||||||
|
/* stylelint-enable */
|
||||||
|
background-color: rgb(var(--v-theme-surface), 0.9);
|
||||||
|
}
|
||||||
33
src/admin/src/@core/scss/base/placeholders/_nav.scss
Executable file
33
src/admin/src/@core/scss/base/placeholders/_nav.scss
Executable file
@@ -0,0 +1,33 @@
|
|||||||
|
@use "@core/scss/base/mixins";
|
||||||
|
|
||||||
|
// ℹ️ This is common style that needs to be applied to both navs
|
||||||
|
%nav {
|
||||||
|
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
||||||
|
|
||||||
|
.nav-item-title {
|
||||||
|
letter-spacing: 0.15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-section-title {
|
||||||
|
letter-spacing: 0.4px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Active nav link styles for horizontal & vertical nav
|
||||||
|
|
||||||
|
For horizontal nav it will be only applied to top level nav items
|
||||||
|
For vertical nav it will be only applied to nav links (not nav groups)
|
||||||
|
*/
|
||||||
|
%nav-link-active {
|
||||||
|
background-color: rgb(var(--v-theme-primary));
|
||||||
|
color: rgb(var(--v-theme-on-primary));
|
||||||
|
|
||||||
|
@include mixins.elevation(3);
|
||||||
|
}
|
||||||
|
|
||||||
|
%nav-link {
|
||||||
|
a {
|
||||||
|
color: inherit;
|
||||||
|
}
|
||||||
|
}
|
||||||
80
src/admin/src/@core/scss/base/placeholders/_vertical-nav.scss
Executable file
80
src/admin/src/@core/scss/base/placeholders/_vertical-nav.scss
Executable file
@@ -0,0 +1,80 @@
|
|||||||
|
@use "@core/scss/base/mixins";
|
||||||
|
@use "@configured-variables" as variables;
|
||||||
|
@use "vuetify/lib/styles/tools/states" as vuetifyStates;
|
||||||
|
|
||||||
|
%nav-header-action {
|
||||||
|
font-size: 1.25rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Nav items styles (including section title)
|
||||||
|
%vertical-nav-item {
|
||||||
|
margin-block: 0;
|
||||||
|
margin-inline: variables.$vertical-nav-horizontal-spacing;
|
||||||
|
padding-block: 0;
|
||||||
|
padding-inline: variables.$vertical-nav-horizontal-padding;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
// This is same as `%vertical-nav-item` except section title is excluded
|
||||||
|
%vertical-nav-item-interactive {
|
||||||
|
border-radius: 0.4rem;
|
||||||
|
block-size: 2.75rem;
|
||||||
|
|
||||||
|
/*
|
||||||
|
ℹ️ We will use `margin-block-end` instead of `margin-block` to give more space for shadow to appear.
|
||||||
|
With `margin-block`, due to small space (space gets divided between top & bottom) shadow cuts
|
||||||
|
*/
|
||||||
|
margin-block-end: 0.375rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Common styles for nav item icon styles
|
||||||
|
// ℹ️ Nav group's children icon styles are not here (Adjusts height, width & margin)
|
||||||
|
%vertical-nav-items-icon {
|
||||||
|
flex-shrink: 0;
|
||||||
|
font-size: variables.$vertical-nav-items-icon-size;
|
||||||
|
margin-inline-end: variables.$vertical-nav-items-icon-margin-inline-end;
|
||||||
|
}
|
||||||
|
|
||||||
|
// ℹ️ Icon styling for icon nested inside another nav item (2nd level)
|
||||||
|
%vertical-nav-items-nested-icon {
|
||||||
|
/*
|
||||||
|
ℹ️ `margin-inline` will be (normal icon font-size - small icon font-size) / 2
|
||||||
|
(1.5rem - 0.9rem) / 2 => 0.6rem / 2 => 0.3rem
|
||||||
|
*/
|
||||||
|
$vertical-nav-items-nested-icon-margin-inline: calc((variables.$vertical-nav-items-icon-size - variables.$vertical-nav-items-nested-icon-size) / 2);
|
||||||
|
|
||||||
|
font-size: variables.$vertical-nav-items-nested-icon-size;
|
||||||
|
margin-inline: $vertical-nav-items-nested-icon-margin-inline $vertical-nav-items-nested-icon-margin-inline + variables.$vertical-nav-items-icon-margin-inline-end;
|
||||||
|
}
|
||||||
|
|
||||||
|
%vertical-nav-items-icon-after-2nd-level {
|
||||||
|
visibility: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Open & Active nav group styles
|
||||||
|
%vertical-nav-group-open-active {
|
||||||
|
@include mixins.selected-states("&::before");
|
||||||
|
}
|
||||||
|
|
||||||
|
// Section title
|
||||||
|
// ℹ️ Setting height will prevent jerking when text & icon is toggled
|
||||||
|
%vertical-nav-section-title {
|
||||||
|
block-size: 1.5rem;
|
||||||
|
color: rgba(var(--v-theme-on-surface), var(--v-disabled-opacity));
|
||||||
|
font-size: 0.75rem;
|
||||||
|
text-transform: uppercase;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Vertical nav item badge styles
|
||||||
|
%vertical-nav-item-badge {
|
||||||
|
display: inline-block;
|
||||||
|
border-radius: 1.5rem;
|
||||||
|
font-size: 0.8em;
|
||||||
|
font-weight: 500;
|
||||||
|
line-height: 1;
|
||||||
|
padding-block: 0.25em;
|
||||||
|
padding-inline: 0.55em;
|
||||||
|
text-align: center;
|
||||||
|
vertical-align: baseline;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
28
src/admin/src/@core/scss/template/_default-layout-w-vertical-nav.scss
Executable file
28
src/admin/src/@core/scss/template/_default-layout-w-vertical-nav.scss
Executable file
@@ -0,0 +1,28 @@
|
|||||||
|
@use "@configured-variables" as variables;
|
||||||
|
@use "@core/scss/base/mixins";
|
||||||
|
|
||||||
|
$header: ".layout-navbar";
|
||||||
|
|
||||||
|
@if variables.$layout-vertical-nav-navbar-is-contained {
|
||||||
|
$header: ".layout-navbar .navbar-content-container";
|
||||||
|
}
|
||||||
|
|
||||||
|
.layout-wrapper.layout-nav-type-vertical {
|
||||||
|
// 👉 Layout footer
|
||||||
|
.layout-footer {
|
||||||
|
$ele-layout-footer: &;
|
||||||
|
|
||||||
|
.footer-content-container {
|
||||||
|
// Sticky footer
|
||||||
|
@at-root {
|
||||||
|
// ℹ️ .layout-footer-sticky#{$ele-layout-footer} => .layout-footer-sticky.layout-wrapper.layout-nav-type-vertical .layout-footer
|
||||||
|
.layout-footer-sticky#{$ele-layout-footer} {
|
||||||
|
.footer-content-container {
|
||||||
|
box-shadow: 0 -4px 8px -4px rgba(var(--v-shadow-key-umbra-color), 42%);
|
||||||
|
padding-inline: 1.5rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
12
src/admin/src/@core/scss/template/_mixins.scss
Executable file
12
src/admin/src/@core/scss/template/_mixins.scss
Executable file
@@ -0,0 +1,12 @@
|
|||||||
|
@use "vuetify/lib/styles/settings" as vuetify_settings;
|
||||||
|
|
||||||
|
@mixin avatar-font-sizes($map: $avatar-sizes) {
|
||||||
|
@each $sizeName, $multiplier in vuetify_settings.$size-scales {
|
||||||
|
/* stylelint-disable-next-line scss/no-global-function-names */
|
||||||
|
$size: map-get($map, $sizeName);
|
||||||
|
|
||||||
|
&.v-avatar--size-#{$sizeName} {
|
||||||
|
font-size: #{$size}px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
51
src/admin/src/@core/scss/template/_utilities.scss
Executable file
51
src/admin/src/@core/scss/template/_utilities.scss
Executable file
@@ -0,0 +1,51 @@
|
|||||||
|
.v-timeline{
|
||||||
|
.v-timeline-item {
|
||||||
|
.app-timeline-title {
|
||||||
|
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
||||||
|
font-size: 15px;
|
||||||
|
font-weight: 500;
|
||||||
|
letter-spacing: 0.15px;
|
||||||
|
line-height: 1.375rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.app-timeline-meta {
|
||||||
|
color: rgba(var(--v-theme-on-surface), var(--v-disabled-opacity));
|
||||||
|
font-size: 13px;
|
||||||
|
letter-spacing: 0.4px;
|
||||||
|
line-height: 1.125rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.app-timeline-text {
|
||||||
|
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
||||||
|
font-size: .9375rem;
|
||||||
|
line-height: 1.375rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.per-page-select {
|
||||||
|
margin-block: auto;
|
||||||
|
|
||||||
|
.v-field__input {
|
||||||
|
align-items: center;
|
||||||
|
padding: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.v-field__append-inner {
|
||||||
|
align-items: center;
|
||||||
|
padding: 0;
|
||||||
|
|
||||||
|
.v-icon {
|
||||||
|
margin-inline-start: 0 !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.leading-normal {
|
||||||
|
font-weight: 600;
|
||||||
|
letter-spacing: .0094rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bg-custom-background{
|
||||||
|
background-color: rgb(var(--v-table-header-color)) !important;
|
||||||
|
}
|
||||||
41
src/admin/src/@core/scss/template/_utils.scss
Executable file
41
src/admin/src/@core/scss/template/_utils.scss
Executable file
@@ -0,0 +1,41 @@
|
|||||||
|
@use "sass:string";
|
||||||
|
|
||||||
|
/*
|
||||||
|
ℹ️ This function is helpful when we have multi dimensional value
|
||||||
|
|
||||||
|
Assume we have padding variable `$nav-padding-horizontal: 10px;`
|
||||||
|
With above variable let's say we use it in some style:
|
||||||
|
```scss
|
||||||
|
.selector {
|
||||||
|
margin-left: $nav-padding-horizontal;
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
Now, problem is we can also have value as `$nav-padding-horizontal: 10px 15px;`
|
||||||
|
In this case above style will be invalid.
|
||||||
|
|
||||||
|
This function will extract the left most value from the variable value.
|
||||||
|
|
||||||
|
$nav-padding-horizontal: 10px; => 10px;
|
||||||
|
$nav-padding-horizontal: 10px 15px; => 10px;
|
||||||
|
|
||||||
|
This is safe:
|
||||||
|
```scss
|
||||||
|
.selector {
|
||||||
|
margin-left: get-first-value($nav-padding-horizontal);
|
||||||
|
}
|
||||||
|
```
|
||||||
|
*/
|
||||||
|
@function get-first-value($var) {
|
||||||
|
$start-at: string.index(#{$var}, " ");
|
||||||
|
|
||||||
|
@if $start-at {
|
||||||
|
@return string.slice(
|
||||||
|
#{$var},
|
||||||
|
0,
|
||||||
|
$start-at
|
||||||
|
);
|
||||||
|
} @else {
|
||||||
|
@return $var;
|
||||||
|
}
|
||||||
|
}
|
||||||
56
src/admin/src/@core/scss/template/_variables.scss
Executable file
56
src/admin/src/@core/scss/template/_variables.scss
Executable file
@@ -0,0 +1,56 @@
|
|||||||
|
@use "sass:map";
|
||||||
|
@use "utils";
|
||||||
|
|
||||||
|
$vertical-nav-horizontal-padding-custom: 1.4375rem 1rem;
|
||||||
|
|
||||||
|
// ℹ️ We created this SCSS var to extract the start padding
|
||||||
|
// Docs: https://sass-lang.com/documentation/modules/string
|
||||||
|
// $vertical-nav-horizontal-padding => 0 8px;
|
||||||
|
// string.index(#{$vertical-nav-horizontal-padding}, " ") + 1 => 2
|
||||||
|
// string.index(#{$vertical-nav-horizontal-padding}, " ") => 1
|
||||||
|
// string.slice(0 8px, 2, -1) => 8px => $card-actions-padding-x
|
||||||
|
|
||||||
|
$vertical-nav-horizontal-padding-start: utils.get-first-value($vertical-nav-horizontal-padding-custom) !default;
|
||||||
|
$vertical-nav-items-icon-margin-inline-end: 0 !default;
|
||||||
|
|
||||||
|
@forward "@core/scss/base/variables" with (
|
||||||
|
$layout-vertical-nav-collapsed-width: 68px !default,
|
||||||
|
// ℹ️ This is used to keep consistency between nav items and nav header left & right margin
|
||||||
|
// This is used by nav items & nav header
|
||||||
|
$vertical-nav-horizontal-spacing: 0 1rem !default,
|
||||||
|
$vertical-nav-horizontal-padding: $vertical-nav-horizontal-padding-custom !default,
|
||||||
|
// Vertical nav header padding
|
||||||
|
$vertical-nav-header-padding: 1.25rem 0 1.25rem $vertical-nav-horizontal-padding-start !default,
|
||||||
|
|
||||||
|
// Vertical nav icons
|
||||||
|
$vertical-nav-items-icon-size: 1.375rem !default,
|
||||||
|
$vertical-nav-items-nested-icon-size: 0.75rem !default,
|
||||||
|
|
||||||
|
|
||||||
|
// Section title margin top (when its not first child)
|
||||||
|
$vertical-nav-section-title-mt: 1.25rem !default,
|
||||||
|
|
||||||
|
$layout-vertical-nav-footer-height: 54px !default,
|
||||||
|
|
||||||
|
// Horizontal nav icons
|
||||||
|
$horizontal-nav-items-icon-size: 1.375rem !default,
|
||||||
|
$horizontal-nav-items-icon-margin-inline-end: 0.5rem !default,
|
||||||
|
|
||||||
|
// 👉 Horizontal nav
|
||||||
|
$horizontal-nav-padding: 0.625rem !default,
|
||||||
|
$horizontal-nav-third-level-icon-size: 0.75rem !default,
|
||||||
|
|
||||||
|
// Gap between top level horizontal nav items
|
||||||
|
$horizontal-nav-top-level-items-gap: 8px !default,
|
||||||
|
|
||||||
|
// ℹ️ This variable is used for horizontal nav popper content's `margin-top` and "The bridge"'s height. We need to sync both values.
|
||||||
|
$horizontal-nav-popper-content-top: calc(0.625rem + 0.375rem - 0.25rem) !default,
|
||||||
|
|
||||||
|
$font-sizes: (
|
||||||
|
"sm": 0.8125rem,
|
||||||
|
"base": 0.9375rem,
|
||||||
|
),
|
||||||
|
$font-line-height: (
|
||||||
|
"base": 1.375rem,
|
||||||
|
),
|
||||||
|
);
|
||||||
51
src/admin/src/@core/scss/template/_vertical-nav.scss
Executable file
51
src/admin/src/@core/scss/template/_vertical-nav.scss
Executable file
@@ -0,0 +1,51 @@
|
|||||||
|
@use "@layouts/styles/mixins" as layoutsMixins;
|
||||||
|
|
||||||
|
.layout-nav-type-vertical {
|
||||||
|
// 👉 Layout Vertical nav
|
||||||
|
.layout-vertical-nav {
|
||||||
|
.nav-items{
|
||||||
|
padding-block-start: .25rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 👉 Vertical nav group
|
||||||
|
.nav-group {
|
||||||
|
.nav-group-arrow {
|
||||||
|
font-size: 1.375rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 👉 Nav group & Link
|
||||||
|
.nav-link,
|
||||||
|
.nav-group {
|
||||||
|
// shadow cut issue fix
|
||||||
|
margin-block-end: -0.5rem;
|
||||||
|
padding-block-end: 0.5rem;
|
||||||
|
|
||||||
|
a {
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 👉 Nav section title
|
||||||
|
.nav-section-title {
|
||||||
|
.placeholder-icon {
|
||||||
|
transform: translateX(-3px);
|
||||||
|
|
||||||
|
@include layoutsMixins.rtl {
|
||||||
|
transform: translateX(3px);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 👉 Nav header
|
||||||
|
.nav-header {
|
||||||
|
padding-block: 1.25rem;
|
||||||
|
padding-inline: 23px 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 👉 Overlay
|
||||||
|
.layout-overlay{
|
||||||
|
touch-action: none;
|
||||||
|
}
|
||||||
10
src/admin/src/@core/scss/template/index.scss
Executable file
10
src/admin/src/@core/scss/template/index.scss
Executable file
@@ -0,0 +1,10 @@
|
|||||||
|
@use "sass:map";
|
||||||
|
@use "@core/scss/base";
|
||||||
|
|
||||||
|
// layouts
|
||||||
|
@use "vertical-nav";
|
||||||
|
@use "default-layout-w-vertical-nav";
|
||||||
|
|
||||||
|
// Utilities
|
||||||
|
@use "utilities";
|
||||||
|
|
||||||
107
src/admin/src/@core/scss/template/libs/apex-chart.scss
Executable file
107
src/admin/src/@core/scss/template/libs/apex-chart.scss
Executable file
@@ -0,0 +1,107 @@
|
|||||||
|
@use "@styles/variables/_vuetify.scss" as vuetify;
|
||||||
|
@use "@layouts/styles/mixins" as layoutsMixins;
|
||||||
|
@use "@core/scss/base/mixins";
|
||||||
|
|
||||||
|
body .apexcharts-canvas {
|
||||||
|
&line[stroke="transparent"] {
|
||||||
|
display: "none";
|
||||||
|
}
|
||||||
|
|
||||||
|
.apexcharts-tooltip {
|
||||||
|
@include mixins.elevation(3);
|
||||||
|
|
||||||
|
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
||||||
|
background: rgb(var(--v-theme-surface));
|
||||||
|
|
||||||
|
.apexcharts-tooltip-title {
|
||||||
|
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
||||||
|
background: rgb(var(--v-theme-surface));
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.apexcharts-theme-light {
|
||||||
|
color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
|
||||||
|
}
|
||||||
|
|
||||||
|
&.apexcharts-theme-dark {
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.apexcharts-tooltip-series-group:first-of-type {
|
||||||
|
padding-block-end: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.apexcharts-xaxistooltip {
|
||||||
|
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
||||||
|
background: rgb(var(--v-theme-grey-50));
|
||||||
|
color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
|
||||||
|
|
||||||
|
&::after {
|
||||||
|
border-block-end-color: rgb(var(--v-theme-grey-50));
|
||||||
|
}
|
||||||
|
|
||||||
|
&::before {
|
||||||
|
border-block-end-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.apexcharts-yaxistooltip {
|
||||||
|
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
||||||
|
background: rgb(var(--v-theme-grey-50));
|
||||||
|
|
||||||
|
&::after {
|
||||||
|
border-inline-start-color: rgb(var(--v-theme-grey-50));
|
||||||
|
}
|
||||||
|
|
||||||
|
&::before {
|
||||||
|
border-inline-start-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.apexcharts-xaxistooltip-text,
|
||||||
|
.apexcharts-yaxistooltip-text {
|
||||||
|
color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
|
||||||
|
}
|
||||||
|
|
||||||
|
.apexcharts-yaxis .apexcharts-yaxis-texts-g .apexcharts-yaxis-label {
|
||||||
|
@include layoutsMixins.rtl {
|
||||||
|
text-anchor: start;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.apexcharts-text,
|
||||||
|
.apexcharts-tooltip-text,
|
||||||
|
.apexcharts-datalabel-label,
|
||||||
|
.apexcharts-datalabel,
|
||||||
|
.apexcharts-xaxistooltip-text,
|
||||||
|
.apexcharts-yaxistooltip-text,
|
||||||
|
.apexcharts-legend-text {
|
||||||
|
font-family: vuetify.$body-font-family !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.apexcharts-pie-label {
|
||||||
|
fill: white;
|
||||||
|
filter: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.apexcharts-marker {
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.apexcharts-tooltip-marker {
|
||||||
|
margin-inline-end: 0.625rem;
|
||||||
|
|
||||||
|
@include layoutsMixins.rtl {
|
||||||
|
margin-inline: 0 0.625rem !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.apexcharts-legend-marker {
|
||||||
|
margin-inline-end: 0.3875rem !important;
|
||||||
|
|
||||||
|
@include layoutsMixins.rtl {
|
||||||
|
margin-inline-end: 0.75rem !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
38
src/admin/src/@core/scss/template/libs/vuetify/_overrides.scss
Executable file
38
src/admin/src/@core/scss/template/libs/vuetify/_overrides.scss
Executable file
@@ -0,0 +1,38 @@
|
|||||||
|
@use "@core/scss/base/utils";
|
||||||
|
@use "@configured-variables" as variables;
|
||||||
|
|
||||||
|
// 👉 Body
|
||||||
|
// set body font size 15px
|
||||||
|
body {
|
||||||
|
font-size: 15px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 👉 Typography
|
||||||
|
.text-h1,
|
||||||
|
.text-h2,
|
||||||
|
.text-h3,
|
||||||
|
.text-h4,
|
||||||
|
.text-h5,
|
||||||
|
.text-h6,
|
||||||
|
.text-overline,
|
||||||
|
.v-input {
|
||||||
|
color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
|
||||||
|
}
|
||||||
|
|
||||||
|
.text-caption{
|
||||||
|
color: rgba(var(--v-theme-on-background), var(--v-disabled-opacity));
|
||||||
|
}
|
||||||
|
|
||||||
|
.v-card-subtitle,
|
||||||
|
.text-subtitle-1,
|
||||||
|
.text-subtitle-2 {
|
||||||
|
color: rgba(var(--v-theme-on-background), 0.55);
|
||||||
|
}
|
||||||
|
|
||||||
|
// 👉 Input placeholder alignment
|
||||||
|
.v-input--density-compact{
|
||||||
|
input::placeholder {
|
||||||
|
position: relative;
|
||||||
|
inset-block-start: 1px;
|
||||||
|
}
|
||||||
|
}
|
||||||
323
src/admin/src/@core/scss/template/libs/vuetify/_variables.scss
Executable file
323
src/admin/src/@core/scss/template/libs/vuetify/_variables.scss
Executable file
@@ -0,0 +1,323 @@
|
|||||||
|
$font-family-custom: "Inter Variable", sans-serif, -apple-system, blinkmacsystemfont, "Segoe UI", roboto,
|
||||||
|
"Helvetica Neue", arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
||||||
|
/* stylelint-disable length-zero-no-unit */
|
||||||
|
@forward "../../../base/libs/vuetify/variables" with (
|
||||||
|
$body-font-family: $font-family-custom !default,
|
||||||
|
$border-radius-root: 6px,
|
||||||
|
|
||||||
|
$rounded: (
|
||||||
|
"sm": 4px,
|
||||||
|
"shaped": 25px 0,
|
||||||
|
"lg":8px,
|
||||||
|
) !default,
|
||||||
|
|
||||||
|
// 👉 Typography
|
||||||
|
$typography: (
|
||||||
|
"h1": (
|
||||||
|
"size": 2.875rem,
|
||||||
|
"weight": 500,
|
||||||
|
"line-height": 4.25rem,
|
||||||
|
"letter-spacing": normal,
|
||||||
|
),
|
||||||
|
"h2": (
|
||||||
|
"size": 2.375rem,
|
||||||
|
"weight": 500,
|
||||||
|
"line-height": 3.5rem,
|
||||||
|
"letter-spacing": normal,
|
||||||
|
),
|
||||||
|
"h3": (
|
||||||
|
"size": 1.75rem,
|
||||||
|
"weight": 500,
|
||||||
|
"line-height": 2.625rem,
|
||||||
|
"letter-spacing": normal,
|
||||||
|
),
|
||||||
|
"h4": (
|
||||||
|
"size": 1.5rem,
|
||||||
|
"weight": 500,
|
||||||
|
"line-height": 2.375rem,
|
||||||
|
"letter-spacing": normal,
|
||||||
|
),
|
||||||
|
"h5": (
|
||||||
|
"size": 1.125rem,
|
||||||
|
"weight": 500,
|
||||||
|
"line-height": 1.75rem,
|
||||||
|
"letter-spacing": normal,
|
||||||
|
),
|
||||||
|
"h6": (
|
||||||
|
"size": 0.9375rem,
|
||||||
|
"line-height": 1.375rem,
|
||||||
|
"letter-spacing": normal,
|
||||||
|
),
|
||||||
|
"subtitle-1": (
|
||||||
|
"size": 0.9375rem,
|
||||||
|
"line-height": 1.375rem,
|
||||||
|
"letter-spacing": normal,
|
||||||
|
),
|
||||||
|
"subtitle-2": (
|
||||||
|
"size": 0.8125rem,
|
||||||
|
"line-height": 1.25rem,
|
||||||
|
"letter-spacing": normal,
|
||||||
|
),
|
||||||
|
"body-1": (
|
||||||
|
"size": 0.9375rem,
|
||||||
|
"line-height": 1.375rem,
|
||||||
|
"letter-spacing": normal,
|
||||||
|
),
|
||||||
|
"body-2": (
|
||||||
|
"size": 0.8125rem,
|
||||||
|
"line-height": 1.25rem,
|
||||||
|
"letter-spacing": normal,
|
||||||
|
),
|
||||||
|
"caption": (
|
||||||
|
"size": 0.8125rem,
|
||||||
|
"line-height": 1.125rem,
|
||||||
|
"letter-spacing": 0.025rem,
|
||||||
|
),
|
||||||
|
"overline": (
|
||||||
|
"weight": 400,
|
||||||
|
"line-height": 0.875rem,
|
||||||
|
"letter-spacing": 0.05rem,
|
||||||
|
),
|
||||||
|
"button": (
|
||||||
|
"size": 0.9375rem,
|
||||||
|
"weight": 500,
|
||||||
|
"letter-spacing": normal,
|
||||||
|
"font-family": $font-family-custom,
|
||||||
|
"text-transform": capitalize,
|
||||||
|
),
|
||||||
|
)!default,
|
||||||
|
|
||||||
|
// 👉 Shadows
|
||||||
|
$shadow-key-umbra: (
|
||||||
|
0: (0 0 0 0 rgba(var(--v-shadow-key-umbra-color), 1)),
|
||||||
|
1: (0 2px 4px rgba(var(--v-shadow-key-umbra-color), 0.12)),
|
||||||
|
2: (0 2px 4px 0 rgba(var(--v-shadow-key-umbra-color), var(--v-shadow-xs-opacity))),
|
||||||
|
3: (0 3px 8px rgba(var(--v-shadow-key-umbra-color), 0.14)),
|
||||||
|
4: (0 3px 6px 0 rgba(var(--v-shadow-key-umbra-color), var(--v-shadow-sm-opacity))),
|
||||||
|
5: (0 4px 10px rgba(var(--v-shadow-key-umbra-color), 0.15)),
|
||||||
|
6: (0 4px 10px 0 rgba(var(--v-shadow-key-umbra-color), var(--v-shadow-md-opacity))),
|
||||||
|
7: (0 4px 18px rgba(var(--v-shadow-key-umbra-color), 0.1)),
|
||||||
|
8: (0 6px 16px 0 rgba(var(--v-shadow-key-umbra-color), var(--v-shadow-lg-opacity))),
|
||||||
|
9: (0 5px 14px rgba(var(--v-shadow-key-umbra-color), 0.18)),
|
||||||
|
10: (0 8px 28px 0 rgba(var(--v-shadow-key-umbra-color), var(--v-shadow-xl-opacity))),
|
||||||
|
11: (0 5px 16px rgba(var(--v-shadow-key-umbra-color), 0.2)),
|
||||||
|
12: (0 6px 17px rgba(var(--v-shadow-key-umbra-color), 0.22)),
|
||||||
|
13: (0 6px 18px rgba(var(--v-shadow-key-umbra-color), 0.22)),
|
||||||
|
14: (0 6px 19px rgba(var(--v-shadow-key-umbra-color), 0.24)),
|
||||||
|
15: (0 7px 20px rgba(var(--v-shadow-key-umbra-color), 0.24)),
|
||||||
|
16: (0 7px 21px rgba(var(--v-shadow-key-umbra-color), 0.26)),
|
||||||
|
17: (0 7px 22px rgba(var(--v-shadow-key-umbra-color), 0.26)),
|
||||||
|
18: (0 8px 23px rgba(var(--v-shadow-key-umbra-color), 0.28)),
|
||||||
|
19: (0 8px 24px 6px rgba(var(--v-shadow-key-umbra-color), 0.28)),
|
||||||
|
20: (0 9px 25px rgba(var(--v-shadow-key-umbra-color), 0.3)),
|
||||||
|
21: (0 9px 26px rgba(var(--v-shadow-key-umbra-color), 0.32)),
|
||||||
|
22: (0 9px 27px rgba(var(--v-shadow-key-umbra-color), 0.32)),
|
||||||
|
23: (0 10px 28px rgba(var(--v-shadow-key-umbra-color), 0.34)),
|
||||||
|
24: (0 10px 30px rgba(var(--v-shadow-key-umbra-color), 0.34))
|
||||||
|
) !default,
|
||||||
|
|
||||||
|
$shadow-key-penumbra: (
|
||||||
|
0: (0 0 transparent),
|
||||||
|
1: (0 0 transparent),
|
||||||
|
2: (0 0 transparent),
|
||||||
|
3: (0 0 transparent),
|
||||||
|
4: (0 0 transparent),
|
||||||
|
5: (0 0 transparent),
|
||||||
|
6: (0 0 transparent),
|
||||||
|
7: (0 0 transparent),
|
||||||
|
8: (0 0 transparent),
|
||||||
|
9: (0 0 transparent),
|
||||||
|
10: (0 0 transparent),
|
||||||
|
11: (0 0 transparent),
|
||||||
|
12: (0 0 transparent),
|
||||||
|
13: (0 0 transparent),
|
||||||
|
14: (0 0 transparent),
|
||||||
|
15: (0 0 transparent),
|
||||||
|
16: (0 0 transparent),
|
||||||
|
17: (0 0 transparent),
|
||||||
|
18: (0 0 transparent),
|
||||||
|
19: (0 0 transparent),
|
||||||
|
20: (0 0 transparent),
|
||||||
|
21: (0 0 transparent),
|
||||||
|
22: (0 0 transparent),
|
||||||
|
23: (0 0 transparent),
|
||||||
|
24: (0 0 transparent),
|
||||||
|
) !default,
|
||||||
|
|
||||||
|
$shadow-key-ambient: (
|
||||||
|
0: (0 0 transparent),
|
||||||
|
1: (0 0 transparent),
|
||||||
|
2: (0 0 transparent),
|
||||||
|
3: (0 0 transparent),
|
||||||
|
4: (0 0 transparent),
|
||||||
|
5: (0 0 transparent),
|
||||||
|
6: (0 0 transparent),
|
||||||
|
7: (0 0 transparent),
|
||||||
|
8: (0 0 transparent),
|
||||||
|
9: (0 0 transparent),
|
||||||
|
10: (0 0 transparent),
|
||||||
|
11: (0 0 transparent),
|
||||||
|
12: (0 0 transparent),
|
||||||
|
13: (0 0 transparent),
|
||||||
|
14: (0 0 transparent),
|
||||||
|
15: (0 0 transparent),
|
||||||
|
16: (0 0 transparent),
|
||||||
|
17: (0 0 transparent),
|
||||||
|
18: (0 0 transparent),
|
||||||
|
19: (0 0 transparent),
|
||||||
|
20: (0 0 transparent),
|
||||||
|
21: (0 0 transparent),
|
||||||
|
22: (0 0 transparent),
|
||||||
|
23: (0 0 transparent),
|
||||||
|
24: (0 0 transparent),
|
||||||
|
) !default,
|
||||||
|
|
||||||
|
// 👉 Avatar
|
||||||
|
$avatar-color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity)) !default,
|
||||||
|
|
||||||
|
// 👉 Alert
|
||||||
|
$alert-title-font-size: 1.125rem !default,
|
||||||
|
$alert-text-line-height: 1.625rem !default,
|
||||||
|
|
||||||
|
// 👉 Autocomplete
|
||||||
|
$autocomplete-content-elevation: 8 !default,
|
||||||
|
$combobox-content-elevation: 8 !default,
|
||||||
|
$select-content-elevation: 8 !default,
|
||||||
|
|
||||||
|
// 👉 Badge
|
||||||
|
$badge-height: 1.375rem !default,
|
||||||
|
$badge-min-width: 1.375rem !default,
|
||||||
|
$badge-dot-height: 8px !default,
|
||||||
|
$badge-dot-width: 8px !default,
|
||||||
|
$badge-border-radius: 50px !default,
|
||||||
|
$badge-font-size: 0.8125rem !default,
|
||||||
|
|
||||||
|
// 👉 Buttons
|
||||||
|
$button-height: 38px !default,
|
||||||
|
$button-padding-ratio: 2.15 !default,
|
||||||
|
$button-margin-start: 0 !default,
|
||||||
|
$button-disabled-opacity: .45 !default,
|
||||||
|
$button-elevation: ('default': 2, 'hover': 2, 'active': 0) !default,
|
||||||
|
$button-density: ('default': 0, 'comfortable': -1, 'compact': -2) !default,
|
||||||
|
$button-line-height: 1.375rem !default,
|
||||||
|
$button-margin-end: 0.375rem !default,
|
||||||
|
$button-card-actions-padding: 0 18px !default,
|
||||||
|
|
||||||
|
// 👉 Chip
|
||||||
|
$chip-font-size: 13px !default,
|
||||||
|
$chip-close-size: 20px !default,
|
||||||
|
$chip-font-weight: 500 !default,
|
||||||
|
|
||||||
|
// 👉 Cards
|
||||||
|
$card-actions-padding: 0 6px 6px !default,
|
||||||
|
$card-title-font-size: 1.125rem !default,
|
||||||
|
$card-title-line-height: 1.75rem !default,
|
||||||
|
$card-text-font-size: 0.9375rem !default,
|
||||||
|
$card-text-line-height: 1.375rem !default,
|
||||||
|
$card-subtitle-font-size: 0.9375rem !default,
|
||||||
|
$card-subtitle-line-height: 1.375rem !default,
|
||||||
|
$card-subtitle-font-weight: 400 !default,
|
||||||
|
$card-subtitle-header-padding: 0 !default,
|
||||||
|
|
||||||
|
// 👉 Dialog
|
||||||
|
$dialog-elevation: 10 !default,
|
||||||
|
$dialog-card-header-padding: 20px !default,
|
||||||
|
$dialog-card-text-padding: 0 20px 20px !default,
|
||||||
|
|
||||||
|
// 👉 Expansion Panel
|
||||||
|
$expansion-panel-active-margin: 0.5rem !default,
|
||||||
|
$expansion-panel-text-padding: 0 20px 20px !default,
|
||||||
|
$expansion-panel-title-padding: 12px 20px !default,
|
||||||
|
$expansion-panel-title-min-height: 46px !default,
|
||||||
|
$expansion-panel-active-title-min-height: 46px !default,
|
||||||
|
|
||||||
|
// 👉 Field
|
||||||
|
$field-outline-opacity: 0.22 !default,
|
||||||
|
$field-control-affixed-padding: 16px !default,
|
||||||
|
$field-control-affixed-inner-padding: 10px !default,
|
||||||
|
$field-font-size: 15px !default,
|
||||||
|
|
||||||
|
// 👉 Label
|
||||||
|
$label-font-size: 0.9375rem !default,
|
||||||
|
$label-letter-spacing: normal !default,
|
||||||
|
|
||||||
|
// 👉 List
|
||||||
|
$list-item-one-line-min-height: 38px !default,
|
||||||
|
$list-subheader-min-height: 38px !default,
|
||||||
|
$list-item-padding: 8px 20px !default,
|
||||||
|
$list-subheader-font-weight: 500 !default,
|
||||||
|
$list-item-icon-margin-start: 12px !default,
|
||||||
|
$list-item-min-height: 38px !default,
|
||||||
|
$list-item-nav-title-font-size: 0.9375rem !default,
|
||||||
|
$list-item-nav-title-font-weight: 400 !default,
|
||||||
|
$list-item-nav-subtitle-font-size: 0.8125rem !default,
|
||||||
|
$list-item-subtitle-line-height: 1.25rem !default,
|
||||||
|
|
||||||
|
// 👉 label
|
||||||
|
$field-label-floating-scale: 0.8125 !default,
|
||||||
|
|
||||||
|
// 👉 Snackbar
|
||||||
|
$snackbar-background: rgb(var(--v-tooltip-background)) !default,
|
||||||
|
$snackbar-color: rgb(var(--v-theme-surface)) !default,
|
||||||
|
$snackbar-content-padding: 12px 16px !default,
|
||||||
|
$snackbar-wrapper-padding: 0 !default,
|
||||||
|
$snackbar-wrapper-min-height: 44px !default,
|
||||||
|
$snackbar-elevation: 2 !default,
|
||||||
|
$snackbar-btn-padding: 0 10px !default,
|
||||||
|
$snackbar-action-margin: 16px !default,
|
||||||
|
|
||||||
|
// 👉 Slider
|
||||||
|
$slider-thumb-hover-opacity: var(--v-activated-opacity) !default,
|
||||||
|
|
||||||
|
// 👉 Switch
|
||||||
|
$switch-inset-track-width: 1.875rem !default,
|
||||||
|
$switch-inset-track-height: 1.125rem !default,
|
||||||
|
$switch-inset-thumb-height: 0.875rem !default,
|
||||||
|
$switch-inset-thumb-width: 0.875rem !default,
|
||||||
|
$switch-inset-thumb-off-height: 0.875rem !default,
|
||||||
|
$switch-track-opacity: 1 !default,
|
||||||
|
$switch-track-background: rgba(var(--v-theme-on-surface), var(--v-focus-opacity)) !default,
|
||||||
|
|
||||||
|
// 👉 Tooltip
|
||||||
|
$tooltip-background-color: rgb(var(--v-tooltip-background)) !default,
|
||||||
|
$tooltip-text-color: rgb(var(--v-theme-surface)) !default,
|
||||||
|
$tooltip-border-radius: 0.25rem !default,
|
||||||
|
$tooltip-font-size: 0.8125rem !default,
|
||||||
|
$tooltip-padding: 4px 12px !default,
|
||||||
|
$tooltip-line-height: 1.25rem !default,
|
||||||
|
|
||||||
|
// 👉 VPagination
|
||||||
|
$pagination-item-margin: 0.1875rem !default,
|
||||||
|
|
||||||
|
// 👉 Tabs
|
||||||
|
$tabs-height: 38px !default,
|
||||||
|
$tab-min-width: 60px !default,
|
||||||
|
|
||||||
|
// 👉 Timeline
|
||||||
|
$timeline-divider-line-background: rgba(var(--v-border-color), var(--v-border-opacity)) !default,
|
||||||
|
$timeline-divider-line-thickness: 1.5px !default,
|
||||||
|
$timeline-item-padding: 16px !default,
|
||||||
|
|
||||||
|
// 👉 Slider
|
||||||
|
$slider-track-active-size-offset: 0px !default,
|
||||||
|
$slider-thumb-label-border-radius: 6px !default,
|
||||||
|
$slider-thumb-label-height: 28px !default,
|
||||||
|
$slider-thumb-label-padding: 4px 10px !default,
|
||||||
|
|
||||||
|
// 👉 Table
|
||||||
|
$table-row-height: 50px !default,
|
||||||
|
$table-header-font-weight: 500 !default,
|
||||||
|
$table-color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity)) !default,
|
||||||
|
$table-font-size: 15px !default,
|
||||||
|
$table-column-padding: 0 20px !default,
|
||||||
|
|
||||||
|
// 👉 Radio
|
||||||
|
$radio-group-label-selection-group-padding-inline: 0 !default,
|
||||||
|
|
||||||
|
// 👉 navigation drawer
|
||||||
|
$navigation-drawer-temporary-elevation: 8 !default,
|
||||||
|
$navigation-drawer-transition-duration: 0.4s !default,
|
||||||
|
|
||||||
|
// 👉 Messages
|
||||||
|
$messages-font-size: 13px !default,
|
||||||
|
);
|
||||||
103
src/admin/src/@core/scss/template/libs/vuetify/components/_alert.scss
Executable file
103
src/admin/src/@core/scss/template/libs/vuetify/components/_alert.scss
Executable file
@@ -0,0 +1,103 @@
|
|||||||
|
@use "@core/scss/base/mixins";
|
||||||
|
@use "@configured-variables" as variables;
|
||||||
|
|
||||||
|
/* 👉 Alert
|
||||||
|
/ ℹ️ custom icon styling */
|
||||||
|
|
||||||
|
// 👉 Alert
|
||||||
|
.v-alert {
|
||||||
|
.v-alert__content {
|
||||||
|
font-size: 0.9375rem;
|
||||||
|
font-weight: 400;
|
||||||
|
line-height: 1.375rem;
|
||||||
|
|
||||||
|
.v-alert-title {
|
||||||
|
margin-block-end: 0.25rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&:not(.v-alert--prominent) .v-alert__prepend {
|
||||||
|
border-radius: 0.375rem;
|
||||||
|
block-size: 1.875rem;
|
||||||
|
inline-size: 1.875rem;
|
||||||
|
|
||||||
|
.v-icon {
|
||||||
|
margin: auto;
|
||||||
|
block-size: 1.375rem !important;
|
||||||
|
font-size: 1.375rem !important;
|
||||||
|
inline-size: 1.375rem !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&:not(.v-alert--prominent) {
|
||||||
|
&.v-alert--variant-flat,
|
||||||
|
&.v-alert--variant-elevated {
|
||||||
|
.v-alert__prepend {
|
||||||
|
background-color: #fff;
|
||||||
|
|
||||||
|
@include mixins.elevation(2);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&.v-alert--variant-tonal {
|
||||||
|
.v-alert__prepend {
|
||||||
|
z-index: 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.v-alert__close {
|
||||||
|
.v-btn--icon {
|
||||||
|
--v-btn-height: 34px;
|
||||||
|
|
||||||
|
.v-btn__content {
|
||||||
|
padding: 0.375rem;
|
||||||
|
|
||||||
|
.v-icon {
|
||||||
|
block-size: 1.25rem;
|
||||||
|
font-size: 1.25rem;
|
||||||
|
inline-size: 1.25rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@each $color-name in variables.$theme-colors-name {
|
||||||
|
.v-alert {
|
||||||
|
&:not(.v-alert--prominent) {
|
||||||
|
&.bg-#{$color-name},
|
||||||
|
&.text-#{$color-name} {
|
||||||
|
.v-alert__prepend .v-icon {
|
||||||
|
color: rgb(var(--v-theme-#{$color-name})) !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&.v-alert--variant-tonal {
|
||||||
|
&.text-#{$color-name},
|
||||||
|
&.bg-#{$color-name} {
|
||||||
|
.v-alert__underlay {
|
||||||
|
background: rgb(var(--v-theme-#{$color-name})) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.v-alert__prepend {
|
||||||
|
background-color: rgb(var(--v-theme-#{$color-name}));
|
||||||
|
|
||||||
|
.v-icon {
|
||||||
|
color: #fff !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&.v-alert--variant-outlined {
|
||||||
|
&.text-#{$color-name},
|
||||||
|
&.bg-#{$color-name} {
|
||||||
|
.v-alert__prepend {
|
||||||
|
background-color: rgba(var(--v-theme-#{$color-name}), 0.16);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
28
src/admin/src/@core/scss/template/libs/vuetify/components/_avatar.scss
Executable file
28
src/admin/src/@core/scss/template/libs/vuetify/components/_avatar.scss
Executable file
@@ -0,0 +1,28 @@
|
|||||||
|
@use "@core/scss/base/mixins";
|
||||||
|
|
||||||
|
// 👉 Avatar
|
||||||
|
body {
|
||||||
|
.v-avatar {
|
||||||
|
font-size: 0.9375rem;
|
||||||
|
|
||||||
|
.v-icon {
|
||||||
|
block-size: 1.5rem;
|
||||||
|
font-size: 1.5rem;
|
||||||
|
inline-size: 1.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.v-avatar--variant-tonal:not([class*="text-"]) {
|
||||||
|
.v-avatar__underlay {
|
||||||
|
--v-activated-opacity: 0.08;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.v-avatar-group {
|
||||||
|
> * {
|
||||||
|
&:hover {
|
||||||
|
@include mixins.elevation(6);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
35
src/admin/src/@core/scss/template/libs/vuetify/components/_badge.scss
Executable file
35
src/admin/src/@core/scss/template/libs/vuetify/components/_badge.scss
Executable file
@@ -0,0 +1,35 @@
|
|||||||
|
@use "@configured-variables" as variables;
|
||||||
|
|
||||||
|
// 👉 Badge
|
||||||
|
.v-badge {
|
||||||
|
&.v-badge--inline:not(.v-badge--dot) {
|
||||||
|
.v-badge__wrapper {
|
||||||
|
.v-badge__badge {
|
||||||
|
padding-block: 4px;
|
||||||
|
padding-inline: 8px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&.v-badge--tonal {
|
||||||
|
@each $color-name in variables.$theme-colors-name {
|
||||||
|
.v-badge__wrapper {
|
||||||
|
.v-badge__badge.bg-#{$color-name} {
|
||||||
|
background-color: rgba(var(--v-theme-#{$color-name}), var(--v-activated-opacity)) !important;
|
||||||
|
color: rgb(var(--v-theme-#{$color-name})) !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* stylelint-disable-next-line no-descending-specificity */
|
||||||
|
&.v-badge--bordered.v-badge--dot .v-badge__badge {
|
||||||
|
border-radius: 10px;
|
||||||
|
block-size: 12px;
|
||||||
|
inline-size: 12px;
|
||||||
|
|
||||||
|
&::after {
|
||||||
|
border-width: 2px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
271
src/admin/src/@core/scss/template/libs/vuetify/components/_button.scss
Executable file
271
src/admin/src/@core/scss/template/libs/vuetify/components/_button.scss
Executable file
@@ -0,0 +1,271 @@
|
|||||||
|
/* stylelint-disable no-descending-specificity */
|
||||||
|
@use "sass:list";
|
||||||
|
@use "sass:map";
|
||||||
|
@use "@configured-variables" as variables;
|
||||||
|
|
||||||
|
/* 👉 Button
|
||||||
|
Above map but opacity values as key and variant as value */
|
||||||
|
|
||||||
|
body {
|
||||||
|
.v-btn {
|
||||||
|
&:not(.v-btn--block) {
|
||||||
|
min-inline-size: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
&--variant-elevated,
|
||||||
|
&--variant-flat {
|
||||||
|
&.v-btn--disabled {
|
||||||
|
.v-btn__overlay {
|
||||||
|
opacity: 0.45;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Default (elevated) button
|
||||||
|
/* stylelint-disable-next-line no-duplicate-selectors */
|
||||||
|
&--variant-elevated,
|
||||||
|
&--variant-flat {
|
||||||
|
// We want darker background on hover instead of light
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
.v-btn__overlay {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&:not(.v-btn--loading, .v-btn--disabled) {
|
||||||
|
@each $color-name in variables.$theme-colors-name {
|
||||||
|
&.bg-#{$color-name} {
|
||||||
|
&:hover,
|
||||||
|
&:active,
|
||||||
|
&:focus {
|
||||||
|
background-color: rgb(var(--v-theme-#{$color-name}-darken-1)) !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&--variant-elevated {
|
||||||
|
&:active {
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Outlined variant
|
||||||
|
&--variant-outlined,
|
||||||
|
&--variant-text {
|
||||||
|
.v-btn__overlay {
|
||||||
|
--v-hover-opacity: 0.08;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:active {
|
||||||
|
.v-btn__overlay {
|
||||||
|
opacity: var(--v-hover-opacity);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&:focus {
|
||||||
|
.v-btn__overlay {
|
||||||
|
opacity: var(--v-hover-opacity);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Tonal variant
|
||||||
|
&--variant-tonal {
|
||||||
|
&:hover {
|
||||||
|
.v-btn__underlay {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.v-btn__overlay {
|
||||||
|
--v-hover-opacity: 0.24;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&:active {
|
||||||
|
.v-btn__overlay {
|
||||||
|
--v-hover-opacity: 0.24;
|
||||||
|
|
||||||
|
opacity: var(--v-hover-opacity);
|
||||||
|
}
|
||||||
|
|
||||||
|
.v-btn__underlay {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&:focus {
|
||||||
|
.v-btn__overlay {
|
||||||
|
--v-hover-opacity: 0.24;
|
||||||
|
|
||||||
|
opacity: var(--v-hover-opacity);
|
||||||
|
}
|
||||||
|
|
||||||
|
.v-btn__underlay {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&--icon.v-btn--density-default {
|
||||||
|
block-size: var(--v-btn-height);
|
||||||
|
inline-size: var(--v-btn-height);
|
||||||
|
padding-inline: 6px;
|
||||||
|
|
||||||
|
&.v-btn--size-default {
|
||||||
|
.v-icon {
|
||||||
|
--v-icon-size-multiplier: 1 !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&.v-btn--size-small {
|
||||||
|
.v-icon {
|
||||||
|
block-size: 20px;
|
||||||
|
font-size: 20px;
|
||||||
|
inline-size: 20px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&.v-btn--size-large {
|
||||||
|
.v-icon {
|
||||||
|
block-size: 28px;
|
||||||
|
font-size: 28px;
|
||||||
|
inline-size: 28px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&:not(.v-btn--icon) .v-icon {
|
||||||
|
--v-icon-size-multiplier: 0.7115;
|
||||||
|
|
||||||
|
inline-size: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
&--variant-text,
|
||||||
|
&--variant-plain {
|
||||||
|
&:not(.v-btn--icon) {
|
||||||
|
padding-inline: 14px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Button Size
|
||||||
|
&--size-x-small {
|
||||||
|
--v-btn-height: 28px;
|
||||||
|
--v-btn-size: 11px;
|
||||||
|
|
||||||
|
&:not(.v-btn--icon) {
|
||||||
|
border-radius: 0.125rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
line-height: 14px;
|
||||||
|
padding-block: 0;
|
||||||
|
padding-inline: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&--size-small {
|
||||||
|
--v-btn-height: 34px;
|
||||||
|
--v-btn-size: 13px;
|
||||||
|
|
||||||
|
&:not(.v-btn--icon) {
|
||||||
|
border-radius: 0.25rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
line-height: 18px;
|
||||||
|
padding-block: 0;
|
||||||
|
padding-inline: 14px;
|
||||||
|
|
||||||
|
.v-icon {
|
||||||
|
--v-icon-size-multiplier: 0.718;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&--size-large {
|
||||||
|
--v-btn-height: 42px;
|
||||||
|
--v-btn-size: 17px;
|
||||||
|
|
||||||
|
&:not(.v-btn--icon) {
|
||||||
|
border-radius: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
line-height: 26px;
|
||||||
|
padding-block: 0;
|
||||||
|
padding-inline: 22px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&--size-x-large {
|
||||||
|
--v-btn-height: 48px;
|
||||||
|
--v-btn-size: 19px;
|
||||||
|
|
||||||
|
&:not(.v-btn--icon) {
|
||||||
|
border-radius: 0.625rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
line-height: 30px;
|
||||||
|
padding-block: 0;
|
||||||
|
padding-inline: 26px;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Toggle Button
|
||||||
|
&-toggle {
|
||||||
|
.v-btn {
|
||||||
|
border-radius: 0.375rem;
|
||||||
|
block-size: 52px !important;
|
||||||
|
border-inline-end: none;
|
||||||
|
inline-size: 52px !important;
|
||||||
|
|
||||||
|
&.v-btn--density-comfortable {
|
||||||
|
block-size: 44px !important;
|
||||||
|
inline-size: 44px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.v-btn--density-compact {
|
||||||
|
block-size: 36px !important;
|
||||||
|
inline-size: 36px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.v-icon {
|
||||||
|
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
||||||
|
font-size: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&--active {
|
||||||
|
.v-icon {
|
||||||
|
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&.v-btn-group {
|
||||||
|
align-items: center;
|
||||||
|
padding: 7px;
|
||||||
|
border: 1px solid rgba(var(--v-border-color), var(--v-border-opacity));
|
||||||
|
block-size: 66px;
|
||||||
|
|
||||||
|
.v-btn.v-btn--active {
|
||||||
|
.v-btn__overlay {
|
||||||
|
--v-activated-opacity: 0.08;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&.v-btn-group--density-compact {
|
||||||
|
block-size: 50px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.v-btn-group--density-comfortable {
|
||||||
|
block-size: 58px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 👉 Btn group
|
||||||
|
.v-btn-group {
|
||||||
|
border: none;
|
||||||
|
|
||||||
|
&.v-btn-group--divided .v-btn:not(:last-child) {
|
||||||
|
border-inline-end-color: unset;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
1
src/admin/src/@core/scss/template/libs/vuetify/components/_cards.scss
Executable file
1
src/admin/src/@core/scss/template/libs/vuetify/components/_cards.scss
Executable file
@@ -0,0 +1 @@
|
|||||||
|
// 👉 Card
|
||||||
42
src/admin/src/@core/scss/template/libs/vuetify/components/_checkbox.scss
Executable file
42
src/admin/src/@core/scss/template/libs/vuetify/components/_checkbox.scss
Executable file
@@ -0,0 +1,42 @@
|
|||||||
|
@use "sass:list";
|
||||||
|
@use "sass:map";
|
||||||
|
@use "@styles/variables/vuetify";
|
||||||
|
@use "@configured-variables" as variables;
|
||||||
|
|
||||||
|
// 👉 checkbox box shadow
|
||||||
|
.v-checkbox-btn {
|
||||||
|
&.v-selection-control--dirty {
|
||||||
|
.v-selection-control__input {
|
||||||
|
.v-icon.custom-checkbox-checked,
|
||||||
|
.v-icon.custom-checkbox-indeterminate {
|
||||||
|
// ℹ️ Using filter: drop-shadow() instead of box-shadow because box-shadow creates white background for SVG;Usingfilter
|
||||||
|
filter: drop-shadow(rgba(var(--v-shadow-key-umbra-color), 16%) 0 2px 4px);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&.v-selection-control {
|
||||||
|
.v-label {
|
||||||
|
color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
|
||||||
|
}
|
||||||
|
|
||||||
|
.v-selection-control__input {
|
||||||
|
svg {
|
||||||
|
font-size: 1.5rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&:not(.v-selection-control--dirty) {
|
||||||
|
.v-selection-control__input {
|
||||||
|
> .v-icon {
|
||||||
|
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
> .custom-checkbox-indeterminate {
|
||||||
|
color: rgb(var(--v-theme-primary));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
99
src/admin/src/@core/scss/template/libs/vuetify/components/_chip.scss
Executable file
99
src/admin/src/@core/scss/template/libs/vuetify/components/_chip.scss
Executable file
@@ -0,0 +1,99 @@
|
|||||||
|
// 👉 Chip
|
||||||
|
.v-chip {
|
||||||
|
line-height: 1.25rem !important;
|
||||||
|
|
||||||
|
&:not(.v-chip--variant-elevated) {
|
||||||
|
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
||||||
|
}
|
||||||
|
|
||||||
|
.v-chip__close {
|
||||||
|
margin-inline: 4px -8px !important;
|
||||||
|
|
||||||
|
.v-icon {
|
||||||
|
opacity: 0.7;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&:not([class*="text-"]) {
|
||||||
|
--v-activated-opacity: 0.08;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.v-chip--size-small {
|
||||||
|
--v-chip-height: 24px !important;
|
||||||
|
|
||||||
|
font-size: 13px !important;
|
||||||
|
padding-block: 0 !important;
|
||||||
|
padding-inline: 12px !important;
|
||||||
|
|
||||||
|
.v-chip__prepend {
|
||||||
|
.v-icon--start {
|
||||||
|
font-size: 1rem;
|
||||||
|
margin-inline: -8px 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.v-avatar {
|
||||||
|
--v-avatar-height: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.v-avatar--start {
|
||||||
|
margin-inline: -8px 4px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.v-chip__append {
|
||||||
|
.v-icon--end {
|
||||||
|
font-size: 1rem;
|
||||||
|
margin-inline: 4px -8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.v-avatar {
|
||||||
|
--v-avatar-height: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.v-avatar--end {
|
||||||
|
margin-inline: 4px -8px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.v-chip__close {
|
||||||
|
font-size: 16px;
|
||||||
|
max-block-size: 16px;
|
||||||
|
max-inline-size: 16px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&.v-chip--size-default {
|
||||||
|
padding-block: 0 !important;
|
||||||
|
padding-inline: 16px !important;
|
||||||
|
|
||||||
|
.v-chip__prepend {
|
||||||
|
.v-icon--start {
|
||||||
|
font-size: 1.25rem;
|
||||||
|
margin-inline: -8px 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.v-avatar {
|
||||||
|
--v-avatar-height: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.v-avatar--start {
|
||||||
|
margin-inline: -8px 4px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.v-chip__append {
|
||||||
|
.v-icon--end {
|
||||||
|
font-size: 1.25rem;
|
||||||
|
margin-inline: 4px -8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.v-avatar {
|
||||||
|
--v-avatar-height: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.v-avatar--end {
|
||||||
|
margin-inline: 4px -8px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
12
src/admin/src/@core/scss/template/libs/vuetify/components/_dialog.scss
Executable file
12
src/admin/src/@core/scss/template/libs/vuetify/components/_dialog.scss
Executable file
@@ -0,0 +1,12 @@
|
|||||||
|
// 👉 Dialog
|
||||||
|
|
||||||
|
body {
|
||||||
|
.v-dialog {
|
||||||
|
font-size: 0.9375rem;
|
||||||
|
line-height: 1.375rem;
|
||||||
|
|
||||||
|
.v-dialog-close-btn {
|
||||||
|
color: rgb(var(--v-theme-secondary)) !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,47 @@
|
|||||||
|
@use "@core/scss/base/mixins";
|
||||||
|
|
||||||
|
// 👉 Expansion Panel
|
||||||
|
.v-expansion-panels {
|
||||||
|
.v-expansion-panel {
|
||||||
|
.v-expansion-panel-title {
|
||||||
|
font-weight: 500;
|
||||||
|
|
||||||
|
&--active {
|
||||||
|
.v-expansion-panel-title__overlay,
|
||||||
|
&:hover .v-expansion-panel-title__overlay {
|
||||||
|
opacity: 0 !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.v-expansion-panel-title__icon {
|
||||||
|
.v-icon {
|
||||||
|
block-size: 1.25rem;
|
||||||
|
font-size: 1.25rem;
|
||||||
|
inline-size: 1.25rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
.v-expansion-panel-title__overlay {
|
||||||
|
opacity: 0 !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.v-expansion-panel-text {
|
||||||
|
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
||||||
|
font-size: 15px;
|
||||||
|
line-height: 1.375rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&:not(.v-expansion-panels--variant-accordion) {
|
||||||
|
.v-expansion-panel {
|
||||||
|
&.v-expansion-panel--active {
|
||||||
|
.v-expansion-panel__shadow {
|
||||||
|
@include mixins.elevation(6);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
58
src/admin/src/@core/scss/template/libs/vuetify/components/_field.scss
Executable file
58
src/admin/src/@core/scss/template/libs/vuetify/components/_field.scss
Executable file
@@ -0,0 +1,58 @@
|
|||||||
|
@use "@configured-variables" as variables;
|
||||||
|
@use "sass:map";
|
||||||
|
@use "@styles/variables/vuetify";
|
||||||
|
@use "@core/scss/base/mixins";
|
||||||
|
@use "@core/scss/base/utils";
|
||||||
|
|
||||||
|
// 👉 VField
|
||||||
|
// Override Vuetify's default outline color for text fields to match the theme
|
||||||
|
// ℹ️ We cannot override directly border color because it does not work with dirty or focus state
|
||||||
|
.v-field__outline {
|
||||||
|
color: rgba(var(--v-theme-on-surface));
|
||||||
|
|
||||||
|
&:not([class*="text-"]) .v-label {
|
||||||
|
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// override input height on comfortable and compact density
|
||||||
|
.v-text-field,
|
||||||
|
.v-autocomplete,
|
||||||
|
.v-combobox,
|
||||||
|
.v-file-input,
|
||||||
|
.v-select {
|
||||||
|
&.v-input.v-input--density-default:not(.v-textarea) .v-field__input {
|
||||||
|
min-block-size: 56px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.v-input.v-input--density-comfortable:not(.v-textarea) .v-field__input {
|
||||||
|
min-block-size: 48px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.v-input.v-input--density-compact:not(.v-textarea) .v-field__input {
|
||||||
|
min-block-size: 40px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.v-field.v-field--focused .v-field__outline,
|
||||||
|
.v-input.v-input--error .v-field__outline {
|
||||||
|
--v-field-border-opacity: 1 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
// hover state outline color
|
||||||
|
@media (hover: hover) {
|
||||||
|
.v-field:not(.v-field--focused, .v-field--error):hover .v-field__outline {
|
||||||
|
--v-field-border-opacity: 0.6 !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.v-field__prepend-inner,
|
||||||
|
.v-field__append-inner,
|
||||||
|
.v-field__clearable,
|
||||||
|
.v-input__prepend,
|
||||||
|
.v-input__append {
|
||||||
|
> .v-icon {
|
||||||
|
font-size: 20px;
|
||||||
|
opacity: var(--v-high-emphasis-opacity) !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
22
src/admin/src/@core/scss/template/libs/vuetify/components/_list.scss
Executable file
22
src/admin/src/@core/scss/template/libs/vuetify/components/_list.scss
Executable file
@@ -0,0 +1,22 @@
|
|||||||
|
// 👉 VList
|
||||||
|
|
||||||
|
.v-list {
|
||||||
|
// .v-icon {
|
||||||
|
// font-size: 1.375rem;font-sizefont-size
|
||||||
|
// }
|
||||||
|
|
||||||
|
.v-list-item {
|
||||||
|
&.v-list-item--active:not(.v-list-group__header) {
|
||||||
|
.v-list-item__content,
|
||||||
|
.v-list-item__prepend {
|
||||||
|
* {
|
||||||
|
color: rgb(var(--v-theme-primary));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.v-list-item__overlay {
|
||||||
|
background: rgb(var(--v-theme-primary));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
6
src/admin/src/@core/scss/template/libs/vuetify/components/_menu.scss
Executable file
6
src/admin/src/@core/scss/template/libs/vuetify/components/_menu.scss
Executable file
@@ -0,0 +1,6 @@
|
|||||||
|
// 👉 VMenu
|
||||||
|
.v-menu {
|
||||||
|
.v-list-item--density-default:not(.v-list-item--nav).v-list-item--one-line {
|
||||||
|
padding-inline: 16px;
|
||||||
|
}
|
||||||
|
}
|
||||||
18
src/admin/src/@core/scss/template/libs/vuetify/components/_otp-input.scss
Executable file
18
src/admin/src/@core/scss/template/libs/vuetify/components/_otp-input.scss
Executable file
@@ -0,0 +1,18 @@
|
|||||||
|
// 👉 Otp input
|
||||||
|
|
||||||
|
.v-otp-input {
|
||||||
|
justify-content: unset !important;
|
||||||
|
|
||||||
|
.v-otp-input__content {
|
||||||
|
max-inline-size: 100%;
|
||||||
|
|
||||||
|
.v-field.v-field--focused {
|
||||||
|
.v-field__outline {
|
||||||
|
.v-field__outline__start,
|
||||||
|
.v-field__outline__end {
|
||||||
|
border-color: rgb(var(--v-theme-primary)) !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
172
src/admin/src/@core/scss/template/libs/vuetify/components/_pagination.scss
Executable file
172
src/admin/src/@core/scss/template/libs/vuetify/components/_pagination.scss
Executable file
@@ -0,0 +1,172 @@
|
|||||||
|
/* stylelint-disable no-descending-specificity */
|
||||||
|
@use "@configured-variables" as variables;
|
||||||
|
@use "@core/scss/base/mixins";
|
||||||
|
|
||||||
|
// 👉 VPagination
|
||||||
|
|
||||||
|
.v-pagination {
|
||||||
|
.v-pagination__list {
|
||||||
|
.v-pagination__next,
|
||||||
|
.v-pagination__last,
|
||||||
|
.v-pagination__first,
|
||||||
|
.v-pagination__prev {
|
||||||
|
.v-btn {
|
||||||
|
&.v-btn--icon {
|
||||||
|
&.v-btn--size-default {
|
||||||
|
.v-icon {
|
||||||
|
block-size: 1.375rem;
|
||||||
|
font-size: 1.375rem;
|
||||||
|
inline-size: 1.375rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&.v-btn--size-small {
|
||||||
|
.v-icon {
|
||||||
|
block-size: 1.25rem;
|
||||||
|
font-size: 1.25rem;
|
||||||
|
inline-size: 1.25rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&.v-btn--size-large {
|
||||||
|
.v-icon {
|
||||||
|
block-size: 1.5rem;
|
||||||
|
font-size: 1.5rem;
|
||||||
|
inline-size: 1.5rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Common styles for buttons
|
||||||
|
.v-pagination__item,
|
||||||
|
.v-pagination__next,
|
||||||
|
.v-pagination__last,
|
||||||
|
.v-pagination__first,
|
||||||
|
.v-pagination__prev {
|
||||||
|
.v-btn {
|
||||||
|
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
||||||
|
font-weight: 400;
|
||||||
|
line-height: 1;
|
||||||
|
transform: none;
|
||||||
|
|
||||||
|
&--size-default {
|
||||||
|
--v-btn-size: 13px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&--size-large {
|
||||||
|
--v-btn-size: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.v-btn--disabled {
|
||||||
|
opacity: 0.4;
|
||||||
|
}
|
||||||
|
|
||||||
|
&--variant-tonal {
|
||||||
|
.v-btn__underlay {
|
||||||
|
--v-activated-opacity: 0.08;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
.v-btn__underlay {
|
||||||
|
--v-activated-opacity: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.v-btn__overlay {
|
||||||
|
--v-hover-opacity: 0.16;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@each $color-name in variables.$theme-colors-name {
|
||||||
|
&--variant-tonal.text-#{$color-name} {
|
||||||
|
.v-btn__underlay {
|
||||||
|
background: rgb(var(--v-theme-on-surface));
|
||||||
|
}
|
||||||
|
|
||||||
|
.v-btn__content {
|
||||||
|
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
||||||
|
}
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
.v-btn__content {
|
||||||
|
color: rgb(var(--v-theme-#{$color-name}));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&--variant-outlined {
|
||||||
|
&:hover {
|
||||||
|
.v-btn__overlay {
|
||||||
|
--v-hover-opacity: 0.06;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.v-pagination__item--is-active {
|
||||||
|
.v-btn {
|
||||||
|
&:not([class*="text-"]) {
|
||||||
|
color: rgb(var(--v-theme-primary));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.v-btn.v-btn--variant-tonal {
|
||||||
|
.v-btn__overlay {
|
||||||
|
--v-hover-opacity: 0.16;
|
||||||
|
|
||||||
|
background: rgb(var(--v-theme-primary));
|
||||||
|
opacity: var(--v-hover-opacity);
|
||||||
|
}
|
||||||
|
|
||||||
|
.v-btn__content {
|
||||||
|
color: rgb(var(--v-theme-primary));
|
||||||
|
}
|
||||||
|
|
||||||
|
.v-btn__underlay {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
.v-btn__overlay {
|
||||||
|
--v-hover-opacity: 0.24;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@each $color-name in variables.$theme-colors-name {
|
||||||
|
.v-btn.v-btn--variant-tonal.text-#{$color-name} {
|
||||||
|
@include mixins.elevation(2);
|
||||||
|
|
||||||
|
.v-btn__overlay {
|
||||||
|
background: rgb(var(--v-theme-#{$color-name}));
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.v-btn__content {
|
||||||
|
z-index: 1;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.v-btn.v-btn--variant-outlined {
|
||||||
|
border-color: rgb(var(--v-theme-primary));
|
||||||
|
|
||||||
|
.v-btn__content {
|
||||||
|
color: rgb(var(--v-theme-primary));
|
||||||
|
}
|
||||||
|
|
||||||
|
.v-btn__overlay {
|
||||||
|
--v-hover-opacity: 0.16;
|
||||||
|
|
||||||
|
background: rgb(var(--v-theme-primary));
|
||||||
|
opacity: var(--v-hover-opacity);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
3
src/admin/src/@core/scss/template/libs/vuetify/components/_progress.scss
Executable file
3
src/admin/src/@core/scss/template/libs/vuetify/components/_progress.scss
Executable file
@@ -0,0 +1,3 @@
|
|||||||
|
@use "@configured-variables" as variables;
|
||||||
|
|
||||||
|
// 👉 Progress
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user