Изменить размер флажков в ячейках загрузочной таблицы

Я использую bootstrap-таблицу и столбец с флажками. Как я могу изменить размер флажков. В моем коде я хочу размер флажка 25x25, но когда я использую атрибуты css высоты и ширины, это не работает.

HTML

<table class="table table-striped table-bordered table-hover"  cellspacing="0" id="mainTable" data-click-to-select="true" data-show-toggle="true" data-show-columns="true" data-search="true" data-pagination="true">
    <thead>
    <tr>
        <th data-field="state" data-checkbox="true" data-formatter="starsFormatter"></th>
        <th data-field="name" data-halign="center" data-align="left" data-sortable="true">Name</th>
        <th data-field="stargazers_count" data-formatter="starsFormatter" data-halign="center" data-align="left" data-sortable="true">Stars</th>
        <th data-field="forks_count" data-formatter="forksFormatter" data-halign="center" data-align="left" data-sortable="true">Forks</th>
        <th data-field="description" data-halign="center" data-align="left" data-sortable="true">Description</th>
    </tr>
    </thead>
</table>

Javascript

var data = [{name: 'ala', stargazers_count: 234, forks_count: 234, description: "asdasdas"},
           {name: 'ala', stargazers_count: 234, forks_count: 234, description: "asdasdas"},
           {name: 'ala', stargazers_count: 234, forks_count: 234, description: "asdasdas"}]

$('table').bootstrapTable({
    data: data
});

function starsFormatter(row, value, inde) {
    return row + '<i class="glyphicon glyphicon-star"></i> ';
}

function forksFormatter(value) {
    return '<i class="glyphicon glyphicon-cutlery"></i> ' + value;
}

CSS

.bs-checkbox input{
    height: 25px;
    width: 25px;
}

2 ответа

Решение
.bs-checkbox input
{
    zoom:2;
}

Простой и легкий способ сделать это

input[type="checkbox"]{
transform:scale(x,y);
}

х, у может быть любым значением, зависит от того, насколько большой ящик вы хотите

Другие вопросы по тегам