Jump to content

Zero108

Neophyte
  • Posts

    1
  • Joined

  • Last visited

Everything posted by Zero108

  1. Получил искажение текста (шрифта) в самодельном выпадающем select-е. Проблема наблюдаема в только IE7 и IE9-10. В остальных браузерах проблемы нет. Когда я прокручиваю список ползунком вниз, у некоторых пунктом искажен текст. Он или вытянут по высоте или приплюснут. Когда я навожу указатель мыши на эти пункты, текст становится нормальным. Пробовал разные шрифты, это не помогает. Ничего особенного в css не применялось: font-size, line-height, padding, hover и так далее. Скрин (искаженные пункты селекта отмечены стрелками): 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> Ищу опытного верстальщика для исправления данного бага. Также нужен программист по битриксу на постоянной основе.
×
×
  • 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