I'm trying to apply jQuery UI Selectable to a portion of my website. However, I do not see either the selection box while dragging the mouse, nor does the color of selected li
elements change.
So to understand the problem, I went back to the source:
http://jqueryui.com/demos/selectable/
I see (using IE9 developer tools) that a style .ui-selected
is applied to selected elements. Using Trace Styles, IE shows that background-color
is originally defined in jquery-ui.css
but overridden (ultimately) by #selectable .ui-selected
. However, IE does not show the source of #selectable .ui-selected
. Searching the jQuery UI style sheet I reference, jquery-ui-1.8.18.custom.css
, finds no mention of ui-selected
, nor do I find it in jquery.ui.selectable.css
.
Where exactly is the demo page getting the CSS for the background color?