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
1 changed files with 4 additions and 0 deletions

View File

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