1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-30 16:50:00 +02:00

fixes rest of #21585; adds custom styles for inverse table accent hover and active states

This commit is contained in:
Mark Otto
2017-03-19 17:37:00 -07:00
committed by Mark Otto
parent 13a874e340
commit d093460252
2 changed files with 17 additions and 0 deletions

View File

@@ -131,6 +131,20 @@
&.table-bordered {
border: 0;
}
&.table-striped {
tbody tr:nth-of-type(odd) {
background-color: $table-inverse-bg-accent;
}
}
&.table-hover {
tbody tr {
@include hover {
background-color: $table-inverse-bg-hover;
}
}
}
}