igx component styling with css
New DiscussionUsing the latest of everything (12.0.1 Angular/CLI/IgniteUI/etc.).
I’m trying to style a bunch of components in a blue background:
- checkbox
- combo/dropdown
- button
I want them all to match:
- For the checkbox, I want the check, the box, and the text to be white and the fill of the checkbox to be a light blue (#00C7FE just an example).
- For the combo/dropdown, white fill and that light blue for the text/boxes/blocks signifying it is selected.
- For the button, similar to combo/dropdown. This is the easiest and I have already been able to modify it.
I also need the combo/dropdown to be on the same line as the text labeling it (start/end WW) and the current parameter from the scenario details to be selected, which isn’t working, even using [(ngModel)]. Here’s an image of what I have right now.

My current CSS:
igx-checkbox {
color: white;
}
button {
color: #00C7FE !important;
background-color: white;
margin: 10px;
}
igx-combo {
color: #00C7FE !important;
background-color: white;
}
I’ve tried styling by a bunch of different features I can see when I inspect the checkbox and combo, but none of them seem to have any affect.
My current HTML:
0" class="container-fluid">Scenario: {{scenario.name}}
Families: {{scenario.families}}
Start WW:{{scenario.active !== 'Active' || scenario.locked || scenario.scenarioType == 'Actual' ? scenario.startWw : ''}} Locked:
Facilities: {{scenario.facilities}}
END WW:{{scenario.active !== 'Active' || scenario.locked || scenario.scenarioType == 'Actual' ? scenario.endWw : ''}} Private:
I’m having a similar issue with advanced/excel filtering in removing the blaring pink that shows up everywhere. I’m hoping you guys can give me a way to change it to match the theme of the app I’m building. Those checkboxes don’t work for me there, either. Everything else in that frame is fine, though.
