Thanks! This got me in the right direction. Below are the 2 sections to make it work in my css file:
Code:
div.css3droppanel input[type="checkbox"]:not(:checked)~ label:before { /* generated down arrow */
content: '';
position: absolute;
display: block;
width: 0;
height: 0;
border: 12px solid transparent;
border-color: white transparent transparent transparent;
top: 13px;
left: 9px;
box-shadow: 0 0 7px gray inset;
margin-right: 10%; /* added to move arrow to the left */
}
div.css3droppanel input[type="checkbox"]:checked ~ label:after{ /* generated up arrow */
content: '';
position: absolute;
display: block;
width: 0;
height: 0;
border: 12px solid transparent;
border-color: transparent transparent white transparent;
top: -1px;
left: 9px;
box-shadow: 0 0 7px gray inset;
margin-right: 10%; /* added to move arrow to the left */
}
Bookmarks