Browse Source
Merge pull request #6670 from abpframework/stsrki/dev-ui-fixes
UI fixes for loading buttons
pull/6678/head
Halil İbrahim Kalkan
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
8 additions and
2 deletions
-
framework/src/Volo.Abp.AspNetCore.Components.WebAssembly.BasicTheme/wwwroot/libs/abp/css/theme.css
-
modules/account/src/Volo.Abp.Account.Blazor/Pages/Account/AccountManage.razor
-
modules/account/src/Volo.Abp.Account.Blazor/_Imports.razor
|
|
|
@ -103,3 +103,8 @@ div.dataTables_wrapper div.dataTables_length label { |
|
|
|
.navbar-nav>.nav-item>div>button{ |
|
|
|
color:#fff; |
|
|
|
} |
|
|
|
|
|
|
|
.btn span.spinner-border { |
|
|
|
margin-right: .5rem; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@ -27,7 +27,7 @@ |
|
|
|
<TextEdit Role="@TextRole.Password" @bind-Text="@ChangePasswordModel.NewPasswordConfirm"/> |
|
|
|
</Field> |
|
|
|
<Field> |
|
|
|
<Button form="ChangePasswordForm" Color="Color.Primary" Clicked="@ChangePasswordAsync">@L["Save"]</Button> |
|
|
|
<SubmitButton Form="ChangePasswordForm" Clicked="@ChangePasswordAsync" /> |
|
|
|
</Field> |
|
|
|
</EditForm> |
|
|
|
</TabPanel> |
|
|
|
@ -59,7 +59,7 @@ |
|
|
|
<TextEdit @bind-Text="@PersonalInfoModel.PhoneNumber"/> |
|
|
|
</Field> |
|
|
|
<Field> |
|
|
|
<Button form="UpdatePersonalInfoForm" Color="Color.Primary" Clicked="@UpdatePersonalInfoAsync">@L["Save"]</Button> |
|
|
|
<SubmitButton Form="UpdatePersonalInfoForm" Clicked="@UpdatePersonalInfoAsync" /> |
|
|
|
</Field> |
|
|
|
</EditForm> |
|
|
|
</TabPanel> |
|
|
|
|
|
|
|
@ -1,5 +1,6 @@ |
|
|
|
@using Microsoft.AspNetCore.Components.Web |
|
|
|
@using Volo.Abp.AspNetCore.Components.WebAssembly |
|
|
|
@using Volo.Abp.BlazoriseUI |
|
|
|
@using Volo.Abp.BlazoriseUI.Components |
|
|
|
@using Blazorise |
|
|
|
@using Blazorise.DataGrid |