a98b961b94
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
57 lines
2.5 KiB
HTML
57 lines
2.5 KiB
HTML
<div class="formDialogHeader">
|
|
<button is="paper-icon-button-light" class="btnCancel autoSize" tabindex="-1"><i class="material-icons arrow_back"></i></button>
|
|
<h3 class="formDialogHeaderTitle">
|
|
${HeaderEditImages}
|
|
</h3>
|
|
</div>
|
|
|
|
<div class="formDialogContent">
|
|
<div class="dialogContentInner">
|
|
|
|
<div id="imagesContainer">
|
|
<div class="imageEditor-buttons first-imageEditor-buttons">
|
|
<h2 style="margin:0;">${Images}</h2>
|
|
<button type="button" is="emby-button" class="btnBrowseAllImages fab mini autoSize" style="margin-left: 1em;">
|
|
<i class="material-icons">search</i>
|
|
</button>
|
|
<button type="button" is="emby-button" class="btnOpenUploadMenu fab mini hide" style="margin-left: .5em;">
|
|
<i class="material-icons">add</i>
|
|
</button>
|
|
</div>
|
|
<div id="images" class="itemsContainer vertical-wrap">
|
|
</div>
|
|
<br />
|
|
</div>
|
|
|
|
<div id="backdropsContainer" class="hide">
|
|
<div class="imageEditor-buttons">
|
|
<h2 style="margin:0;">${Backdrops}</h2>
|
|
<button type="button" is="emby-button" class="btnBrowseAllImages fab mini autoSize" style="margin-left: 1em;" data-imagetype="Backdrop">
|
|
<i class="material-icons">search</i>
|
|
</button>
|
|
<button type="button" is="emby-button" class="btnOpenUploadMenu fab mini hide" style="margin-left: .5em;" data-imagetype="Backdrop">
|
|
<i class="material-icons">add</i>
|
|
</button>
|
|
</div>
|
|
<div id="backdrops" class="itemsContainer vertical-wrap">
|
|
</div>
|
|
<br />
|
|
</div>
|
|
|
|
<div id="screenshotsContainer" class="hide">
|
|
<div class="imageEditor-buttons">
|
|
<h2 style="margin: 0;">${Screenshots}</h2>
|
|
<button type="button" is="emby-button" class="btnBrowseAllImages fab mini autoSize" style="margin-left: 1em;" data-imagetype="Screenshot">
|
|
<i class="material-icons">search</i>
|
|
</button>
|
|
<button type="button" is="emby-button" class="btnOpenUploadMenu fab mini hide" style="margin-left: .5em;" data-imagetype="Screenshot">
|
|
<i class="material-icons">add</i>
|
|
</button>
|
|
</div>
|
|
<div id="screenshots" class="itemsContainer vertical-wrap">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|