Assigned to edit button
parent
5e64e8fe1d
commit
ccd8a1555b
|
@ -5,3 +5,4 @@ section.us-detail-assigned-to
|
|||
div.assigned-to
|
||||
span.assigned-title Assigned to
|
||||
span.user-assigned Anler Hernández
|
||||
a.icon.icon-edit(href="", title="edit assignment")
|
||||
|
|
|
@ -69,7 +69,7 @@
|
|||
.issue-nav {
|
||||
position: absolute;
|
||||
right: 1rem;
|
||||
top: 2rem;
|
||||
top: 1.5rem;
|
||||
a {
|
||||
@extend %xlarge;
|
||||
}
|
||||
|
@ -220,6 +220,7 @@
|
|||
.us-detail-assigned-to {
|
||||
@include table-flex();
|
||||
margin-top: 2rem;
|
||||
position: relative;
|
||||
.user-avatar {
|
||||
@include table-flex-child(1, 0);
|
||||
}
|
||||
|
@ -227,6 +228,12 @@
|
|||
@include table-flex-child(3, 0);
|
||||
margin-left: 1rem;
|
||||
margin-top: 15px;
|
||||
&:hover {
|
||||
.icon-edit {
|
||||
@include transition(opacity .2s ease-in);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
.assigned-title {
|
||||
color: $gray-light;
|
||||
display: block;
|
||||
|
@ -235,6 +242,17 @@
|
|||
@extend %large;
|
||||
color: $green-taiga;
|
||||
}
|
||||
.icon-edit {
|
||||
@include transition(opacity .2s ease-in);
|
||||
color: $gray-light;
|
||||
opacity: 0;
|
||||
position: absolute;
|
||||
right: 1rem;
|
||||
top: 1rem;
|
||||
&:hover {
|
||||
color: $green-taiga;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue