mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-18 19:40:55 +01:00
Fix Project Hovercards
Summary: Clear the float, remove the abs. position. Test Plan: Test a project hovercard, see expected layout. {F166175} Reviewers: epriestley Reviewed By: epriestley Subscribers: epriestley, Korvin Differential Revision: https://secure.phabricator.com/D9519
This commit is contained in:
parent
27c2299407
commit
cc5ba7e801
3 changed files with 3 additions and 4 deletions
|
@ -115,7 +115,7 @@ return array(
|
||||||
'rsrc/css/layout/phabricator-action-list-view.css' => '35dbd16e',
|
'rsrc/css/layout/phabricator-action-list-view.css' => '35dbd16e',
|
||||||
'rsrc/css/layout/phabricator-crumbs-view.css' => '7fbf25b8',
|
'rsrc/css/layout/phabricator-crumbs-view.css' => '7fbf25b8',
|
||||||
'rsrc/css/layout/phabricator-filetree-view.css' => 'fccf9f82',
|
'rsrc/css/layout/phabricator-filetree-view.css' => 'fccf9f82',
|
||||||
'rsrc/css/layout/phabricator-hovercard-view.css' => 'e010d7db',
|
'rsrc/css/layout/phabricator-hovercard-view.css' => 'cae6e28f',
|
||||||
'rsrc/css/layout/phabricator-side-menu-view.css' => 'a2ccd7bd',
|
'rsrc/css/layout/phabricator-side-menu-view.css' => 'a2ccd7bd',
|
||||||
'rsrc/css/layout/phabricator-source-code-view.css' => '7d346aa4',
|
'rsrc/css/layout/phabricator-source-code-view.css' => '7d346aa4',
|
||||||
'rsrc/css/phui/calendar/phui-calendar-day.css' => 'de035c8a',
|
'rsrc/css/phui/calendar/phui-calendar-day.css' => 'de035c8a',
|
||||||
|
@ -703,7 +703,7 @@ return array(
|
||||||
'phabricator-filetree-view-css' => 'fccf9f82',
|
'phabricator-filetree-view-css' => 'fccf9f82',
|
||||||
'phabricator-flag-css' => '5337623f',
|
'phabricator-flag-css' => '5337623f',
|
||||||
'phabricator-hovercard' => '4f344388',
|
'phabricator-hovercard' => '4f344388',
|
||||||
'phabricator-hovercard-view-css' => 'e010d7db',
|
'phabricator-hovercard-view-css' => 'cae6e28f',
|
||||||
'phabricator-keyboard-shortcut' => '1ae869f2',
|
'phabricator-keyboard-shortcut' => '1ae869f2',
|
||||||
'phabricator-keyboard-shortcut-manager' => 'ad7a69ca',
|
'phabricator-keyboard-shortcut-manager' => 'ad7a69ca',
|
||||||
'phabricator-main-menu-view' => '72d1d2ef',
|
'phabricator-main-menu-view' => '72d1d2ef',
|
||||||
|
|
|
@ -158,7 +158,7 @@ final class PhabricatorHovercardView extends AphrontView {
|
||||||
'phabricator-hovercard-container',
|
'phabricator-hovercard-container',
|
||||||
array(
|
array(
|
||||||
phutil_tag_div('phabricator-hovercard-head', $header),
|
phutil_tag_div('phabricator-hovercard-head', $header),
|
||||||
phutil_tag_div('phabricator-hovercard-body', $body),
|
phutil_tag_div('phabricator-hovercard-body grouped', $body),
|
||||||
$tail,
|
$tail,
|
||||||
));
|
));
|
||||||
|
|
||||||
|
|
|
@ -65,7 +65,6 @@
|
||||||
|
|
||||||
.phabricator-hovercard-body .phabricator-hovercard-body-image {
|
.phabricator-hovercard-body .phabricator-hovercard-body-image {
|
||||||
width: 58px;
|
width: 58px;
|
||||||
position: absolute;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.phabricator-hovercard-body .phabricator-hovercard-body-details {
|
.phabricator-hovercard-body .phabricator-hovercard-body-details {
|
||||||
|
|
Loading…
Reference in a new issue