fix drag icon hover in colors table

stable
Juanfran 2015-03-10 13:16:06 +01:00
parent f705717905
commit 9dde7323d1
1 changed files with 9 additions and 5 deletions

View File

@ -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 {