Minor styles fixes across the app
parent
45c3ab8ee9
commit
275b3c81f7
|
@ -1,15 +1,15 @@
|
||||||
div.row.us-item-row(ng-repeat="us in visibleUserstories track by us.id")
|
div.row.us-item-row(ng-repeat="us in visibleUserstories track by us.id")
|
||||||
div.user-stories
|
div.user-stories
|
||||||
|
div.user-story-tags
|
||||||
|
span.tag(ng-repeat="tag in us.tags") {{ tag }}
|
||||||
div.user-story-name
|
div.user-story-name
|
||||||
input(type="checkbox", name="")
|
input(type="checkbox", name="")
|
||||||
a(href="", title="{{ us.subject }}") {{ us.subject }}
|
a(href="", title="{{ us.subject }}") {{ us.subject }}
|
||||||
span.us-settings
|
span.us-settings
|
||||||
a.icon.icon-edit(href="", ng-click="ctrl.editUserStory(us)", title="Edit")
|
a.icon.icon-edit(href="", ng-click="ctrl.editUserStory(us)", title="Edit")
|
||||||
a.icon.icon-delete(href="", ng-click="ctrl.deleteUserStory(us)", title="Delete")
|
a.icon.icon-delete(href="", ng-click="ctrl.deleteUserStory(us)", title="Delete")
|
||||||
div.user-story-tags
|
|
||||||
span.tag(ng-repeat="tag in us.tags") {{ tag }}
|
|
||||||
|
|
||||||
div.status.width-2(tg-us-status="us" on-update="ctrl.loadProjectStats()")
|
div.status(tg-us-status="us" on-update="ctrl.loadProjectStats()")
|
||||||
a.us-status(href="", title="Status Name")
|
a.us-status(href="", title="Status Name")
|
||||||
span.us-status-bind
|
span.us-status-bind
|
||||||
span.icon.icon-arrow-bottom
|
span.icon.icon-arrow-bottom
|
||||||
|
|
|
@ -10,7 +10,7 @@ form
|
||||||
fieldset
|
fieldset
|
||||||
input(type="text", placeholder="Tags", tg-tags, ng-model="us.tags")
|
input(type="text", placeholder="Tags", tg-tags, ng-model="us.tags")
|
||||||
fieldset
|
fieldset
|
||||||
textarea.description(placeholder="One user story per line", ng-model="us.description")
|
textarea.description(placeholder="It's up to well-educated users to add a description description", ng-model="us.description")
|
||||||
div.new-us-settings
|
div.new-us-settings
|
||||||
fieldset
|
fieldset
|
||||||
label.requirement.team-requirement(for="team-requirement", tg-i18n="us.team-requirement")
|
label.requirement.team-requirement(for="team-requirement", tg-i18n="us.team-requirement")
|
||||||
|
|
|
@ -101,7 +101,7 @@
|
||||||
width: 14rem;
|
width: 14rem;
|
||||||
}
|
}
|
||||||
.tag {
|
.tag {
|
||||||
padding: 8px 8px 10px;
|
padding: 2px 10px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -202,7 +202,7 @@
|
||||||
@include transition(background .2s ease-in);
|
@include transition(background .2s ease-in);
|
||||||
background: darken($whitish, 5%);
|
background: darken($whitish, 5%);
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
margin-bottom: 1rem;
|
margin-bottom: .5rem;
|
||||||
padding: .5rem;
|
padding: .5rem;
|
||||||
&:last-child {
|
&:last-child {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
|
|
@ -28,7 +28,12 @@
|
||||||
}
|
}
|
||||||
.status,
|
.status,
|
||||||
.points {
|
.points {
|
||||||
|
padding-right: 3rem;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
text-align: right;
|
||||||
|
.icon {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.pop-role {
|
.pop-role {
|
||||||
@include popover(150px, '', 30px, 10px, '');
|
@include popover(150px, '', 30px, 10px, '');
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
|
|
||||||
.filters {
|
.filters {
|
||||||
h1 {
|
h1 {
|
||||||
vertical-align: middle;
|
vertical-align: baseline;
|
||||||
.subfilter {
|
.subfilter {
|
||||||
@extend %large;
|
@extend %large;
|
||||||
}
|
}
|
||||||
|
@ -26,7 +26,7 @@
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
a {
|
a {
|
||||||
vertical-align: middle;
|
vertical-align: baseline;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
form {
|
form {
|
||||||
|
|
Loading…
Reference in New Issue