I have nested list, similar to the one below:
<ol>
<li>Item 1
<ol>
<li>Item 2</li>
<li>Item 3
<ol>
<li>Item 4
<ol>
<li>Item 5</li>
</ol>
</li>
<li>Item 6
<ol>
<li>Item 7</li>
</ol>
</li>
</ol>
</li>
</ol>
</li>
</ol>
Items 1, 5 and 7 are all lone <li> elements, i.e. they are the only ones in their level of the hierarchy for that specific parent. I would like to match them and exchange them for bullet elements. (I would also be open to a JavaScript solution, though I would prefer pure CSS, if possible.)