I have defined this class in my css file:
.debelo {
font-size:18px;
font-weight:bold;
}
.debelo:not(.jqx-grid-cell-hover):not(.jqx-grid-cell-selected):not(.jqx-fill-state-pressed-fresh):not(.jqx-grid-cell-selected-fresh), .jqx-widget .debelo:not(.jqx-grid-cell-hover):not(.jqx-grid-cell-selected):not(.jqx-fill-state-pressed-fresh):not(.jqx-grid-cell-selected-fresh) {
font-size:18px;
font-weight:bold;
}
and jqxDataTable coloumn:
{ text: 'Prostor', dataField: 'Opis_prostora',cellClassName:"debelo"},
If I remove .debelo:not….. then nothing happens, with that kind of css i get this result:
Link
…but I want to be bold and large a hovered cell, too.