1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 01:08:50 +02:00

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
This commit is contained in:
epriestley 2012-02-22 22:52:45 -08:00
parent 913c931cb0
commit cdd55eda14
2 changed files with 6 additions and 10 deletions

View file

@ -1274,7 +1274,7 @@ celerity_register_resource_map(array(
), ),
'maniphest-task-summary-css' => 'maniphest-task-summary-css' =>
array( array(
'uri' => '/res/14cb4b5d/rsrc/css/application/maniphest/task-summary.css', 'uri' => '/res/44e5169a/rsrc/css/application/maniphest/task-summary.css',
'type' => 'css', 'type' => 'css',
'requires' => 'requires' =>
array( array(

View file

@ -20,20 +20,18 @@
.maniphest-task-summary td.maniphest-task-number { .maniphest-task-summary td.maniphest-task-number {
font-weight: bold; font-weight: bold;
color: #444444; color: #444444;
width: 1%; width: 60px;
min-width: 80px;
border-left-width: 3px; border-left-width: 3px;
border-left-style: solid; border-left-style: solid;
} }
.maniphest-task-summary td.maniphest-task-status { .maniphest-task-summary td.maniphest-task-status {
width: 6%; width: 80px;
text-align: center; text-align: center;
min-width: 75px;
} }
.maniphest-task-summary td.maniphest-task-owner { .maniphest-task-summary td.maniphest-task-owner {
width: 11%; width: 100px;
} }
.maniphest-task-summary td.maniphest-task-name { .maniphest-task-summary td.maniphest-task-name {
@ -43,14 +41,12 @@
} }
.maniphest-task-summary td.maniphest-task-priority { .maniphest-task-summary td.maniphest-task-priority {
width: 11%; width: 80px;
min-width: 120px;
} }
.maniphest-task-summary td.maniphest-task-updated { .maniphest-task-summary td.maniphest-task-updated {
text-align: left; text-align: left;
width: 13%; width: 180px;
min-width: 160px;
} }
.maniphest-task-summary .pri-bullet { .maniphest-task-summary .pri-bullet {