Changeset View
Changeset View
Standalone View
Standalone View
webroot/rsrc/css/aphront/tooltip.css
| /** | /** | ||||
| * @provides aphront-tooltip-css | * @provides aphront-tooltip-css | ||||
| */ | */ | ||||
| .jx-tooltip-container { | .jx-tooltip-container { | ||||
| position: absolute; | position: absolute; | ||||
| padding: 5px; | padding: 5px; | ||||
| /* In Chrome, moving the cursor into the empty space next to the "caret" on | |||||
| the caret side of the tooltip can cause the tooltip to flicker rapidly | |||||
| because the cursor hits the container. To stop this, prevent cursor | |||||
| events on the container. See T8440. */ | |||||
| pointer-events: none; | |||||
| } | } | ||||
| .jx-tooltip-appear { | .jx-tooltip-appear { | ||||
| animation: 0.5s tooltip-appear; | animation: 0.5s tooltip-appear; | ||||
| /* Without this, there's a nasty pop-in effect at the end of the animation | /* Without this, there's a nasty pop-in effect at the end of the animation | ||||
| when Safari changes font smoothing. The text becomes visibly more bold | when Safari changes font smoothing. The text becomes visibly more bold | ||||
| after the last frame of animation. */ | after the last frame of animation. */ | ||||
| ▲ Show 20 Lines • Show All 87 Lines • Show Last 20 Lines | |||||