I like the look of the link dialog here. It darkens the screen and is probably modal (although I haven't tested that I just assume it is). What's a quick and easy way of darkening the screen like that witha jQuery UI Dialog?
|
3
|
|
|
|
|
|
The functionality you're talking about is provided by the WYSIWYM Markdown Editor To do it with jQuery UI's dialog, try this:
It's not exactly the same by default, but I think it's even prettier. ;) |
||
|
|
|
One way to do it is to have a div at z-order > 1 which covers the whole screen at less than 100% opacity HTML:
CSS:
} Then you can show the cover when you show your dialog, which needs to be at a yet higher z-index and remove the cover at the same time as your dialog: Open:
Close:
|
||
|
|
