2011-02-08 19:53:59 +01:00
|
|
|
/**
|
|
|
|
* @provides maniphest-task-summary-css
|
|
|
|
*/
|
|
|
|
|
|
|
|
.maniphest-task-summary {
|
2011-02-11 22:07:02 +01:00
|
|
|
border: solid #aaaaaa;
|
|
|
|
border-width: 1px 0;
|
2011-02-08 19:53:59 +01:00
|
|
|
width: 100%;
|
|
|
|
margin: 2px 0;
|
|
|
|
border-collapse: separate;
|
2011-02-11 22:07:02 +01:00
|
|
|
border-spacing: 0 0px;
|
2011-02-08 19:53:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.maniphest-task-summary td {
|
2011-02-11 19:28:37 +01:00
|
|
|
padding: 4px 0.5%;
|
2011-02-11 20:21:18 +01:00
|
|
|
background: #f0f0f0;
|
2011-02-08 19:53:59 +01:00
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.maniphest-task-summary td.maniphest-task-number {
|
|
|
|
font-weight: bold;
|
|
|
|
color: #444444;
|
2011-02-11 19:28:37 +01:00
|
|
|
width: 1%;
|
|
|
|
min-width: 80px;
|
2011-02-11 22:07:02 +01:00
|
|
|
border-left-width: 3px;
|
|
|
|
border-left-style: solid;
|
2011-02-11 19:28:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.maniphest-task-summary td.maniphest-task-status {
|
|
|
|
width: 6%;
|
|
|
|
text-align: center;
|
|
|
|
min-width: 75px;
|
2011-02-08 19:53:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.maniphest-task-summary td.maniphest-task-owner {
|
|
|
|
width: 11%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.maniphest-task-summary td.maniphest-task-name {
|
|
|
|
overflow: hidden;
|
|
|
|
font-weight: bold;
|
2011-02-24 23:40:26 +01:00
|
|
|
white-space: normal;
|
2011-02-08 19:53:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.maniphest-task-summary td.maniphest-task-priority {
|
|
|
|
width: 11%;
|
2011-02-11 19:28:37 +01:00
|
|
|
min-width: 120px;
|
2011-02-08 19:53:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.maniphest-task-summary td.maniphest-task-updated {
|
2011-02-11 19:28:37 +01:00
|
|
|
text-align: left;
|
Use phabricator_ time functions in more places
Summary:
Replace some more date() calls with locale-aware calls.
Also, at least on my system, the DateTimeZone / DateTime stuff didn't actually
work and always rendered in UTC. Fixed that.
Test Plan:
Viewed daemon console, differential revisions, files, and maniphest timestamps
in multiple timezones.
Reviewed By: toulouse
Reviewers: toulouse, fratrik, jungejason, aran, tuomaspelkonen
CC: aran, toulouse
Differential Revision: 530
2011-06-26 18:22:52 +02:00
|
|
|
width: 13%;
|
|
|
|
min-width: 160px;
|
2011-02-11 19:28:37 +01:00
|
|
|
}
|
|
|
|
|
2011-02-11 20:21:18 +01:00
|
|
|
.maniphest-task-summary .pri-bullet {
|
|
|
|
}
|
|
|
|
|
|
|
|
.maniphest-task-summary .pri-unbreak {
|
2011-02-11 22:07:02 +01:00
|
|
|
border-color: #ff0000;
|
2011-02-11 20:21:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.maniphest-task-summary .pri-triage {
|
2011-02-11 22:07:02 +01:00
|
|
|
border-color: #ee00ee;
|
2011-02-11 20:21:18 +01:00
|
|
|
}
|
2011-02-11 22:07:02 +01:00
|
|
|
|
2011-02-11 20:21:18 +01:00
|
|
|
.maniphest-task-summary .pri-high {
|
2011-02-11 22:07:02 +01:00
|
|
|
border-color: #ff6666;
|
2011-02-11 20:21:18 +01:00
|
|
|
}
|
2011-02-11 22:07:02 +01:00
|
|
|
|
2011-02-11 20:21:18 +01:00
|
|
|
.maniphest-task-summary .pri-normal {
|
2011-02-11 22:07:02 +01:00
|
|
|
border-color: #ffaa66;
|
2011-02-11 20:21:18 +01:00
|
|
|
}
|
2011-02-11 22:07:02 +01:00
|
|
|
|
2011-02-11 20:21:18 +01:00
|
|
|
.maniphest-task-summary .pri-low {
|
2011-02-11 22:07:02 +01:00
|
|
|
border-color: #eecc66;
|
2011-02-11 20:21:18 +01:00
|
|
|
}
|
2011-02-11 22:07:02 +01:00
|
|
|
|
2011-02-11 20:21:18 +01:00
|
|
|
.maniphest-task-summary .pri-wish {
|
2011-02-11 22:07:02 +01:00
|
|
|
border-color: #0099ff;
|
2011-02-11 20:21:18 +01:00
|
|
|
}
|
|
|
|
|
2011-02-11 19:28:37 +01:00
|
|
|
.maniphest-task-group-header {
|
|
|
|
font-size: 18px;
|
Allow Maniphest to scale to a massive size
Summary:
Maniphest is missing some keys and some query strategy which will make it
cumbersome to manage more than a few tens of thousands of tasks.
Test Plan:
Handily manipulated 100k-scale task groups. Maniphest takes about 250ms to
select and render pages of 1,000 tasks and has no problem paging and filtering
them, etc. We should be good to scale to multiple millions of tasks with these
changes.
Reviewed By: gc3
Reviewers: fratrik, jungejason, aran, tuomaspelkonen, gc3
Commenters: jungejason
CC: anjali, aran, epriestley, gc3, jungejason
Differential Revision: 534
2011-06-27 03:50:17 +02:00
|
|
|
margin: 1em 14px 0;
|
2011-02-11 19:28:37 +01:00
|
|
|
border-bottom: 1px solid #dddddd;
|
2011-02-08 19:53:59 +01:00
|
|
|
}
|
Allow Maniphest to scale to a massive size
Summary:
Maniphest is missing some keys and some query strategy which will make it
cumbersome to manage more than a few tens of thousands of tasks.
Test Plan:
Handily manipulated 100k-scale task groups. Maniphest takes about 250ms to
select and render pages of 1,000 tasks and has no problem paging and filtering
them, etc. We should be good to scale to multiple millions of tasks with these
changes.
Reviewed By: gc3
Reviewers: fratrik, jungejason, aran, tuomaspelkonen, gc3
Commenters: jungejason
CC: anjali, aran, epriestley, gc3, jungejason
Differential Revision: 534
2011-06-27 03:50:17 +02:00
|
|
|
|
|
|
|
.maniphest-total-result-count {
|
|
|
|
text-align: right;
|
|
|
|
padding-right: 2em;
|
|
|
|
font-size: 11px;
|
|
|
|
color: #666666;
|
|
|
|
}
|