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