fix drag icon hover in colors table
parent
f705717905
commit
9dde7323d1
|
@ -88,11 +88,13 @@
|
||||||
}
|
}
|
||||||
.table-main {
|
.table-main {
|
||||||
border-bottom: 1px solid $whitish;
|
border-bottom: 1px solid $whitish;
|
||||||
.row {
|
.row:hover {
|
||||||
&:hover {
|
|
||||||
background: lighten($green-taiga, 60%);
|
background: lighten($green-taiga, 60%);
|
||||||
cursor: move;
|
cursor: move;
|
||||||
transition: background .2s ease-in;
|
transition: background .2s ease-in;
|
||||||
|
.icon {
|
||||||
|
opacity: 1;
|
||||||
|
transition: opacity .2s ease-in;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -106,8 +108,10 @@
|
||||||
@extend %large;
|
@extend %large;
|
||||||
color: $gray-light;
|
color: $gray-light;
|
||||||
margin-right: 1rem;
|
margin-right: 1rem;
|
||||||
|
opacity: 0;
|
||||||
&:hover {
|
&:hover {
|
||||||
color: $green-taiga;
|
color: $green-taiga;
|
||||||
|
transition: all .2s ease-in;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.icon-delete {
|
.icon-delete {
|
||||||
|
|
Loading…
Reference in New Issue