1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-22 06:42:42 +01:00

Border-oriented priority junk.

Summary:

Test Plan:

Reviewers:

CC:
This commit is contained in:
epriestley 2011-02-11 13:07:02 -08:00
parent 8c7581b148
commit 5fbeac4abc
3 changed files with 17 additions and 11 deletions

View file

@ -199,7 +199,7 @@ celerity_register_resource_map(array(
),
'maniphest-task-summary-css' =>
array(
'uri' => '/res/18c190ab/rsrc/css/application/maniphest/task-summary.css',
'uri' => '/res/10d5ec2e/rsrc/css/application/maniphest/task-summary.css',
'type' => 'css',
'requires' =>
array(

View file

@ -50,7 +50,7 @@ class ManiphestTaskSummaryView extends AphrontView {
return
'<table class="maniphest-task-summary">'.
'<td class="maniphest-task-number">'.
'<td class="maniphest-task-number '.$pri_class.'">'.
'T'.$task->getID().
'</td>'.
'<td class="maniphest-task-status">'.
@ -72,7 +72,6 @@ class ManiphestTaskSummaryView extends AphrontView {
phutil_escape_html($task->getTitle())).
'</td>'.
'<td class="maniphest-task-priority">'.
'<span class="pri-bullet '.$pri_class.'">'."\xE2\x96\xB6".'</span> '.
ManiphestTaskPriority::getTaskPriorityName($task->getPriority()).
'</td>'.
'<td class="maniphest-task-updated">'.

View file

@ -3,11 +3,12 @@
*/
.maniphest-task-summary {
border: 1px solid #aaaaaa;
border: solid #aaaaaa;
border-width: 1px 0;
width: 100%;
margin: 2px 0;
border-collapse: separate;
border-spacing: 1px;
border-spacing: 0 0px;
}
.maniphest-task-summary td {
@ -21,6 +22,8 @@
color: #444444;
width: 1%;
min-width: 80px;
border-left-width: 3px;
border-left-style: solid;
}
.maniphest-task-summary td.maniphest-task-status {
@ -53,23 +56,27 @@
}
.maniphest-task-summary .pri-unbreak {
color: #aa0000;
border-color: #ff0000;
}
.maniphest-task-summary .pri-triage {
color: #dd00dd;
border-color: #ee00ee;
}
.maniphest-task-summary .pri-high {
color: #ff6666;
border-color: #ff6666;
}
.maniphest-task-summary .pri-normal {
color: #ffaa66;
border-color: #ffaa66;
}
.maniphest-task-summary .pri-low {
color: #ffcc66;
border-color: #eecc66;
}
.maniphest-task-summary .pri-wish {
color: #0099ff;
border-color: #0099ff;
}