* Increase hover delay to 450ms. * Set max height and add scrollbars for long tag lists. * Condense tag list (don't put categories on separate lines).
25 lines
398 B
SCSS
25 lines
398 B
SCSS
$tooltip-width: 965px;
|
|
$tooltip-height: 160px;
|
|
|
|
.post-tooltip {
|
|
max-width: $tooltip-width;
|
|
box-sizing: border-box;
|
|
line-height: 16px;
|
|
|
|
border-color: #767676;
|
|
box-shadow: 1px 1px 2px #666;
|
|
|
|
.qtip-content {
|
|
padding: 4px 6px;
|
|
|
|
.post-tooltip-body {
|
|
max-height: $tooltip-height;
|
|
overflow-y: auto;
|
|
}
|
|
}
|
|
|
|
&.post-tooltip-loading {
|
|
display: none !important;
|
|
}
|
|
}
|