mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
ac09345083
Summary: There are a few things we can improve with tooltips. Test Plan: Moused over all the stuff on the test page. Reviewers: btrahan Reviewed By: btrahan CC: aran, epriestley Maniphest Tasks: T965 Differential Revision: https://secure.phabricator.com/D1870
24 lines
312 B
CSS
24 lines
312 B
CSS
/**
|
|
* @provides aphront-tooltip-css
|
|
*/
|
|
|
|
.jx-tooltip-container {
|
|
position: absolute;
|
|
z-index: 18;
|
|
}
|
|
|
|
.jx-tooltip {
|
|
background: #222222;
|
|
color: #e8e8e8;
|
|
font-size: 11px;
|
|
padding: 4px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.jx-tooltip-align-E {
|
|
padding-left: 3px;
|
|
}
|
|
|
|
.jx-tooltip-align-N {
|
|
padding-bottom: 3px;
|
|
}
|