Merge #15947 - Fix #15944 - UI Issue: Pagination table section background issue

Pull-request: #15947
Fixes: #15944

Signed-off-by: William Desportes <williamdes@wdes.fr>
This commit is contained in:
William Desportes 2020-03-11 08:34:52 +01:00
commit 7f41c8c2b9
No known key found for this signature in database
GPG Key ID: 90A0EF1B8251A889
3 changed files with 15 additions and 0 deletions

View File

@ -568,6 +568,11 @@ table tbody:first-of-type tr:nth-child(even) th,
background: #dfdfdf;
}
// only one item
table tbody:first-of-type tr:only-child {
background: none;
}
table tr {
text-align: $left;

View File

@ -622,6 +622,11 @@ table tr {
border-bottom: none;
}
// only one item
&:only-child {
background: none;
}
th {
text-align: $left;
border-bottom: 1px solid #eee;

View File

@ -573,6 +573,11 @@ table tbody:first-of-type tr:nth-child(even) th,
background: #dfdfdf;
}
// only one item
table tbody:first-of-type tr:only-child {
background: none;
}
table tr {
text-align: $left;