mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
d96d515cc2
Summary: Allows you to link to comments with "D123#3" or "T123#3", then adds a pile of JS to try to make it not terrible. :/ The thing I'm trying to avoid here is when someone says "look at this! http://blog.com/#comment-239291" and you click and your browser jumps somewhere random and you have no idea which comment they meant. Since I really hate this, I've tried to avoid it by making sure the comment is always highlighted. Test Plan: Put T1#1 and D1#1 in remarkup and verified they linked properly. Clicked anchors on individual comments. Faked all comments hidden in Differential and verified they expanded on anchor or anchor change. Reviewed By: aran Reviewers: aran, tomo, mroch, jungejason, tuomaspelkonen CC: aran, epriestley Differential Revision: 383
103 lines
1.9 KiB
CSS
103 lines
1.9 KiB
CSS
/**
|
|
* @provides maniphest-transaction-detail-css
|
|
*/
|
|
|
|
.maniphest-trnasaction-list-view {
|
|
padding: .5em 1.5em;
|
|
}
|
|
|
|
.maniphest-transaction-detail-container {
|
|
margin: 1em 1em 1.25em;
|
|
background: 2px 2px no-repeat;
|
|
min-height: 50px;
|
|
padding: 2px 2px;
|
|
border: 1px solid transparent;
|
|
}
|
|
|
|
.maniphest-transaction-list-view .anchor-target {
|
|
background-color: #ffffdd;
|
|
border-color: #ffff00;
|
|
}
|
|
|
|
.maniphest-transaction-detail-container .upforgrab {
|
|
border-color: #cc9966;
|
|
}
|
|
|
|
.maniphest-transaction-detail-container .reassigned {
|
|
border-color: #0099aa;
|
|
}
|
|
|
|
.maniphest-transaction-detail-container .assigned {
|
|
border-color: #0099aa;
|
|
}
|
|
|
|
.maniphest-transaction-detail-container .claimed {
|
|
border-color: #0099aa;
|
|
}
|
|
|
|
.maniphest-transaction-detail-container .created {
|
|
border-color: #660099;
|
|
}
|
|
|
|
.maniphest-transaction-detail-container .closed {
|
|
border-color: #006699;
|
|
}
|
|
|
|
.maniphest-transaction-detail-container .spited {
|
|
border-color: #006699;
|
|
}
|
|
|
|
.maniphest-transaction-detail-container .reopened {
|
|
border-color: #660099;
|
|
}
|
|
|
|
.maniphest-transaction-detail-container .unbreaknow {
|
|
border-color: #aa0000;
|
|
}
|
|
|
|
.maniphest-transaction-header {
|
|
background: #f3f3f3;
|
|
padding: 4px 1em;
|
|
}
|
|
|
|
.maniphest-transaction-header a {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.maniphest-transaction-detail-view {
|
|
margin-left: 54px;
|
|
border-color: #dddddd;
|
|
border-width: 1px 10px;
|
|
border-style: solid;
|
|
}
|
|
|
|
.maniphest-transaction-timestamp {
|
|
float: right;
|
|
font-size: 11px;
|
|
color: #666666;
|
|
}
|
|
|
|
.maniphest-transaction-comments {
|
|
border-top: 1px solid #e6e6e6;
|
|
padding: 4px 1em;
|
|
background: #fcfcfc;
|
|
}
|
|
|
|
.maniphest-change-table {
|
|
width: 100%;
|
|
margin: .5em 0em;
|
|
border-collapse: separate;
|
|
border-spacing: 4px 0px;
|
|
}
|
|
|
|
.maniphest-change-table td {
|
|
width: 50%;
|
|
padding: 0.25em 1em;
|
|
background: #f9f9f9;
|
|
}
|
|
|
|
.maniphest-change-table th {
|
|
font-weight: bold;
|
|
padding: 0.25em;
|
|
border-bottom: 1px solid #cccccc;
|
|
}
|