CSS: Add smooth transition on tr hover
This commit is contained in:
parent
9c467ebfa3
commit
216d1e71e8
|
@ -202,8 +202,11 @@
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
||||||
tr[href] {
|
tr[href] {
|
||||||
|
.transition(background 0.2s ease);
|
||||||
|
|
||||||
&.active {
|
&.active {
|
||||||
background-color: @gray-lighter;
|
background-color: @gray-lighter;
|
||||||
|
transition: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
|
|
|
@ -159,9 +159,12 @@ a:hover > .icon-cancel {
|
||||||
}
|
}
|
||||||
|
|
||||||
tr[href] {
|
tr[href] {
|
||||||
|
.transition(background 0.2s ease);
|
||||||
|
|
||||||
&.active {
|
&.active {
|
||||||
background-color: @gray-lighter;
|
background-color: @gray-lighter;
|
||||||
border-left-color: @icinga-blue;
|
border-left-color: @icinga-blue;
|
||||||
|
transition: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
|
|
Loading…
Reference in New Issue