Fix IE8 bugs

This commit is contained in:
RainLoop Team 2014-02-25 23:22:17 +04:00
parent 82576b3ee2
commit 8711e22b5b
9 changed files with 106 additions and 48 deletions

View file

@ -22,14 +22,14 @@
<span class="i18n" data-i18n-text="SETTINGS_THEMES/LABEL_CUSTOM_TYPE"></span>
</label>
<div class="controls">
<label>
<input type="radio" name="customThemeType" value="Light" data-bind="checked: customThemeType" style="display: none" />
<label for="customThemeTypeID1">
<input id="customThemeTypeID1" type="radio" name="customThemeType" value="Light" data-bind="checked: customThemeType" style="position: absolute; left: -10000px" />
<i data-bind="css: 'Light' === customThemeType() ? ' icon-radio-checked' : 'icon-radio-unchecked'"></i>
&nbsp;&nbsp;
<span class="i18n" data-i18n-text="SETTINGS_THEMES/LABEL_CUSTOM_TYPE_LIGHT"></span>
</label>
<label>
<input type="radio" name="customThemeType" value="Dark" data-bind="checked: customThemeType" style="display: none" />
<label for="customThemeTypeID2">
<input id="customThemeTypeID2" type="radio" name="customThemeType" value="Dark" data-bind="checked: customThemeType" style="position: absolute; left: -10000px" />
<i data-bind="css: 'Dark' === customThemeType() ? ' icon-radio-checked' : 'icon-radio-unchecked'"></i>
&nbsp;&nbsp;
<span class="i18n" data-i18n-text="SETTINGS_THEMES/LABEL_CUSTOM_TYPE_DARK"></span>