// This is in place until a proper fix comes through from GOV.UK Frontend. // // TODO: Replace with the print styles that will come from GOV.UK Frontend. @import "../accordion"; // Open all of the accordion sections. .govuk-accordion__section-content { display: block !important; // stylelint-disable-line declaration-no-important } // Change the colour from the blue link colour to black. .govuk-accordion__section-button { color: govuk-colour("black") !important; // stylelint-disable-line declaration-no-important } // Change the summary subheading size. .govuk-accordion__section-summary { @include govuk-typography-common; @include govuk-typography-responsive($size: 16, $important: true); .govuk-accordion--condensed & { @include govuk-typography-responsive($size: 14, $important: true); } } // Hide the unusable "Open all" button and the "+" icons. .govuk-accordion__open-all, .govuk-accordion__icon { display: none !important; // stylelint-disable-line declaration-no-important }