mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
092f540199
Summary: Ref T3583. Currently, we have some hard-coded behaviors associated with the "Unbreak Now" and "Needs Triage" priorities. Remove them: - Users seem somewhat confused by these on occasion, and never seem to think they're cool/useful (that I've seen, at least). - I think they have low utility in general, see T3583. - Saves three queries on the home page, which can no longer use row counting since they must be policy filtered. - Primarily, this paves the way for allowing installs to customize priorities, which is an occasional request. Also deletes a lot of code with no callsites. Test Plan: Mostly `grep`. Loaded home page. Viewed reports and task list. Reviewers: btrahan Reviewed By: btrahan CC: chad, aran Maniphest Tasks: T3583 Differential Revision: https://secure.phabricator.com/D6981
71 lines
1.2 KiB
CSS
71 lines
1.2 KiB
CSS
/**
|
|
* @provides maniphest-transaction-detail-css
|
|
*/
|
|
|
|
.maniphest-transaction-list-view {
|
|
padding: 0 20px;
|
|
}
|
|
|
|
.device-phone .maniphest-transaction-list-view {
|
|
padding: 0 10px;
|
|
}
|
|
|
|
.maniphest-transaction-list-view .anchor-target {
|
|
background-color: #ffffdd;
|
|
border-color: #ffff00;
|
|
}
|
|
|
|
.phabricator-transaction-view .upforgrab {
|
|
border-color: #cc9966;
|
|
}
|
|
|
|
.phabricator-transaction-view .reassigned {
|
|
border-color: #0099aa;
|
|
}
|
|
|
|
.phabricator-transaction-view .assigned {
|
|
border-color: #0099aa;
|
|
}
|
|
|
|
.phabricator-transaction-view .claimed {
|
|
border-color: #0099aa;
|
|
}
|
|
|
|
.phabricator-transaction-view .created {
|
|
border-color: #660099;
|
|
}
|
|
|
|
.phabricator-transaction-view .closed {
|
|
border-color: #006699;
|
|
}
|
|
|
|
.phabricator-transaction-view .spited {
|
|
border-color: #006699;
|
|
}
|
|
|
|
.phabricator-transaction-view .reopened {
|
|
border-color: #660099;
|
|
}
|
|
|
|
.phabricator-transaction-view .duplicate {
|
|
border-color: #333333;
|
|
}
|
|
|
|
.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;
|
|
}
|