Opened 9 years ago

Closed 9 years ago

#9641 closed bug (notabug)

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/

Change History (2)

comment:1 Changed 9 years ago by venkatram.akkineni

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);
}

comment:2 Changed 9 years ago by Scott González

Resolution: notabug
Status: newclosed
Note: See TracTickets for help on using tickets.