mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-27 01:02:42 +01:00
3d407732d6
Summary: Ref T8099. In most cases we return either an ObjectList or AphrontTable, and can pretty up the UI in ApplicationSearch. There are a few edge cases, like PeopleUserLog, that can be cleanup up individually in the future, but look fine for now. Also added 'setNotice' for AphrontTable for a few cases where we want to convey addtional information. TODO: Seems we always pass a Pager Object, which tries to get displayed, I'll redesign that interaction in the future, probably by passing the Pager to the ObjectBox Test Plan: Went throught most/all ApplicationSearch panels I could find, even edge cases look better. Reviewers: btrahan, epriestley Reviewed By: epriestley Subscribers: Korvin, epriestley Maniphest Tasks: T8099 Differential Revision: https://secure.phabricator.com/D12989
41 lines
725 B
CSS
41 lines
725 B
CSS
/**
|
|
* @provides maniphest-task-summary-css
|
|
*/
|
|
.device-phone .maniphest-batch-editor,
|
|
.device-phone .maniphest-task-updated {
|
|
display: none;
|
|
}
|
|
|
|
.maniphest-batch-editor {
|
|
border-top: 1px solid {$thinblueborder};
|
|
}
|
|
|
|
.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};
|
|
}
|