Sonarqube is showing this bug "Unexpected missing generic font family" even though this sans-serif generic font family is included in the font-family set. Is this a false positive from Sonarcloud? Or are there any real bug in this CSS code snippet.
This is the code snippet of the font-family CSS block.
body {
line-height: 1;
width: 960px;
margin: auto;
background: white;
padding: 10px;
box-shadow: 0px 0px 5px #CCC;
font-family: "Lucida Grande", "Lucida Sans", "Microsoft Sans Serif", "Lucida Sans Unicode", "Verdana", "Sans-serif", "trebuchet ms" !important;
}