RadComboBox for ASP.NET AJAX

RadControls Send comments on this topic.
CSS Skin File Selectors
See Also
Controls > RadComboBox > Appearance and Styling > CSS Skin File Selectors

Glossary Item Box

 The following table lists significant CSS selectors and descriptions for RadComboBox style sheets.

CSS Selector Description
.RadComboBox_MySkin The style for the HTML <div> tag that contains the RadComboBox input & arrow
.RadComboBoxDropDown_MySkin The style for the HTML <div> tag that contains the RadComboBox drop-down
input The default style for text throughout the control.
table, td The default table and cell style that make up the RadComboBox text input and drop down arrow areas.
.rcbInputCell The style for the text input area of the RadComboBox, located just to the left of the drop down arrow.
.rcbArrowCell The style for the area containing the downward pointing arrow for the RadComboBox. This contains a background property where you can specify a new image url to represent the drop down button.
.rcbFocused The style for the RadComboBox when focused (awaiting input).
.rcbScroll This style controls the presence and behavior of scroll bars in the drop down list portion of the control.
.rcbList The style for the drop down portion of the list that isn't disabled or hovered. This style is applied to the <ul> HTML tag class representing an unordered list.
.rcbItem The style for each <li> HTML tag item within the unordered list that is not disabled or hovered. 
.rcbHovered The style for a list item (or input area) under the mouse.
.rcbDisabled The style for disabled items in the drop down list. Define a moderate color property (typically a gray) to communicate that the text represents a disabled item.
.rcbNoWrap This style applies to the list when the RadComboBox NoWrap property is set to true.
.rcbLoading This style controls the look of the area that displays the LoadingMessage property.
.rcbMoreResults This style controls the look of the "Show More results" area. See Load On Demand topics for more information.
.rcbImage This style applies to the image when ImageUrl property is set for an item.
.rcbEmptyMessage Controls the appearance of the EmptyMessage text
.rcbSeparator Controls the appearance of the RadComboBox separators
.rcbLabel Controls the appearance of the associated Label
 

There are several styles that end in "_rtl" that are used to style specific portions of the control when right-to-left support is turned on. These "_rtl" styles are variants of their left-to-right default counterparts.

See Also