Skip to content

Commit

Permalink
Merge branch 'rel-1.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
stsrki committed Jan 4, 2024
2 parents 17b31c8 + a51b79f commit e747a2f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -266,55 +266,55 @@
<TableRowHeader Flex="Flex.JustifyContent.Between">
DataGrid
</TableRowHeader>
<TableRowCell>1000 rows</TableRowCell>
<TableRowCell>10000 rows</TableRowCell>
<TableRowCell><Icon Name="IconName.Infinity" TextColor="TextColor.Primary" /></TableRowCell>
<TableRowCell><Icon Name="IconName.Infinity" TextColor="TextColor.Primary" /></TableRowCell>
<TableRowCell><Icon Name="IconName.Infinity" TextColor="TextColor.Primary" /></TableRowCell>
</TableRow>
<TableRow>
<TableRowHeader Flex="Flex.JustifyContent.Between">
Autocomplete
</TableRowHeader>
<TableRowCell>1000 items</TableRowCell>
<TableRowCell>10000 items</TableRowCell>
<TableRowCell><Icon Name="IconName.Infinity" TextColor="TextColor.Primary" /></TableRowCell>
<TableRowCell><Icon Name="IconName.Infinity" TextColor="TextColor.Primary" /></TableRowCell>
<TableRowCell><Icon Name="IconName.Infinity" TextColor="TextColor.Primary" /></TableRowCell>
</TableRow>
<TableRow>
<TableRowHeader Flex="Flex.JustifyContent.Between">
Charts
</TableRowHeader>
<TableRowCell>10 points</TableRowCell>
<TableRowCell>100 points</TableRowCell>
<TableRowCell><Icon Name="IconName.Infinity" TextColor="TextColor.Primary" /></TableRowCell>
<TableRowCell><Icon Name="IconName.Infinity" TextColor="TextColor.Primary" /></TableRowCell>
<TableRowCell><Icon Name="IconName.Infinity" TextColor="TextColor.Primary" /></TableRowCell>
</TableRow>
<TableRow>
<TableRowHeader Flex="Flex.JustifyContent.Between">
ListView
</TableRowHeader>
<TableRowCell>1000 items</TableRowCell>
<TableRowCell>10000 items</TableRowCell>
<TableRowCell><Icon Name="IconName.Infinity" TextColor="TextColor.Primary" /></TableRowCell>
<TableRowCell><Icon Name="IconName.Infinity" TextColor="TextColor.Primary" /></TableRowCell>
<TableRowCell><Icon Name="IconName.Infinity" TextColor="TextColor.Primary" /></TableRowCell>
</TableRow>
<TableRow>
<TableRowHeader Flex="Flex.JustifyContent.Between">
TransferList
</TableRowHeader>
<TableRowCell>1000 items</TableRowCell>
<TableRowCell>10000 items</TableRowCell>
<TableRowCell><Icon Name="IconName.Infinity" TextColor="TextColor.Primary" /></TableRowCell>
<TableRowCell><Icon Name="IconName.Infinity" TextColor="TextColor.Primary" /></TableRowCell>
<TableRowCell><Icon Name="IconName.Infinity" TextColor="TextColor.Primary" /></TableRowCell>
</TableRow>
<TableRow>
<TableRowHeader Flex="Flex.JustifyContent.Between">
TreeView
</TableRowHeader>
<TableRowCell>100 nodes</TableRowCell>
<TableRowCell>1000 nodes</TableRowCell>
<TableRowCell><Icon Name="IconName.Infinity" TextColor="TextColor.Primary" /></TableRowCell>
<TableRowCell><Icon Name="IconName.Infinity" TextColor="TextColor.Primary" /></TableRowCell>
<TableRowCell><Icon Name="IconName.Infinity" TextColor="TextColor.Primary" /></TableRowCell>
</TableRow>
</TableBody>
</Table>
7 changes: 7 additions & 0 deletions Source/Blazorise.AntDesign/AntDesignThemeGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -840,6 +840,13 @@ protected override void GenerateBarStyles( StringBuilder sb, Theme theme, ThemeB
.Append( $"color: {yiqColor};" )
.AppendLine( "}" );
}

sb
.Append( ".ant-menu.ant-menu-root.ant-menu-dark.ant-menu-inline" )
.Append( "{" )
.Append( $"background-color: var(--b-bar-dark-background, #001529);" )
.Append( $"color: var(--b-bar-dark-color, rgba(255, 255, 255, 0.5));" )
.AppendLine( "}" );
}

protected override void GenerateParagraphVariantStyles( StringBuilder sb, Theme theme, string variant, string inTextColor )
Expand Down

0 comments on commit e747a2f

Please sign in to comment.