1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 17:28:51 +02:00
phorge-phorge/webroot/rsrc/css/application/maniphest/task-summary.css
epriestley cdd55eda14 Use absolute widths for Maniphest task columns instead of "min-width" plus
"width: ...%"

Summary:
There's an occasional display glitch with the current CSS
(http://cl.ly/2B0Q2l3T0N2n3M0k092A) that we think this will fix.

Seems least-bad in light of this:
https://secure.phabricator.com/file/data/2f5wamew66aggnlqw7oo/PHID-FILE-aikqvnrmw525cn2wfzb2/widenarrow.png

Test Plan: Looked at Maniphest in a couple of browsers at different screen
widths.

Reviewers: paularmstrong, btrahan

Reviewed By: btrahan

CC: aran, epriestley

Differential Revision: https://secure.phabricator.com/D1669
2012-02-22 22:52:45 -08:00

90 lines
1.5 KiB
CSS

/**
* @provides maniphest-task-summary-css
*/
.maniphest-task-summary {
border: solid #aaaaaa;
border-width: 1px 0;
width: 100%;
margin: 2px 0;
border-collapse: separate;
border-spacing: 0 0px;
}
.maniphest-task-summary td {
padding: 4px 0.5%;
background: #f0f0f0;
white-space: nowrap;
}
.maniphest-task-summary td.maniphest-task-number {
font-weight: bold;
color: #444444;
width: 60px;
border-left-width: 3px;
border-left-style: solid;
}
.maniphest-task-summary td.maniphest-task-status {
width: 80px;
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-priority {
width: 80px;
}
.maniphest-task-summary td.maniphest-task-updated {
text-align: left;
width: 180px;
}
.maniphest-task-summary .pri-bullet {
}
.maniphest-task-summary .pri-unbreak {
border-color: #ff0000;
}
.maniphest-task-summary .pri-triage {
border-color: #ee00ee;
}
.maniphest-task-summary .pri-high {
border-color: #ff6666;
}
.maniphest-task-summary .pri-normal {
border-color: #ffaa66;
}
.maniphest-task-summary .pri-low {
border-color: #eecc66;
}
.maniphest-task-summary .pri-wish {
border-color: #0099ff;
}
.maniphest-task-group-header {
font-size: 18px;
margin: 1em 14px 0;
border-bottom: 1px solid #dddddd;
}
.maniphest-total-result-count {
text-align: right;
padding-right: 2em;
font-size: 11px;
color: #666666;
}