mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +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
28 lines
449 B
CSS
28 lines
449 B
CSS
/**
|
|
* @provides aphront-contextbar-view-css
|
|
*/
|
|
|
|
.aphront-contextbar-view {
|
|
background: #fff;
|
|
padding: 8px 16px;
|
|
border-bottom: 1px solid {$lightblueborder};
|
|
}
|
|
|
|
.aphront-contextbar-content {
|
|
padding-top: 5px;
|
|
font-size: 13px;
|
|
color: {$bluetext};
|
|
}
|
|
|
|
.aphront-contextbar-buttons {
|
|
float: right;
|
|
}
|
|
|
|
.aphront-contextbar-buttons label {
|
|
font-weight: bold;
|
|
color: {$bluetext};
|
|
}
|
|
|
|
.aphront-contextbar-buttons a {
|
|
margin: 0 0 0 .5em;
|
|
}
|