mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 02:12:41 +01:00
25 lines
312 B
CSS
25 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;
|
||
|
}
|