85
Views
5
Comments
Solved
 Accordion - OutSystems 11
Application Type
Reactive

Hi Team,

I have added the accordion item in the FAQ page and I want to change the border color and expandable arrow color which is specified in the below screenshot. I just want to replace the color with #88d37c. Please help me to find out the solution. 




2019-07-01 07-16-04
Vinod Patidar
Solution

Hi Sarvigaa,

Please add below CSS in your screen Style Sheet -

https://personal-itafqtdv.outsystemscloud.com/SampleExcel/AccordionSample


:root {   
    
    --color-accordion: #88d37c;
}

.section-expandable .section-expandable-icon {
    color: var(--color-accordion);
}

.section-expandable.is--open {
    border-top: var(--border-size-m) solid var(--color-accordion);
}


Thanks

Vinod


UserImage.jpg
Sarvigaa Arivalagan

Hi Vinod,

Thank you so much for your help. It will worked perfectly (y)

2019-07-01 07-16-04
Vinod Patidar

Use this CSS -

:root {   
    
    --color-accordion: #88d37c;
}

.section-expandable .section-expandable-icon {
    color: var(--color-accordion);
}

.section-expandable.is--open {
    border-top: var(--border-size-m) solid var(--color-accordion);
}
2021-12-30 04-42-54
shweta chaudhari

Hi @Sarvigaa Arivalagan 

Please find the attached "Accordion.jpg"

I hope this will help you to understand.

Regards,

shweta

Accordion.jpg
UserImage.jpg
Sarvigaa Arivalagan

Thank you for your concern Shweta. I fixed the error.

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.