changing class mosaic.split color not working on hover
this works
```
.mosaic-split.-row {
background-color: red;
}
```

but when i want to add this only by hover it doesn't work
```
.mosaic-split.-row :hover {
background-color: red;
}
```

0 条评论