1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-01-23 21:18:19 +01:00
phorge-phorge/webroot/rsrc/css/application/maniphest/task-summary.css
epriestley 49a0b3fab0 Show projects on Maniphest tasks
Summary:
  - Remove the "Priority" column, since this is indicated by the color swatch, to save space.
  - Reduce the "Updated" column from datetime to date only, since time isn't incredibly useful, to save space.
  - Show the first two projects a task is associated with, and "..." if there are more.
  - Show "None" (for "no owner") in a lighter color.

Test Plan: Looked at tasks on homepage and in Maniphest.

Reviewers: btrahan, 20after4

Reviewed By: btrahan

CC: aran, edward

Maniphest Tasks: T967

Differential Revision: https://secure.phabricator.com/D2065
2012-04-02 10:27:31 -07:00

180 lines
3.1 KiB
CSS

/**
* @provides maniphest-task-summary-css
*/
.maniphest-task-summary {
width: 100%;
margin: 4px 0;
border-collapse: collapse;
font-size: 12px;
color: #222222;
}
.maniphest-task-summary td {
padding: 5px 3px;
background: #f9f9f9;
white-space: nowrap;
border-style: solid;
border-top-color: #888888;
border-bottom-color: #666666;
border-width: 1px 0;
}
.maniphest-task-summary td em {
color: #888888;
}
.maniphest-batch-selected td {
background: #f6ff88;
}
.maniphest-task-summary td.maniphest-task-handle {
padding: 0 6px;
width: 1px;
border-right-width: 1px;
border-right-color: #787878;
}
.maniphest-task-summary td.maniphest-task-batch {
padding-right: 0px;
width: 16px;
text-align: center;
}
.maniphest-task-summary td.maniphest-task-batch,
.maniphest-task-summary td.maniphest-task-batch input {
cursor: pointer;
}
.maniphest-task-summary td.maniphest-task-batch input {
margin: 0;
}
.maniphest-task-summary td.maniphest-task-number {
font-weight: bold;
color: #444444;
width: 70px;
text-align: right;
}
.maniphest-task-summary td.maniphest-task-status {
width: 60px;
text-align: center;
}
.maniphest-task-summary td.maniphest-task-owner {
width: 100px;
}
.maniphest-task-summary td.maniphest-task-name {
overflow: hidden;
font-weight: bold;
white-space: normal;
}
.maniphest-task-summary td.maniphest-task-projects {
width: 180px;
text-align: right;
white-space: normal;
}
.maniphest-task-summary td.maniphest-task-updated {
text-align: right;
width: 85px;
padding-right: 8px;
border-right-width: 1px;
border-right-style: solid;
border-right-color: #787878;
}
.maniphest-task-summary .pri-bullet {
}
.maniphest-task-summary .pri-unbreak {
border-color: #ff0000;
background: #ff0000;
}
.maniphest-task-summary .pri-triage {
border-color: #ee00ee;
background: #ee00ee;
}
.maniphest-task-summary .pri-high {
border-color: #ff6622;
background: #ff6622;
}
.maniphest-task-summary .pri-normal {
border-color: #ffaa66;
background: #ffaa66;
}
.maniphest-task-summary .pri-low {
border-color: #eecc66;
background: #eecc66;
}
.maniphest-task-summary .pri-wish {
border-color: #0099ff;
background: #0099ff;
}
.maniphest-task-group-header {
font-size: 18px;
margin: 1em 0;
border-bottom: 1px solid #dddddd;
}
.maniphest-total-result-count {
text-align: right;
padding-right: 2em;
font-size: 11px;
color: #666666;
}
.batch-editor-header {
font-size: 11px;
color: #666666;
padding: 4px 0px;
font-weight: bold;
}
.maniphest-batch-editor {
margin: 1em 1em;
}
.maniphest-batch-editor-layout {
width: 100%;
border-top: 1px solid #bbbbbb;
background: #efefef;
}
.maniphest-batch-editor-layout td {
padding: 6px 8px;
white-space: nowrap;
}
.maniphest-batch-editor-layout a.button,
.maniphest-batch-editor-layout button {
margin: 0px 4px;
}
.maniphest-batch-editor-layout .batch-select-submit-cell {
text-align: right;
}
#batch-select-status-cell {
text-align: right;
color: #666666;
font-size: 11px;
vertical-align: middle;
width: 100%;
}
.maniphest-list-container {
padding: 0 1em;
}