Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/903e8044259fa6982e6027e721b51c56ea911a99 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed: Tooltips in modals

pull/2/head
Mark McDowall 11 years ago
parent 0293a0c006
commit 903e804425

@ -87,3 +87,19 @@ h3 {
margin-left: 0px;
}
}
// Tooltips
.help-inline-checkbox, .help-inline {
.tooltip-inner {
white-space : pre-wrap;
min-width : 200px;
}
.help-link ~ .tooltip {
.tooltip-inner {
white-space : normal;
min-width : 0px;
}
}
}

@ -9,17 +9,7 @@ define(
console.log('starting signalR');
$('body').tooltip({
selector: '[title]',
container: 'body'
});
$(document).click(function(e) {
if ($(e.target).attr('title') !== undefined) {
return;
}
$('.tooltip').remove();
selector: '[title]'
});
return this;

Loading…
Cancel
Save