mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
129bff016b
Summary: Replaces the full names after D3413. Test Plan: See screenshot. Reviewers: vrana Reviewed By: vrana CC: aran Differential Revision: https://secure.phabricator.com/D3414
27 lines
387 B
CSS
27 lines
387 B
CSS
/**
|
|
* @provides aphront-tooltip-css
|
|
*/
|
|
|
|
.jx-tooltip-container {
|
|
position: absolute;
|
|
z-index: 18;
|
|
}
|
|
|
|
.jx-tooltip {
|
|
background: #222222;
|
|
color: #f9f9f9;
|
|
padding: 6px 8px;
|
|
overflow: hidden;
|
|
white-space: pre-wrap;
|
|
opacity: 0.9;
|
|
|
|
box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
.jx-tooltip-align-E {
|
|
padding-left: 3px;
|
|
}
|
|
|
|
.jx-tooltip-align-N {
|
|
padding-bottom: 3px;
|
|
}
|