Skip to content

Commit 991e546

Browse files
authored
fix(ui5-table-row): fix 1st and "nodata" rows visual (#1156)
1 parent 9393b50 commit 991e546

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

packages/main/src/themes/Table.css

+2
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ tr {
3838
box-sizing: border-box;
3939
color: var(--sapTextColor);
4040
min-height: 3rem;
41+
background-color: var(--sapList_Background);
42+
border-top: 1px solid var(--sapList_BorderColor);
4143
}
4244

4345
:host([_no-data-displayed]) {

packages/main/src/themes/TableRow.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
display: contents;
33
}
44

5-
:host(:not(:first-of-type)) .ui5-table-row-root {
5+
.ui5-table-row-root {
66
background-color: var(--sapList_Background);
77
border-top: 1px solid var(--sapList_BorderColor);
88
}

0 commit comments

Comments
 (0)