mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00

WebOS 4 apparently has a ligature bug that prevents icons with an underscore from working as intended. This replaces them with either the corresponding CSS class or unicode escape code, depending on context. Refactoring is needed in order to be able to use CSS classes everywhere, so in the interest of time, this does the best available currently. Fixes #678
18 lines
870 B
HTML
18 lines
870 B
HTML
<div id="wizardFinishPage" data-role="page" class="page standalonePage wizardPage">
|
|
<div class="padded-left padded-right padded-top">
|
|
<div class="ui-corner-all ui-shadow wizardContent">
|
|
<h1>${LabelYoureDone}</h1>
|
|
<p style="margin:2em 0;">${WizardCompleted}</p>
|
|
<div class="wizardNavigation">
|
|
<button is="emby-button" type="button" class="raised button-cancel" onclick="history.back();">
|
|
<i class="material-icons arrow_back"></i>
|
|
<span>${LabelPrevious}</span>
|
|
</button>
|
|
<button is="emby-button" type="button" class="raised btnWizardNext button-submit">
|
|
<i class="material-icons">check</i>
|
|
<span>${LabelFinish}</span>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|