mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-25 06:50:55 +01:00
f49e35deaf
Summary: This allows you to edit dependencies. It is a better patch than it used to be. It depends on D725. - If you create a cycle, it just throws an exception and aborts the workflow. It should not do this. - Tasks which depend on the current task aren't shown in the UI. Need to add a new table for this. - Transaction text says "attached Task" but should probably say "added a dependency on task". Test Plan: Created valid and invalid dependencies between tasks. Created valid and invalid dependencies between revisions. Reviewed By: tuomaspelkonen Reviewers: davidreuss, jungejason, tuomaspelkonen, aran Commenters: codeblock CC: aran, codeblock, tuomaspelkonen, epriestley Differential Revision: 595
71 lines
1.8 KiB
CSS
71 lines
1.8 KiB
CSS
/**
|
|
* @provides aphront-headsup-action-list-view-css
|
|
*/
|
|
|
|
.aphront-headsup-object-name {
|
|
color: #666666;
|
|
margin-right: 0.25em;
|
|
}
|
|
|
|
.aphront-headsup-action-list {
|
|
float: right;
|
|
width: 250px;
|
|
background: #cfcfbf;
|
|
border: 1px solid #666622;
|
|
border-width: 0px 0px 1px 1px;
|
|
margin: -15px -20px 1em 0;
|
|
font-size: 11px;
|
|
}
|
|
|
|
.aphront-headsup-action-list a,
|
|
.aphront-headsup-action-list span,
|
|
.aphront-headsup-action-list button {
|
|
background-position: 8px center;
|
|
background-repeat: no-repeat;
|
|
display: block;
|
|
padding: 4px 4px 4px 32px;
|
|
line-height: normal;
|
|
}
|
|
|
|
.aphront-headsup-action-list span.unavailable {
|
|
color: #666666;
|
|
font-style: italic;
|
|
}
|
|
|
|
.aphront-headsup-action-list .subscribe-rem {
|
|
background-image: url(/rsrc/image/icon/unsubscribe.png);
|
|
}
|
|
|
|
.aphront-headsup-action-list .subscribe-add {
|
|
background-image: url(/rsrc/image/icon/subscribe.png);
|
|
}
|
|
|
|
.aphront-headsup-action-list .action-edit,
|
|
.aphront-headsup-action-list .revision-edit {
|
|
background-image: url(/rsrc/image/icon/tango/edit.png);
|
|
}
|
|
|
|
.aphront-headsup-action-list .action-attach,
|
|
.aphront-headsup-action-list .attach-maniphest {
|
|
background-image: url(/rsrc/image/icon/tango/attachment.png);
|
|
}
|
|
|
|
.aphront-headsup-action-list .action-upload {
|
|
background-image: url(/rsrc/image/icon/tango/upload.png);
|
|
}
|
|
|
|
.aphront-headsup-action-list .transcripts-metamta {
|
|
background-image: url(/rsrc/image/icon/tango/log.png);
|
|
}
|
|
|
|
.aphront-headsup-action-list .transcripts-herald {
|
|
background-image: url(/rsrc/image/icon/tango/log.png);
|
|
}
|
|
|
|
.aphront-headsup-action-list .action-merge {
|
|
background-image: url(/rsrc/image/icon/fatcow/arrow_merge.png);
|
|
}
|
|
|
|
.aphront-headsup-action-list .action-dependencies {
|
|
background-image: url(/rsrc/image/icon/fatcow/link.png);
|
|
}
|