mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 10:22:42 +01:00
432cdb6143
Summary: - Fixes line height when many long tasks are attached to a task. - Tightens up mobile layout of timeline and object box - Clean up aphront context bar Test Plan: Tested all the changes, made tasks, stared at pixels. Reviewers: epriestley, btrahan Reviewed By: epriestley CC: Korvin, aran Maniphest Tasks: T3891 Differential Revision: https://secure.phabricator.com/D7169
42 lines
766 B
CSS
42 lines
766 B
CSS
/**
|
|
* @provides phui-object-box-css
|
|
*/
|
|
|
|
.phui-object-box.phui-object-box-flush {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.phui-object-box .phui-header-shell {
|
|
padding: 4px 5px 4px 12px;
|
|
border-bottom: 1px solid {$lightblueborder};
|
|
border-top: none;
|
|
}
|
|
|
|
.phui-object-box .phui-header-image {
|
|
margin: 5px 12px 5px 0;
|
|
}
|
|
|
|
.phui-object-box .phui-header-shell h1 {
|
|
color: {$bluetext};
|
|
text-shadow: 0 1px #fff;
|
|
padding: 8px 0;
|
|
}
|
|
|
|
.phui-object-box .aphront-error-view {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.device-desktop .phui-object-box
|
|
.phui-header-shell + .phabricator-action-list-view {
|
|
margin-top: 0;
|
|
margin-bottom: -12px;
|
|
border-width: 0 0 0 1px;
|
|
}
|
|
|
|
.device-phone .phui-object-box {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.device-phone .phui-object-box + .phui-object-box {
|
|
border-top: none;
|
|
}
|