Added hover on avatar cards. Fixes #733
parent
a1194a86b1
commit
773e13f7ec
|
@ -48,6 +48,10 @@
|
||||||
}
|
}
|
||||||
img {
|
img {
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
|
&:hover {
|
||||||
|
@include transition(border .3s linear);
|
||||||
|
border: 2px solid $green-taiga;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.assigned-to {
|
.assigned-to {
|
||||||
color: darken($postit-hover, 15%);
|
color: darken($postit-hover, 15%);
|
||||||
|
|
|
@ -56,8 +56,11 @@
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
img {
|
img {
|
||||||
border: 0;
|
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
|
&:hover {
|
||||||
|
@include transition(border .3s linear);
|
||||||
|
border: 2px solid $green-taiga;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
figcaption {
|
figcaption {
|
||||||
color: darken($postit-hover, 15%);
|
color: darken($postit-hover, 15%);
|
||||||
|
|
|
@ -116,7 +116,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.sprint-table {
|
.sprint-table {
|
||||||
@include slide(1000px, overflow-y);
|
@include slide(1000px, overflow-x);
|
||||||
&.open {
|
&.open {
|
||||||
min-height: 50px;
|
min-height: 50px;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue