Reputation: 6259
When I use Office2007-Skin for the Telerik-Controls, the RadComboBox would have in normal-mode a blue color:
I am searching for a way, that the RadComboBox looks like:
I want only change the blue color of the whole RadComboBox.
I cannot change the Skin, because it is used/necessary for other controls.
Can I change this via styling?
Upvotes: 0
Views: 1900
Reputation: 3793
Add these styles to your custom css file:
div.RadComboBox .rcbReadOnly .rcbInputCellLeft,
div.RadComboBox .rcbFocused .rcbReadOnly .rcbInputCellLeft,
div.RadComboBox .rcbHovered .rcbReadOnly .rcbInputCellLeft
{
background-position: inherit;
}
It will override the default background of the combo input
Upvotes: 1