Small style fixes
This commit is contained in:
parent
30e681ba02
commit
6d46eeb624
@ -23,13 +23,10 @@
|
||||
<MudDataGridPager T="Title"/>
|
||||
</PagerContent>
|
||||
</MudDataGrid>*@
|
||||
<MudTable Items="@titles" Filter="@Filter" @bind-SelectedItem="@selectedTitle" Height="40vh">
|
||||
<MudTable Items="@titles" Filter="@Filter" @bind-SelectedItem="@selectedTitle" Height="40vh" Hover="true">
|
||||
<ColGroup>
|
||||
<col style="width: 150px;" />
|
||||
<col style="width: 50px;" />
|
||||
<col />
|
||||
<col />
|
||||
<col />
|
||||
<col style="width: 150px;" />
|
||||
</ColGroup>
|
||||
<ToolBarContent>
|
||||
<MudTextField @bind-Value="searchString" Placeholder="Search" Adornment="Adornment.Start" Immediate="true"
|
||||
@ -39,7 +36,7 @@
|
||||
<HeaderContent>
|
||||
<MudTh>
|
||||
<MudTableSortLabel SortBy="@(new Func<Title, object>(x => x.TitleId))">
|
||||
Id
|
||||
ID
|
||||
</MudTableSortLabel>
|
||||
</MudTh>
|
||||
<MudTh>
|
||||
@ -56,7 +53,7 @@
|
||||
<MudTablePager PageSizeOptions="new []{10}"/>
|
||||
</PagerContent>
|
||||
</MudTable>
|
||||
<MudText Class="pt-4">Selected Title: @selectedTitle?.TitleName</MudText>
|
||||
<MudText Class="mt-4 d-block" Typo="Typo.caption"><b>Selected Title:</b> @selectedTitle?.TitleName</MudText>
|
||||
</DialogContent>
|
||||
<DialogActions>
|
||||
<MudButton OnClick="Cancel">Cancel</MudButton>
|
||||
|
Loading…
Reference in New Issue
Block a user