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
39 lines
1.6 KiB
HTML
39 lines
1.6 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">
|
|
${Edit}
|
|
</h3>
|
|
</div>
|
|
|
|
<div class="formDialogContent smoothScrollY" style="padding-top:2em;">
|
|
<form class="popupEditPersonForm dialogContentInner dialog-content-centered">
|
|
|
|
<div class="inputContainer">
|
|
<input type="text" is="emby-input" class="txtPersonName" required="required" label="${LabelName}" />
|
|
</div>
|
|
|
|
<div class="selectContainer">
|
|
<select is="emby-select" id="selectPersonType" class="selectPersonType" label="${LabelType}">
|
|
<option value=""></option>
|
|
<option value="Actor">${Actor}</option>
|
|
<option value="Composer">${Composer}</option>
|
|
<option value="Director">${Director}</option>
|
|
<option value="GuestStar">${GuestStar}</option>
|
|
<option value="Producer">${Producer}</option>
|
|
<option value="Writer">${Writer}</option>
|
|
</select>
|
|
</div>
|
|
<div class="inputContainer fldRole hide">
|
|
<input is="emby-input" type="text" class="txtPersonRole" label="${LabelPersonRole}" />
|
|
<div class="fieldDescription">${LabelPersonRoleHelp}</div>
|
|
</div>
|
|
|
|
<div class="formDialogFooter">
|
|
<button is="emby-button" type="submit" class="raised button-submit block formDialogFooterItem">
|
|
<span>${Save}</span>
|
|
</button>
|
|
</div>
|
|
|
|
</form>
|
|
</div>
|