You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 20, 2024. It is now read-only.
The first set a background for the odd rows and the second set a background for all the cells of the even rows which finally give a background for the whole table. Deactivating one of them fix the rendering:
The text was updated successfully, but these errors were encountered:
Hello,
I just found out that the ".table-striped" have a wrong rendering:
I supposed that the problem come for those two selectors:
table-striped>tbody>tr:nth-of-type(odd) {
background-color: #f9f9f9;
}
.table-striped>tbody>tr:nth-child(even)>td, .table-striped>tbody>tr:nth-child(even)>th {
background-color: #f9f9f9;
}
The first set a background for the odd rows and the second set a background for all the cells of the even rows which finally give a background for the whole table. Deactivating one of them fix the rendering:
The text was updated successfully, but these errors were encountered: