mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-23 15:22:41 +01:00
46f6c2680e
Summary: New, cleaner, ObjectItemLists. Lots of minor style tweaks, basic overview: - Remove FootIcons - Remove Stackable - Remove Plain List - Add StatusIcon - Add setting ObjectList to an ObjectBox - Minor retouches to Headers Mostly, this should give us an idea of life with the new Object Lists. I'll take another application by application pass down the road. This mostly looks at implementation in Maniphest, Differential, Audit, Workboards. Checked a few other areas and dialogs while testing, and everything looks square. Test Plan: Maniphest, Differential, Homepage, Audit, People, and other applications. Drag reorder, etc. Reviewers: btrahan, epriestley Reviewed By: epriestley Subscribers: Korvin, epriestley Differential Revision: https://secure.phabricator.com/D12865
71 lines
1.3 KiB
CSS
71 lines
1.3 KiB
CSS
/**
|
|
* @provides maniphest-task-summary-css
|
|
*/
|
|
|
|
.device-phone .maniphest-task-batch,
|
|
.device-phone .maniphest-task-updated {
|
|
display: none;
|
|
}
|
|
|
|
.maniphest-task-group-header {
|
|
font-size: 16px;
|
|
font-weight: normal;
|
|
color: {$darkbluetext};
|
|
padding: 0 0 8px 0;
|
|
}
|
|
|
|
.maniphest-total-result-count {
|
|
text-align: right;
|
|
padding: 5px 20px 0 0;
|
|
font-size: 11px;
|
|
color: {$greytext};
|
|
}
|
|
|
|
.device-phone .maniphest-total-result-count {
|
|
padding-right: 5px;
|
|
}
|
|
|
|
.maniphest-batch-editor-layout {
|
|
width: 100%;
|
|
}
|
|
|
|
.maniphest-batch-editor-layout td {
|
|
padding: 12px 4px 8px;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.maniphest-batch-editor-layout a.button,
|
|
.maniphest-batch-editor-layout button {
|
|
margin: 0px 4px;
|
|
}
|
|
|
|
.maniphest-batch-editor-layout .batch-select-submit-cell {
|
|
text-align: right;
|
|
}
|
|
|
|
#batch-select-status-cell {
|
|
text-align: right;
|
|
color: {$greytext};
|
|
font-size: 11px;
|
|
vertical-align: middle;
|
|
width: 100%;
|
|
}
|
|
|
|
.maniphest-board-link {
|
|
color: {$bluetext};
|
|
}
|
|
|
|
/* - Dashboards ------------------------------------------------------------ */
|
|
|
|
.dashboard-panel .maniphest-list-container {
|
|
padding: 0;
|
|
}
|
|
|
|
.dashboard-panel .maniphest-task-group + .maniphest-task-group {
|
|
padding-top: 0;
|
|
}
|
|
|
|
.dashboard-panel .maniphest-task-group-header {
|
|
border-left: 1px solid {$lightblueborder};
|
|
border-right: 1px solid {$lightblueborder};
|
|
}
|