Skip to main content

Search and Top Navigation

#9641 closed bug (notabug)

Opened October 31, 2013 10:09PM UTC

Closed October 31, 2013 10:52PM UTC

Droppable appears faded when disabled.

Reported by: venkatram.akkineni Owned by:
Priority: minor Milestone: none
Component: ui.core Version: 1.10.3
Keywords: Cc:
Blocked by: Blocking:
Description

When droppable is disabled, the opacity is being set to 0.35 I think. This can be overridden with css. FF and Chrome seem to honor this. But for some reason IE 8 /9 won't honor this. I have tried add

opacity: 1

inline as well. But that seems to have no affect. Please look at the fiddle attached.

http://jsfiddle.net/GbQH2/7/

Attachments (0)
Change History (2)

Changed October 31, 2013 10:17PM UTC by venkatram.akkineni comment:1

This bug is invalid, I didn't realize IE uses filter for opacity. Using the following seems to do the trick. I do not have access to reject / close the bug.

.ui-state-disabled.ui-droppable-disabled {
    opacity : 1;
    filter: alpha(opacity = 100);
}

Changed October 31, 2013 10:52PM UTC by scottgonzalez comment:2

resolution: → notabug
status: newclosed