Remove Sprint button inlightbox
parent
778cd3ff4f
commit
bf3e21dada
|
@ -10,3 +10,6 @@ form
|
|||
input.date-end(tg-date-selector, ng-model="sprint.estimated_finish", type="text", placeholder="Estimated End", data-required="true")
|
||||
a.button.button-green(href="", title="Save")
|
||||
span Create
|
||||
//-Should be only visible when in editable lightbox
|
||||
span.delete-sprint Do you want to delete this sprint?
|
||||
a.icon.icon-delete(href="", title="delete sprint")
|
||||
|
|
|
@ -94,7 +94,7 @@
|
|||
.user-story-tags {
|
||||
.tags-container {
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
vertical-align: middle;
|
||||
}
|
||||
input {
|
||||
display: inline-block;
|
||||
|
|
|
@ -216,6 +216,22 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
.delete-sprint {
|
||||
@extend %small;
|
||||
color: $grayer;
|
||||
display: block;
|
||||
margin-top: 1rem;
|
||||
text-align: right;
|
||||
a {
|
||||
@include transition (color .3s linear);
|
||||
color: $gray-light;
|
||||
margin-left: .5rem;
|
||||
&:hover {
|
||||
@include transition (color .3s linear);
|
||||
color: $red;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.lightbox_confirm-delete {
|
||||
|
|
Loading…
Reference in New Issue