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
69 lines
3.1 KiB
HTML
69 lines
3.1 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">
|
|
${Settings}
|
|
</h3>
|
|
</div>
|
|
<div class="formDialogContent smoothScrollY">
|
|
<form class="dialogContentInner dialog-content-centered" style="padding-top:2em;">
|
|
|
|
<h3 class="checkboxListLabel">${SortChannelsBy}</h3>
|
|
<label class="radio-label-block"><input type="radio" is="emby-radio" name="ChannelSortOrder" value="Number" class="chkSortOrder" /><span>${ChannelNumber}</span></label>
|
|
<label class="radio-label-block"><input type="radio" is="emby-radio" name="ChannelSortOrder" value="DatePlayed" class="chkSortOrder" /><span>${RecentlyWatched}</span></label>
|
|
<br />
|
|
<label class="checkboxContainer">
|
|
<input type="checkbox" is="emby-checkbox" class="chkFavoriteChannelsAtTop" />
|
|
<span>${PlaceFavoriteChannelsAtBeginning}</span>
|
|
</label>
|
|
<h3 class="checkboxListLabel">${ShowIndicatorsFor}</h3>
|
|
<div class="checkboxList">
|
|
<label>
|
|
<input type="checkbox" is="emby-checkbox" class="chkIndicator" data-type="hd" />
|
|
<span>${HDPrograms}</span>
|
|
</label>
|
|
<label>
|
|
<input type="checkbox" is="emby-checkbox" class="chkIndicator" data-type="live" data-default="true" />
|
|
<span>${LiveBroadcasts}</span>
|
|
</label>
|
|
<label>
|
|
<input type="checkbox" is="emby-checkbox" class="chkIndicator" data-type="new" />
|
|
<span>${NewEpisodes}</span>
|
|
</label>
|
|
<label>
|
|
<input type="checkbox" is="emby-checkbox" class="chkIndicator" data-type="premiere" data-default="true" />
|
|
<span>${Premieres}</span>
|
|
</label>
|
|
<label>
|
|
<input type="checkbox" is="emby-checkbox" class="chkIndicator" data-type="repeat" />
|
|
<span>${RepeatEpisodes}</span>
|
|
</label>
|
|
</div>
|
|
<br />
|
|
<label class="checkboxContainer">
|
|
<input type="checkbox" is="emby-checkbox" class="chkColorCodedBackgrounds"/>
|
|
<span>${EnableColorCodedBackgrounds}</span>
|
|
</label>
|
|
|
|
<h3 class="checkboxListLabel">${Categories}</h3>
|
|
<div class="checkboxList">
|
|
<label>
|
|
<input type="checkbox" is="emby-checkbox" class="chkCategory" data-type="movies" />
|
|
<span>${Movies}</span>
|
|
</label>
|
|
<label>
|
|
<input type="checkbox" is="emby-checkbox" class="chkCategory" data-type="sports" />
|
|
<span>${Sports}</span>
|
|
</label>
|
|
<label>
|
|
<input type="checkbox" is="emby-checkbox" class="chkCategory" data-type="kids" />
|
|
<span>${Kids}</span>
|
|
</label>
|
|
<label>
|
|
<input type="checkbox" is="emby-checkbox" class="chkCategory" data-type="news" />
|
|
<span>${News}</span>
|
|
</label>
|
|
</div>
|
|
|
|
</form>
|
|
</div>
|