Remove Sprint button inlightbox

stable
Xavier Julián 2014-07-04 15:08:24 +02:00
parent 778cd3ff4f
commit bf3e21dada
3 changed files with 20 additions and 1 deletions

View File

@ -10,3 +10,6 @@ form
input.date-end(tg-date-selector, ng-model="sprint.estimated_finish", type="text", placeholder="Estimated End", data-required="true") 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") a.button.button-green(href="", title="Save")
span Create 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")

View File

@ -94,7 +94,7 @@
.user-story-tags { .user-story-tags {
.tags-container { .tags-container {
display: inline-block; display: inline-block;
vertical-align: top; vertical-align: middle;
} }
input { input {
display: inline-block; display: inline-block;

View File

@ -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 { .lightbox_confirm-delete {