Browse Source
Merge pull request #18865 from abpframework/ux-enhancements
Add missing Outline variation buttons
pull/18891/head
oykuermann
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with
7 additions and
7 deletions
-
modules/cms-kit/src/Volo.CmsKit.Admin.Web/Pages/CmsKit/BlogPosts/Create.cshtml
-
modules/feature-management/src/Volo.Abp.FeatureManagement.Web/Pages/FeatureManagement/FeatureManagementModal.cshtml
-
modules/setting-management/src/Volo.Abp.SettingManagement.Blazor/Pages/SettingManagement/EmailSettingGroup/EmailSettingGroupViewComponent.razor
-
modules/setting-management/src/Volo.Abp.SettingManagement.Web/Pages/SettingManagement/Components/EmailSettingGroup/Default.cshtml
|
|
|
@ -132,7 +132,7 @@ |
|
|
|
|
|
|
|
</abp-card-body> |
|
|
|
<abp-card-footer> |
|
|
|
<abp-button button-type="Primary" type="button" text="@L["SaveAsDraft"].Value" id="button-blog-post-create" /> |
|
|
|
<abp-button button-type="Outline_Primary" type="button" text="@L["SaveAsDraft"].Value" id="button-blog-post-create" /> |
|
|
|
@if ((await AuthorizationService.AuthorizeAsync(CmsKitAdminPermissions.BlogPosts.Publish)).Succeeded) |
|
|
|
{ |
|
|
|
<abp-button button-type="Primary" type="button" text="@L["Publish"].Value" id="button-blog-post-publish"/> |
|
|
|
|
|
|
|
@ -123,8 +123,8 @@ |
|
|
|
</abp-tabs> |
|
|
|
</abp-modal-body> |
|
|
|
<abp-modal-footer> |
|
|
|
<abp-button button-type="Primary" id="ResetToDefaults"><i class="fa fa-refresh"></i> @L["ResetToDefault"]</abp-button> |
|
|
|
<abp-button data-bs-dismiss="modal" button-type="Secondary">@L["Cancel"]</abp-button> |
|
|
|
<abp-button data-bs-dismiss="modal" button-type="Link">@L["Cancel"]</abp-button> |
|
|
|
<abp-button button-type="Outline_Primary" id="ResetToDefaults"><i class="fa fa-refresh"></i> @L["ResetToDefault"]</abp-button> |
|
|
|
<abp-button button-type="Primary" type="submit"><i class="fa fa-check"></i> @L["Save"]</abp-button> |
|
|
|
</abp-modal-footer> |
|
|
|
} |
|
|
|
|
|
|
|
@ -92,11 +92,11 @@ |
|
|
|
</Validations> |
|
|
|
<Row> |
|
|
|
<Column> |
|
|
|
<SubmitButton Clicked="@UpdateSettingsAsync"/> |
|
|
|
@if (HasSendTestEmailPermission) |
|
|
|
{ |
|
|
|
<Button style="margin: 0.25rem" Color="Color.Primary" Outline Clicked="OpenSendTestEmailModalAsync">@L["SendTestEmail"]</Button> |
|
|
|
} |
|
|
|
<SubmitButton Clicked="@UpdateSettingsAsync"/> |
|
|
|
</Column> |
|
|
|
|
|
|
|
</Row> |
|
|
|
|
|
|
|
@ -26,15 +26,15 @@ |
|
|
|
</div> |
|
|
|
<hr class="my-4"/> |
|
|
|
<div> |
|
|
|
<abp-button button-type="Primary" type="submit"> |
|
|
|
<i class="fa fa-save"></i> @L["Save"] |
|
|
|
</abp-button> |
|
|
|
@if (await PermissionChecker.IsGrantedAsync(SettingManagementPermissions.EmailingTest)) |
|
|
|
{ |
|
|
|
<abp-button button-type="Outline_Primary" id="SendTestEmailButton"> |
|
|
|
<i class="fa fa-send"></i> @L["SendTestEmail"] |
|
|
|
</abp-button> |
|
|
|
} |
|
|
|
<abp-button button-type="Primary" type="submit"> |
|
|
|
<i class="fa fa-save"></i> @L["Save"] |
|
|
|
</abp-button> |
|
|
|
</div> |
|
|
|
</abp-column> |
|
|
|
</abp-row> |
|
|
|
|