feat: 微调菜单维护小箭头

This commit is contained in:
Argo-Tianyi 2021-12-21 15:12:41 +08:00
parent e385ad798b
commit 719c9ace72
3 changed files with 8 additions and 2 deletions

View File

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<PackageReference Include="BootstrapBlazor" Version="6.1.1-beta08" />
<PackageReference Include="BootstrapBlazor" Version="6.1.1-beta09" />
<PackageReference Include="Bootstrap.Security.Blazor" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="6.0.0" />
</ItemGroup>

View File

@ -1,7 +1,8 @@
@typeparam TItem
<Table TItem="TItem" IsBordered="true" IsStriped="true" IsMultipleSelect="true"
IsPagination="IsPagination" PageItemsSource="PageItemsSource" IsFixedHeader="true" IsTree="IsTree" OnTreeExpand="OnTreeExpand!"
IsPagination="IsPagination" PageItemsSource="PageItemsSource" IsFixedHeader="true"
IsTree="IsTree" OnTreeExpand="OnTreeExpand!" TreeIcon="fa-chevron-circle-right"
UseInjectDataService="true" DataService="DataService" OnQueryAsync="OnQueryAsync!"
ShowToolbar="true" ShowExtendButtons="true" ShowSearch="true"
ShowCardView="true" ShowColumnList="true" ExtendButtonColumnWidth="@ExtendButtonColumnWidth"

View File

@ -81,3 +81,8 @@
.checkbox-list .checkbox-item .form-check-label {
max-width: calc(var(--bb-checkboxlist-item-width) - 16px);
}
.table-cell .is-node {
color: var(--bs-info);
margin-right: .25rem;
}