Hello everyone! I'm currently using this codepen example on my website. My query is regarding the fifth panel - is it possible to change the color of the drop-down box when clicking on it? Here's a snippet of the HTML:
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300,600|Source+Code+Pro' rel='stylesheet' type='text/css'>
<div class="patch-container">
<div class="patch-item patch-button" data-patch-panel="1">One</div>
...
In the CSS section, there are styles defined for different panels and their respective backgrounds:
[data-patch-panel='1'], [data-patch-panel='5'], [data-patch-panel='8'] {
background: #F5AB35;
}
...
Although everything functions as expected, I'm looking to customize the appearance of the new box that appears when clicking on panel 5. Specifically, I would like this new box to have a white background with a black border, instead of the default orange. I've attempted adjusting the mentioned code snippet but it affects both boxes.
Any assistance would be greatly appreciated. Thank you!