mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
ba7ac39130
Summary: This removes the people box and adds a members property list item it's place. We may want some show/hide/see all if a project has more than //n// members, but these seems more reasonable than previous layout. Test Plan: Tested a project with and without members, grepped for removed CSS, and tested mobile and desktop layouts. Reviewers: epriestley Reviewed By: epriestley CC: Korvin, epriestley, aran Differential Revision: https://secure.phabricator.com/D7870
18 lines
297 B
CSS
18 lines
297 B
CSS
/**
|
|
* @provides phabricator-profile-css
|
|
*/
|
|
|
|
.device-desktop .profile-feed,
|
|
.device-tablet .profile-feed {
|
|
max-width: 640px;
|
|
padding: 12px 16px;
|
|
}
|
|
|
|
.device-phone .profile-feed {
|
|
padding: 12px 0;
|
|
}
|
|
|
|
.profile-feed .phabricator-action-header-title {
|
|
font-size: 16px;
|
|
margin-bottom: 5px;
|
|
}
|