Browse Source
Merge pull request #24087 from abpframework/10.0-features-modal-fix
Fix Features modal padding
pull/24102/head
Yağmur Çelik
3 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
2 additions and
2 deletions
-
modules/feature-management/src/Volo.Abp.FeatureManagement.Web/Pages/FeatureManagement/FeatureManagementModal.cshtml
-
modules/permission-management/src/Volo.Abp.PermissionManagement.Blazor/Components/PermissionManagementModal.razor
|
|
@ -41,7 +41,7 @@ |
|
|
<h4>@featureGroup.DisplayName</h4> |
|
|
<h4>@featureGroup.DisplayName</h4> |
|
|
<hr class="mt-2 mb-3"/> |
|
|
<hr class="mt-2 mb-3"/> |
|
|
<div class="custom-scroll-content" style="height: 400px;"> |
|
|
<div class="custom-scroll-content" style="height: 400px;"> |
|
|
<div class="pl-1 pt-1"> |
|
|
<div class="ps-1 pt-1"> |
|
|
@for (var j = 0; j < featureGroup.Features.Count; j++) |
|
|
@for (var j = 0; j < featureGroup.Features.Count; j++) |
|
|
{ |
|
|
{ |
|
|
var feature = featureGroup.Features[j]; |
|
|
var feature = featureGroup.Features[j]; |
|
|
|
|
|
@ -64,7 +64,7 @@ |
|
|
@foreach (var group in _groups) |
|
|
@foreach (var group in _groups) |
|
|
{ |
|
|
{ |
|
|
<TabPanel Name="@GetNormalizedGroupName(group.Name)"> |
|
|
<TabPanel Name="@GetNormalizedGroupName(group.Name)"> |
|
|
<div class="w-100" style="height: 500px;overflow-y: auto"> |
|
|
<div class="w-100 ps-1" style="height: 500px;overflow-y: auto"> |
|
|
<Field> |
|
|
<Field> |
|
|
<Check |
|
|
<Check |
|
|
Disabled="@(IsPermissionGroupDisabled(group))" |
|
|
Disabled="@(IsPermissionGroupDisabled(group))" |
|
|
|