From 3b165de7a9c13b1e3a38b9c420d69f45c4f7ae8d Mon Sep 17 00:00:00 2001 From: 6d486f49 <76097bcc@gmail.com> Date: Thu, 4 Jun 2026 14:08:20 -0400 Subject: [PATCH] ...dialog --- Device/wwwroot/css/app.css | 4 +- .../Dialog/ConfirmationDialogComponent.razor | 120 +++++---- Pages/Dialog/EntityDialogComponent.razor | 168 ++++++------ Pages/Dialog/GlossaryDialogComponent.razor | 220 ++++++++------- Pages/Dialog/SearchDialogComponent.razor | 250 +++++++++++------- Web/App.razor | 4 +- Web/wwwroot/css/app.css | 4 +- 7 files changed, 436 insertions(+), 334 deletions(-) diff --git a/Device/wwwroot/css/app.css b/Device/wwwroot/css/app.css index c83e19e..3ba0018 100644 --- a/Device/wwwroot/css/app.css +++ b/Device/wwwroot/css/app.css @@ -37,9 +37,7 @@ --info-hover: #451376; --info-border-hover: #210b36; - --dialog-border-color: black; - --dialog-border-width: 2px; - --dialog-radius: 6px; + --dialog-radius: 12px; } html { diff --git a/Pages/Dialog/ConfirmationDialogComponent.razor b/Pages/Dialog/ConfirmationDialogComponent.razor index e0ad2ed..9bf9291 100644 --- a/Pages/Dialog/ConfirmationDialogComponent.razor +++ b/Pages/Dialog/ConfirmationDialogComponent.razor @@ -2,24 +2,25 @@ @inject IMyDialogService MyDialogService @inject IJSRuntime JsRuntime - @inject NavigationManager NavigationManager @if (MyDialogService.IsVisible) { -