Improve themeing of tourGuide

This commit is contained in:
Nick O'Leary
2021-10-02 23:15:35 +01:00
parent da114fa3a5
commit f2e51779e4
4 changed files with 15 additions and 13 deletions

View File

@@ -285,9 +285,10 @@ RED.tourGuide = (function() {
$('<span></span>').text(RED._("common.label.close")).appendTo(nextButton);
} else if (state.index === 0) {
$('<span>start</span>').text(RED._("tourGuide.start")).appendTo(nextButton);
$('<span style="margin-left: 6px"><i class="fa fa-chevron-right"></i></span>').appendTo(nextButton);
} else if (state.index < state.count-1) {
$('<span></span>').text(RED._("tourGuide.next")).appendTo(nextButton);
$('<span style="margin-left: 4px"><i class="fa fa-chevron-right"></i></span>').appendTo(nextButton);
$('<span style="margin-left: 6px"><i class="fa fa-chevron-right"></i></span>').appendTo(nextButton);
}
}