I change this in bootstrap.css:
.table-hover > tbody > tr:hover {
background-color: #DBEADC;
}
and this in bootstrap.min.css:
.table-hover>tbody>tr:hover{background-color:#DBEADC}
When I'm updating Yii2, these changes of course are going to be overwritten. What is the best practice to handle this? I mean how can I persistently override this one color, so that all other things should be updated when a new version is coming?
bootstrap.css. Whether I have to do withbootstrap.min.csssomething I'm not sure.