When all panels are collapsed, the background color should be white. When the panel is open, the panel title background color should be grey. How can I do this, please?
<div> <div> <h4> <a href="#collapseOneMaintenance" aria-expanded="true" aria-controls="collapseOneMaintenance"> What will you do to prepare my apartment before I move in? </a> </h4> </div> <div aria-labelledby="headingOneMaintenance"> <div> Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS. </div> </div> </div> With this CSS, all my panels are white, but when the panel is open, I want the header to be gray:
.panel-heading { background-color: white;} It doesn't have to be this CSS though. Thanks!
12 Answers
You can do a little hack to .accordion-toggle with CSS margins & paddings to cover all panel dimensions:
Snippet below:
.accordion-toggle { background-color: gray; display: block; padding: 10px; margin: -10px -15px; border-top-left-radius: 4px; border-top-right-radius: 4px; } .accordion-toggle.collapsed { background-color: white; }<link href="" rel="stylesheet" /> <script src=""></script> <script src=""></script> <div> <div> <h4> <a href="#collapseOneMaintenance" aria-expanded="true" aria-controls="collapseOneMaintenance"> What will you do to prepare my apartment before I move in? </a> </h4> </div> <div aria-labelledby="headingOneMaintenance"> <div> Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS. </div> </div> </div>0Try out this code:
$(document).on('click', '.panel-heading', function(){ $('.panel-heading').css('background-color', 'grey'); if ($(this).find('.accordion-toggle').hasClass('collapsed')) { $(this).css('background-color', 'white'); } }).panel-heading { background-color: grey;}<link rel="stylesheet" type="text/css" href=""> <script src=""></script> <script src=""></script> <div> <div> <h4> <a href="#collapseOneMaintenance" aria-expanded="true" aria-controls="collapseOneMaintenance"> What will you do to prepare my apartment before I move in? </a> </h4> </div> <div aria-labelledby="headingOneMaintenance"> <div> Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS. </div> </div> </div>1