mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 02:12:41 +01:00
953f281dc0
Summary: A refresh of Projects including a new navigations UI. - New Navigation UI. - Auto switch default page if Workboard has been initialized - Move Feed to it's own page - Increase 'tasks' on Project Home to 50 over 10 - Fix various display bugs on Workboards - Remove 'crumbs' from Project portal (unneeded). Test Plan: - clicked a link for a project with no workboard and saw the profile - clicked a link for a project with a workboard and saw the workboard - navigated around the various edit pages, inspecting links and making sure things linked back to the new profile uri {F266460} {F266461} {F266462} {F266463} {F266464} Reviewers: epriestley, btrahan Reviewed By: epriestley, btrahan Subscribers: Korvin, epriestley Differential Revision: https://secure.phabricator.com/D11272
63 lines
1.1 KiB
CSS
63 lines
1.1 KiB
CSS
/**
|
|
* @provides phabricator-profile-css
|
|
*/
|
|
|
|
.device-desktop .profile-feed,
|
|
.device-tablet .profile-feed {
|
|
padding: 0 16px 16px 0;
|
|
}
|
|
|
|
.device-phone .profile-feed {
|
|
padding: 12px 0;
|
|
}
|
|
|
|
.device-phone .phabricator-project-layout .profile-feed {
|
|
padding: 12px 8px;
|
|
}
|
|
|
|
.profile-feed .phui-action-header-title {
|
|
font-size: 16px;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.profile-activity-view {
|
|
padding-top: 16px;
|
|
}
|
|
|
|
.profile-activity-view .profile-calendar {
|
|
float: left;
|
|
margin: 0 16px;
|
|
}
|
|
|
|
.profile-activity-view .profile-feed {
|
|
margin-left: 16px;
|
|
}
|
|
|
|
.profile-activity-view.profile-has-calendar .profile-feed {
|
|
margin-left: 332px;
|
|
}
|
|
|
|
.device-phone .profile-activity-view .profile-calendar {
|
|
float: none;
|
|
margin: 0 8px;
|
|
}
|
|
|
|
.device-phone .profile-activity-view .profile-feed {
|
|
float: none;
|
|
margin: 0 8px;
|
|
}
|
|
|
|
.device-desktop .phabricator-project-layout .profile-feed,
|
|
.device-tablet .phabricator-project-layout .profile-feed {
|
|
padding: 16px;
|
|
}
|
|
|
|
.phabricator-project-feed {
|
|
padding: 4px 0 12px 12px;
|
|
max-width: 640px;
|
|
}
|
|
|
|
.device-phone .phabricator-project-feed {
|
|
padding: 0 12px;
|
|
width: auto;
|
|
}
|