fix #2432 - backlog table points near the border with anonymous users

stable
Juanfran 2015-03-13 08:54:36 +01:00 committed by David Barragán Merino
parent d7579b052b
commit 7ced58da24
2 changed files with 5 additions and 1 deletions

View File

@ -1,4 +1,4 @@
div.row.us-item-row(ng-repeat="us in visibleUserstories track by us.id", tg-bind-scope, ng-class="{blocked: us.is_blocked}") div.row.us-item-row(ng-repeat="us in visibleUserstories track by us.id", tg-bind-scope, ng-class="{blocked: us.is_blocked}", tg-class-permission="{'readonly': '!modify_us'}")
div.user-stories div.user-stories
div.tags-block(tg-colorize-tags="us.tags", tg-colorize-tags-type="backlog") div.tags-block(tg-colorize-tags="us.tags", tg-colorize-tags-type="backlog")
div.user-story-name div.user-story-name

View File

@ -237,4 +237,8 @@
opacity: 0; opacity: 0;
padding: .1rem .5rem 0 0; padding: .1rem .5rem 0 0;
} }
.readonly {
cursor: auto;
padding-right: 45px;
}
} }