Add popupdialog
1aab25b2
Josef König
committed
3 changed files
PopupDialog.razor
/WPE.App.Shared.BaseComponents/Pages/Dialogs/PopupDialog.razor
/WPE.App.Shared.BaseComponents/Pages/Dialogs/PopupDialog.razor
PopupDialog.razor.css
/WPE.App.Shared.BaseComponents/Pages/Dialogs/PopupDialog.razor.css+29
/WPE.App.Shared.BaseComponents/Pages/Dialogs/PopupDialog.razor.css
Add comment 1 Plus  .popup-dialog-container {
Add comment 2 Plus   position: absolute;
Add comment 3 Plus   inset: 0;
Add comment 4 Plus   display: flex;
Add comment 5 Plus   align-items: center;
Add comment 6 Plus   justify-content: center;
Add comment 7 Plus   padding: 40px;
Add comment 8 Plus   z-index: 999999;
Add comment 9 Plus  }
Add comment 10 Plus  
Add comment 11 Plus   .popup-dialog-container .popup-dialog-background {
Add comment 12 Plus   position: absolute;
Add comment 13 Plus   inset: 0;
Add comment 14 Plus   background: #000;
Add comment 15 Plus   opacity: .4;
Add comment 16 Plus   }
Add comment 17 Plus  
Add comment 18 Plus   .popup-dialog-container .popup-dialog-wrapper {
Add comment 19 Plus   position: relative;
Add comment 20 Plus   max-width: 400px;
Add comment 21 Plus   display: flex;
Add comment 22 Plus   flex-direction: column;
Add comment 23 Plus   gap: 12px;
Add comment 24 Plus   padding: 20px;
Add comment 25 Plus   background: #FFF;
Add comment 26 Plus   border-radius: 8px;
Add comment 27 Plus   box-shadow: 0 8px 16px 0 rgb(0 0 0 / 10%);
Add comment 28 Plus   }
Add comment 29 Plus  
WPE.App.Shared.BaseComponents.csproj
/WPE.App.Shared.BaseComponents/WPE.App.Shared.BaseComponents.csproj-2+2
/WPE.App.Shared.BaseComponents/WPE.App.Shared.BaseComponents.csproj
Add comment 11 <Copyright>Copyright (c) infsoft gmbh 2024</Copyright>
Add comment 12 <PackageLicenseExpression>MIT</PackageLicenseExpression>
Add comment 13 <PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
Add comment 14 Minus   <RepositoryUrl>https://dev.azure.com/infsoft-dev/WPE%20Libraries/_git/WPE.App.Components</RepositoryUrl>
Add comment 14 Plus   <RepositoryUrl>https://dev.azure.com/infsoft-dev/WPE%20Libraries/_git/WPE.App.Shared.BaseComponents</RepositoryUrl>
Add comment 15 <PackageIcon>icon.png</PackageIcon>
Add comment 16 <PackageReadmeFile>ReadMe.md</PackageReadmeFile>
Add comment 17 <PackageTags>WPE;Workplace Experience;Blazor;MAUI;infsoft</PackageTags>
Add comment 25 </ItemGroup>
Add comment 26
Add comment 27 <ItemGroup>
Add comment 28 Minus   <PackageReference Include="Infsoft.WPE.App.Shared.Utils" Version="0.0.10" />
Add comment 28 Plus   <PackageReference Include="Infsoft.WPE.App.Shared.Utils" Version="0.0.9" />
Add comment 29 <PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="8.0.3" />
Add comment 30 </ItemGroup>
Add comment 31