fix(grid): allow filter row to render TD cells

when the filter row renders TH elements, screen readers read its content during browsing

this commit allows the filter row to be rendered as TD elements without visual changes
This commit is contained in:
Alex Gyoshev 2018-01-02 16:13:34 +02:00 коммит произвёл Иван Жеков
Родитель c7578c7eda
Коммит 4cfc66f4dc
2 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -563,7 +563,10 @@
.k-filter-row {
line-height: $form-line-height;
td,
th {
border-width: 0 0 1px 1px;
white-space: nowrap;
padding: $cell-padding-y;
}

Просмотреть файл

@ -24,6 +24,7 @@
.k-grid-content-locked,
.k-grid-footer-locked,
.k-grid-header-locked,
.k-filter-row > td,
.k-filter-row > th {
border-color: $grid-chrome-border;
}