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
parent
commit
19569fccc1
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      framework/src/Volo.Abp.AspNetCore.Components.WebAssembly.BasicTheme/wwwroot/libs/abp/css/theme.css
  2. 4
      modules/account/src/Volo.Abp.Account.Blazor/Pages/Account/AccountManage.razor
  3. 1
      modules/account/src/Volo.Abp.Account.Blazor/_Imports.razor

5
framework/src/Volo.Abp.AspNetCore.Components.WebAssembly.BasicTheme/wwwroot/libs/abp/css/theme.css

@ -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;
}

4
modules/account/src/Volo.Abp.Account.Blazor/Pages/Account/AccountManage.razor

@ -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
modules/account/src/Volo.Abp.Account.Blazor/_Imports.razor

@ -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
Loading…
Cancel
Save