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

Dashboard panel for Maniphest tasks/groups

Summary: Basic styling for the 'panel' version of Maniphest groups. Not super sold on it, but a decent start.

Test Plan:
Test dashboards and Maniphest homepage

{F157639}

{F157640}

Reviewers: btrahan, epriestley

Reviewed By: epriestley

Subscribers: epriestley, Korvin

Differential Revision: https://secure.phabricator.com/D9219
This commit is contained in:
Chad Little 2014-05-20 11:48:16 -07:00
parent 8e8e2ceb31
commit f9f4fe67fb
2 changed files with 36 additions and 5 deletions

View file

@ -15,7 +15,7 @@ return array(
'diffusion.pkg.css' => '3783278d', 'diffusion.pkg.css' => '3783278d',
'diffusion.pkg.js' => '077e3ad0', 'diffusion.pkg.js' => '077e3ad0',
'javelin.pkg.js' => 'b4831ebf', 'javelin.pkg.js' => 'b4831ebf',
'maniphest.pkg.css' => 'f1887d71', 'maniphest.pkg.css' => 'fdc718f2',
'maniphest.pkg.js' => '2fe8af22', 'maniphest.pkg.js' => '2fe8af22',
'rsrc/css/aphront/aphront-bars.css' => '231ac33c', 'rsrc/css/aphront/aphront-bars.css' => '231ac33c',
'rsrc/css/aphront/context-bar.css' => '1c3b0529', 'rsrc/css/aphront/context-bar.css' => '1c3b0529',
@ -75,7 +75,7 @@ return array(
'rsrc/css/application/maniphest/batch-editor.css' => '8f380ebc', 'rsrc/css/application/maniphest/batch-editor.css' => '8f380ebc',
'rsrc/css/application/maniphest/report.css' => '6fc16517', 'rsrc/css/application/maniphest/report.css' => '6fc16517',
'rsrc/css/application/maniphest/task-edit.css' => '8e23031b', 'rsrc/css/application/maniphest/task-edit.css' => '8e23031b',
'rsrc/css/application/maniphest/task-summary.css' => '6df1a768', 'rsrc/css/application/maniphest/task-summary.css' => '05ccbfb7',
'rsrc/css/application/objectselector/object-selector.css' => '029a133d', 'rsrc/css/application/objectselector/object-selector.css' => '029a133d',
'rsrc/css/application/owners/owners-path-editor.css' => '2f00933b', 'rsrc/css/application/owners/owners-path-editor.css' => '2f00933b',
'rsrc/css/application/paste/paste.css' => 'aa1767d1', 'rsrc/css/application/paste/paste.css' => 'aa1767d1',
@ -684,7 +684,7 @@ return array(
'maniphest-batch-editor' => '8f380ebc', 'maniphest-batch-editor' => '8f380ebc',
'maniphest-report-css' => '6fc16517', 'maniphest-report-css' => '6fc16517',
'maniphest-task-edit-css' => '8e23031b', 'maniphest-task-edit-css' => '8e23031b',
'maniphest-task-summary-css' => '6df1a768', 'maniphest-task-summary-css' => '05ccbfb7',
'multirow-row-manager' => '50395a1b', 'multirow-row-manager' => '50395a1b',
'owners-path-editor' => '46efd18e', 'owners-path-editor' => '46efd18e',
'owners-path-editor-css' => '2f00933b', 'owners-path-editor-css' => '2f00933b',

View file

@ -2,8 +2,8 @@
* @provides maniphest-task-summary-css * @provides maniphest-task-summary-css
*/ */
.maniphest-task-group { .maniphest-task-group + .maniphest-task-group {
padding-bottom: 24px; padding-top: 24px;
} }
.maniphest-batch-selected td { .maniphest-batch-selected td {
@ -45,6 +45,10 @@
display: none; display: none;
} }
.maniphest-batch-editor {
padding-top: 24px;
}
.maniphest-batch-editor-layout { .maniphest-batch-editor-layout {
width: 100%; width: 100%;
border: 1px solid #e7e7e7; border: 1px solid #e7e7e7;
@ -85,3 +89,30 @@
.maniphest-board-link { .maniphest-board-link {
color: {$bluetext}; color: {$bluetext};
} }
/* - Dashboards ------------------------------------------------------------ */
.dashboard-panel .maniphest-list-container {
background: {$backdrop};
border-left: 1px solid {$lightblueborder};
border-right: 1px solid {$lightblueborder};
border-bottom: 1px solid {$blueborder};
}
.dashboard-panel .maniphest-list-container {
padding: 4px 4px 0 4px;
}
.dashboard-panel .maniphest-task-group-header {
font-size: 12px;
font-weight: normal;
color: {$bluetext};
padding: 4px 8px;
background: rgba(255,255,255,.5);
margin: 0 0 4px 0;
border-radius: 3px;
}
.dashboard-panel .maniphest-task-group + .maniphest-task-group {
padding-top: 0;
}