Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions public/stylesheets/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,15 @@ body { padding-top: 50px; }
}

/** angular-ui */
.nav, .pagination, .carousel, .panel-title a {
cursor: pointer;
.nav, .pagination, .carousel, .panel-title a {
cursor: pointer;
}

.diff-row {
margin-bottom: 15px;
}

.diff-link {
overflow: hidden;
text-overflow: ellipsis;
}
4 changes: 2 additions & 2 deletions views/partials/release-ticket-diff-add.jade
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ div(class='modal-body')
ng-submit='submit(addDiff.$valid)'
)
div(class='form-group')
label(class='control-label col-sm-2') Phabricator Diff
label(class='control-label col-sm-2') Phabricator Diff/Commit
div(class='col-sm-10')
input(
type='text',
class='form-control',
placeholder='D####',
placeholder='D#### or r[REPO][commit hash]',
required,
ng-model='newDiff.diffId'
)
Expand Down
2 changes: 1 addition & 1 deletion views/partials/release-view.jade
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ div(ng-show="release")
ng-show='diff.repoName',
title='Added {{ diff.created | date:"EEEE, MMMM d yyyy HH:mm:ss" }}'
) {{diff.repoName}}
div(class='col-sm-2', ng-class='{"text-muted": diff.released}')
div(class='col-sm-2 diff-link', ng-class='{"text-muted": diff.released}')
a(href='http://phab.dev.ebuyer.com/{{diff.diffId}}') {{diff.diffId}}
div(class='col-sm-2', ng-class='{"text-success": diff.released && !diff.rolledBack}')
span(ng-show='diff.released && !diff.rolledBack')
Expand Down