Something went wrong while setting issue due date.
state- & hovereffects applied to whole subtable in a row (wip 2.3.0 & 3.0.0)
Closed
state- & hovereffects applied to whole subtable in a row (wip 2.3.0 & 3.0.0)
Created by: KOTRET
tables in tables inherit the parent hovereffect and state-indicator (success, error...) and apply them on all their rows.
example here: http://jsfiddle.net/2kEXb/
some parts of this already have been fixed by adding the child-selector between tr and td. fix would be:
.table tbody tr {
&.success > td {
background-color: @successBackground;
}
...
}
...
// Hover states for .table-hover
.table-hover tbody tr {
&.success:hover > td {
background-color: darken(@successBackground, 5%);
}
...
}