CSS: Add smooth transition on action-table hover

refs #5543
This commit is contained in:
Eric Lippmann 2015-10-28 14:14:07 +01:00
parent fd8a9e9ddc
commit 9463e16f67

View File

@ -135,8 +135,12 @@ dl.name-value-list {
table.action-table { table.action-table {
tbody tr { tbody tr {
.transition(background-color 0.3s ease);
&.active { &.active {
background-color: @gray-lighter; background-color: @gray-lighter;
// Auto-refresh must not start transition
transition: none;
} }
&:hover { &:hover {