Jump to content
  • 0

Искажение шрифта в IE7 и ШУ9-10


Zero108
 Share

Question

Получил искажение текста (шрифта) в самодельном выпадающем select-е. Проблема наблюдаема в только IE7 и IE9-10. В остальных браузерах проблемы нет.

Когда я прокручиваю список ползунком вниз, у некоторых пунктом искажен текст. Он или вытянут по высоте или приплюснут. Когда я навожу указатель мыши на эти пункты, текст становится нормальным. Пробовал разные шрифты, это не помогает. Ничего особенного в css не применялось: font-size, line-height, padding, hover и так далее.

Скрин (искаженные пункты селекта отмечены стрелками):

Ey6YCXMZ.jpg

The items of the drop-down select are loaded by the .js. It has the following code:

    window.indx = 1;
$(document).ready(function () {
$.fn.checkBoxList = function () {
$(this).each(function () {
window.indx++;
this.container = $('<div class="checkbox-list-container" id="id' + (window.indx) + '"></div>').insertAfter(this);
this.input = $('<input type="text" class="checkbox-list-input" readonly="readonly"></input>').appendTo(this.container);
this.inputValue = $('<input type="hidden"></input>').attr('name', $(this).attr('name')).appendTo(this.container);
this.button = $('<div class="button"> </div>').appendTo(this.container);
this.list = $('<div class="list"></div>').appendTo(this.container);
this.maxLength = parseInt($(this).attr('maxlength'), 10);

var instance = this;
$('option', $(this)).each(function (key, element) {
if ($(element).text()) {
instance.list.append($('<div class="lab108"><label for="item_' + window.indx + '_' + key + '">' + $(element).text() + '</label></div>'));
}
});

Для вывода использован следующий php код:

                                <td id="genre_category">
<div class="short-field">
<select name="genre_category[<?=$item['ID']?>]" class="inputselect checkbox-list" maxlength="<?=$arResult['limit']['genre']?>" multiple="multiple">
<?foreach($arResult['values']['genre'] as $value => $title):?>
<option value="<?=$value?>"<?if (in_array($value, $item['PROPERTY_GENRE_CATEGORY_VALUE'])):?> selected="selected"<?endif;?>><?=$title?></option>
<?endforeach?>
</select>
</div>
</td>

Ищу опытного верстальщика для исправления данного бага. Также нужен программист по битриксу на постоянной основе.

Edited by Zero108
Link to comment
Share on other sites

3 answers to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy