tipsy: Don't use opacity but rgba to avoid having transparent text

refs #3418
This commit is contained in:
Johannes Meyer 2018-04-26 13:39:50 +02:00
parent cf079fbc02
commit 9294c830f8
2 changed files with 5 additions and 3 deletions

View File

@ -300,6 +300,7 @@ ul.tree li a.error:hover {
font-size: @font-size-small;
max-width: 300px;
text-align: left;
background-color: rgba(0,0,0,0.8);
}
.progress-label span {

View File

@ -27,8 +27,8 @@
var $el = $(this);
$el.attr('title', $el.data('title-rich') || $el.attr('title'));
});
$('svg .chart-data', el).tipsy({ gravity: 'se', html: true });
$('i[title]', el).tipsy({ gravity: $.fn.tipsy.autoNS, offset: 2 });
$('svg .chart-data', el).tipsy({ gravity: 'se', html: true, opacity: 1 });
$('i[title]', el).tipsy({ gravity: $.fn.tipsy.autoNS, offset: 2, opacity: 1 });
$('[title]', el).each(function (i, el) {
var $el = $(el);
var delay, gravity;
@ -48,7 +48,8 @@
delay = delay === undefined ? 500 : delay;
$el.tipsy({
gravity: gravity || $.fn.tipsy.autoNS,
delayIn: delay
delayIn: delay,
opacity: 1
});
});