CSS: Add :hover and .active style for tr on action-table

refs #5543
This commit is contained in:
Eric Lippmann 2015-09-24 10:26:57 +02:00
parent 21c6886702
commit 7fa9310aef

View File

@ -5,10 +5,21 @@
}
.action-table {
tr:hover {
td {
padding: @vertical-padding @horizontal-padding;
}
tr {
&.active {
background-color: @gray-lighter;
}
&:hover {
background-color: @gray-lightest;
cursor: pointer;
}
}
}
.pull-left {
float: left;
@ -19,6 +30,6 @@
}
.text-small {
font-size: @font-size-small;
color: @text-color-light;
font-size: @font-size-small;
}