1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 09:18:48 +02:00
phorge-phorge/webroot/rsrc/css/phui/phui-hovercard.css
epriestley ec452e548a Improve text overflow behavior for hovercards with (for example) long package names
Summary: See PHI977. Ref T13216. Some text, like long package names, may overflow hovercards. Add overflow CSS behaviors to remedy this.

Test Plan:
Before:

{F6012699}

After:

{F6012700}

(You can use `/search/hovercard/` to render hovercards in a handy standalone way.)

Reviewers: amckinley

Reviewed By: amckinley

Maniphest Tasks: T13216

Differential Revision: https://secure.phabricator.com/D19809
2018-11-15 20:43:10 -08:00

117 lines
2.1 KiB
CSS

/**
* @provides phui-hovercard-view-css
*/
.jx-hovercard-container {
position: absolute;
}
.phui-hovercard-wrapper {
width: 400px;
}
.device-phone .phui-hovercard-wrapper {
width: 300px;
}
.phui-hovercard-container {
width: 100%;
box-shadow: {$dropshadow};
border: 1px solid {$lightblueborder};
border-radius: 3px;
background-color: {$page.content};
}
.phui-hovercard-head .phui-header-shell {
padding: 6px 8px 6px 12px;
background-color: {$bluebackground};
border-top-left-radius: 3px;
border-top-right-radius: 3px;
}
.phui-hovercard-head .phui-header-header {
font-size: {$biggerfontsize};
}
.phui-hovercard-head .phui-tag-type-state {
color: {$darkbluetext};
text-shadow: none;
font-weight: normal;
}
.phui-hovercard-tags {
float: right;
white-space: normal;
}
.phui-hovercard-body {
padding: 12px;
color: {$darkgreytext};
border-bottom-right-radius: 3px;
border-bottom-left-radius: 3px;
position: relative;
}
.phui-hovercard-body-item {
margin: 4px 0 0 0;
overflow: hidden;
text-overflow: ellipsis;
}
.phui-hovercard-body-header {
font-size: 14px;
padding-bottom: 4px;
color: {$darkgreytext};
line-height: 18px;
}
.phui-hovercard-body .phui-hovercard-body-image {
width: 58px;
}
.phui-hovercard-body .phui-hovercard-body-details {
margin-left: 58px;
}
.phui-hovercard-body .profile-header-picture-frame {
float: left;
width: 50px;
height: 50px;
background-position: center;
background-repeat: no-repeat;
background-size: 100%;
}
.hovercard-badges {
margin: 6px 0 0 0;
padding: 4px;
background: {$page.background};
border-bottom-left-radius: 3px;
border-bottom-right-radius: 3px;
}
.hovercard-badges .phui-badge-flex-item {
float: left;
}
.phui-hovercard-tail {
width: 396px;
float: left;
padding: 2px;
border-top: 1px solid {$thinblueborder};
border-bottom-left-radius: 3px;
border-bottom-right-radius: 3px;
}
.phui-hovercard-tail button,
.phui-hovercard-tail a.button {
margin: 3px;
}
.phui-hovercard-wrapper .hovercard-task-view {
box-shadow: 0px 4px 16px rgba(0,0,0,.2);
}
.hovercard-task-view .phui-oi-disabled.phui-workcard {
background-color: #fff;
}