Today's update broke css

Operating system

Windows

Joplin version

2.13.8

Desktop version info

Joplin 2.13.8

What issue do you have?

This div tag used to be able to change the font of the notes list, and the latest update broke it. It now goes back to displaying the default font.

div.note-list-item a span {
/* note list - note title text */
font-size: 14px;
font-family: "Caxton Std";
color: black;
}

Try changing this to

div.note-list-item > .content > .title > span {
    font-size: 14px;
    font-family: "Caxton Std";
    color: black;
}

It worked! Thanks a lot.