Skip to content

Commit d41b7f3

Browse files
authored
fix(Table): missing border style when fix column (#4554)
* fix(Table): update table style * chore: bump version 8.10.5-beta01
1 parent 74a74d3 commit d41b7f3

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

src/BootstrapBlazor/BootstrapBlazor.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk.Razor">
22

33
<PropertyGroup>
4-
<Version>8.10.4</Version>
4+
<Version>8.10.5-beta01</Version>
55
</PropertyGroup>
66

77
<ItemGroup>

src/BootstrapBlazor/Components/Table/Table.razor.scss

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -502,10 +502,16 @@ tr.active:not(.is-edit):hover {
502502
background-color: var(--bb-table-row-hover-bg);
503503
}
504504

505-
.table-fixed-column .table {
506-
table-layout: fixed;
507-
border-collapse: separate;
508-
border-spacing: 0;
505+
.table-fixed-column {
506+
.table {
507+
table-layout: fixed;
508+
border-collapse: separate;
509+
border-spacing: 0;
510+
}
511+
512+
.table-bordered > :not(caption) > * > * {
513+
border-width: 1px var(--bs-border-width);
514+
}
509515
}
510516

511517
.table-fixed-column .table .fixed,

0 commit comments

Comments
 (0)