mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
Fix project feed layout
Summary: This was clobbered when we added calendar feed to profiles, not projects. Test Plan: Browse Project on desktop and mobile, re-check profile. Reviewers: epriestley Reviewed By: epriestley Subscribers: epriestley, Korvin, chad Differential Revision: https://secure.phabricator.com/D8617
This commit is contained in:
parent
2e0301d647
commit
c63d92be72
2 changed files with 11 additions and 2 deletions
|
@ -94,7 +94,7 @@ return array(
|
||||||
'rsrc/css/application/ponder/feed.css' => 'e62615b6',
|
'rsrc/css/application/ponder/feed.css' => 'e62615b6',
|
||||||
'rsrc/css/application/ponder/post.css' => 'ebab8a70',
|
'rsrc/css/application/ponder/post.css' => 'ebab8a70',
|
||||||
'rsrc/css/application/ponder/vote.css' => '8ed6ed8b',
|
'rsrc/css/application/ponder/vote.css' => '8ed6ed8b',
|
||||||
'rsrc/css/application/profile/profile-view.css' => '9bdb9804',
|
'rsrc/css/application/profile/profile-view.css' => '33e6f703',
|
||||||
'rsrc/css/application/projects/project-tag.css' => '095c9404',
|
'rsrc/css/application/projects/project-tag.css' => '095c9404',
|
||||||
'rsrc/css/application/releeph/releeph-branch.css' => 'b8821d2d',
|
'rsrc/css/application/releeph/releeph-branch.css' => 'b8821d2d',
|
||||||
'rsrc/css/application/releeph/releeph-colors.css' => '2d2d6aa8',
|
'rsrc/css/application/releeph/releeph-colors.css' => '2d2d6aa8',
|
||||||
|
@ -707,7 +707,7 @@ return array(
|
||||||
'phabricator-object-selector-css' => '029a133d',
|
'phabricator-object-selector-css' => '029a133d',
|
||||||
'phabricator-phtize' => 'd254d646',
|
'phabricator-phtize' => 'd254d646',
|
||||||
'phabricator-prefab' => '0326e5d0',
|
'phabricator-prefab' => '0326e5d0',
|
||||||
'phabricator-profile-css' => '9bdb9804',
|
'phabricator-profile-css' => '33e6f703',
|
||||||
'phabricator-project-tag-css' => '095c9404',
|
'phabricator-project-tag-css' => '095c9404',
|
||||||
'phabricator-remarkup-css' => '0923dbd6',
|
'phabricator-remarkup-css' => '0923dbd6',
|
||||||
'phabricator-search-results-css' => 'f240504c',
|
'phabricator-search-results-css' => 'f240504c',
|
||||||
|
|
|
@ -11,6 +11,10 @@
|
||||||
padding: 12px 0;
|
padding: 12px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.device-phone .phabricator-project-layout .profile-feed {
|
||||||
|
padding: 12px 8px;
|
||||||
|
}
|
||||||
|
|
||||||
.profile-feed .phabricator-action-header-title {
|
.profile-feed .phabricator-action-header-title {
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
|
@ -38,3 +42,8 @@
|
||||||
float: none;
|
float: none;
|
||||||
margin: 0 8px;
|
margin: 0 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.device-desktop .phabricator-project-layout .profile-feed,
|
||||||
|
.device-tablet .phabricator-project-layout .profile-feed {
|
||||||
|
padding: 16px;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue