mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-23 15:22:41 +01:00
e592061891
Summary: This adds minor functionality to PHUIHeaderView (icons, tags) that were previously on in ActionHeader. This allows us to remove the PHUIActionHeaderView outright in favor of just one Header class. Test Plan: Tested each callsite, workboards, hovercards, conpherence. Reviewers: btrahan, epriestley Reviewed By: epriestley Subscribers: Korvin, epriestley Differential Revision: https://secure.phabricator.com/D12902
93 lines
1.7 KiB
CSS
93 lines
1.7 KiB
CSS
/**
|
|
* @provides phabricator-hovercard-view-css
|
|
*/
|
|
|
|
.jx-hovercard-container {
|
|
position: absolute;
|
|
}
|
|
|
|
.phabricator-hovercard-wrapper {
|
|
float: left;
|
|
width: 400px;
|
|
}
|
|
|
|
.device-phone .phabricator-hovercard-wrapper {
|
|
float: left;
|
|
width: 300px;
|
|
}
|
|
|
|
.phabricator-hovercard-container {
|
|
float: left;
|
|
width: 100%;
|
|
box-shadow: {$dropshadow};
|
|
border: 1px solid {$blueborder};
|
|
border-radius: 3px;
|
|
background-color: #fff;
|
|
}
|
|
|
|
.phabricator-hovercard-head {
|
|
border-bottom: 1px solid {$thinblueborder};
|
|
}
|
|
|
|
.phabricator-hovercard-head .phui-header-view {
|
|
padding: 8px;
|
|
}
|
|
|
|
.phabricator-hovercard-head .phui-tag-type-state {
|
|
color: {$darkbluetext};
|
|
text-shadow: none;
|
|
font-weight: normal;
|
|
}
|
|
|
|
.phabricator-hovercard-tags {
|
|
float: right;
|
|
white-space: normal;
|
|
}
|
|
|
|
.phabricator-hovercard-body {
|
|
padding: 12px 8px;
|
|
color: {$darkgreytext};
|
|
border-bottom-right-radius: 3px;
|
|
border-bottom-left-radius: 3px;
|
|
position: relative;
|
|
}
|
|
|
|
.phabricator-hovercard-body-item {
|
|
margin: 2px 0 0 0px;
|
|
}
|
|
|
|
.phabricator-hovercard-body-header {
|
|
font-size: 14px;
|
|
padding-bottom: 4px;
|
|
color: {$darkgreytext};
|
|
line-height: 18px;
|
|
}
|
|
|
|
.phabricator-hovercard-body .phabricator-hovercard-body-image {
|
|
width: 58px;
|
|
}
|
|
|
|
.phabricator-hovercard-body .phabricator-hovercard-body-details {
|
|
margin-left: 58px;
|
|
}
|
|
|
|
.phabricator-hovercard-body .profile-header-picture-frame {
|
|
float: left;
|
|
width: 50px;
|
|
height: 50px;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
}
|
|
.phabricator-hovercard-tail {
|
|
width: 396px;
|
|
float: left;
|
|
padding: 2px;
|
|
border-top: 1px solid {$thinblueborder};
|
|
border-bottom-left-radius: 3px;
|
|
border-bottom-right-radius: 3px;
|
|
}
|
|
|
|
.phabricator-hovercard-tail button,
|
|
.phabricator-hovercard-tail a.button {
|
|
margin: 3px;
|
|
}
|