1
0
Fork 0
mirror of https://github.com/em-squared/5e-drs.git synced 2025-10-30 13:14:20 +00:00
This commit is contained in:
Maxime Moraine 2020-05-07 10:55:53 +02:00
parent a1dbf4de6e
commit 75080fa3bc

View file

@ -75,15 +75,46 @@ table {
}
}
.data-table {
table {
tbody {
.v-data-table__wrapper {
>table {
>tbody {
tr {
background-color: #fff;
&:hover {
background-color: #eee !important;
&.v-data-table__expanded__content {
background-color: #fff !important;
}
}
td {
thead {
tr {
background-color: $color-table-header-bg;
color: #fff;
&:hover {
background-color: $color-table-header-bg !important;
}
th {
color: #fff !important;
i {
color: #fff !important;
}
}
}
}
tbody {
tr {
&:nth-of-type(even) {
background-color: $color-light-gray;
}
&:nth-of-type(odd):hover {
background-color: inherit !important;
}
td {
}
}
}
}
}
}