mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
b5bbe39ec6
Summary: The removes our least used gradients and uses base colors. Tweaked Hovercards to use. Test Plan: Test Hovercards and UIExamples Actions Headers Reviewers: epriestley, btrahan Subscribers: epriestley, Korvin Differential Revision: https://secure.phabricator.com/D9347
86 lines
1.6 KiB
CSS
86 lines
1.6 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: 0 3px 8px rgba(0, 0, 0, 0.35);
|
|
border: 1px solid {$blueborder};
|
|
border-radius: 3px;
|
|
background-color: #fff;
|
|
}
|
|
|
|
.phabricator-hovercard-tags {
|
|
float: right;
|
|
white-space: normal;
|
|
}
|
|
|
|
.phabricator-hovercard-body {
|
|
float: left;
|
|
width: 100%;
|
|
padding: 12px 0;
|
|
color: {$darkgreytext};
|
|
border-bottom-right-radius: 3px;
|
|
border-bottom-left-radius: 3px;
|
|
}
|
|
|
|
.phabricator-hovercard-body-header,
|
|
.phabricator-hovercard-body-item {
|
|
margin: 0 0 0 8px;
|
|
}
|
|
|
|
.phabricator-hovercard-body-header {
|
|
font-size: 14px;
|
|
padding-bottom: 4px;
|
|
color: {$darkgreytext};
|
|
}
|
|
|
|
.phabricator-hovercard-body .phabricator-hovercard-body-image {
|
|
clear: left;
|
|
float: left;
|
|
width: 58px;
|
|
}
|
|
|
|
.phabricator-hovercard-body .phabricator-hovercard-body-details {
|
|
clear: right;
|
|
float: left;
|
|
width: 342px;
|
|
}
|
|
|
|
.phabricator-hovercard-body .profile-header-picture-frame {
|
|
float: left;
|
|
margin: 0px 8px 0px 8px;
|
|
width: 50px;
|
|
height: 50px;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.phabricator-hovercard-tail {
|
|
width: 396px;
|
|
float: left;
|
|
padding: 3px 2px;
|
|
background-color: #eeeeee;
|
|
border-bottom-left-radius: 2px;
|
|
border-bottom-right-radius: 2px;
|
|
}
|
|
|
|
.phabricator-hovercard-tail button,
|
|
.phabricator-hovercard-tail a.button {
|
|
margin: 3px;
|
|
}
|