Skip to content

Instantly share code, notes, and snippets.

View hburgund's full-sized avatar

Halsey Burgund hburgund

View GitHub Profile
@tqc
tqc / jqmdialogfix.css
Created April 19, 2012 12:24
jQuery mobile dialog transparency fix
.ui-dialog-background {
opacity: 0.5;
display: block !important;
-webkit-transition: opacity 0.5s ease-in;
}
.ui-dialog-background.pop.in {
opacity: 1;
-webkit-transition: opacity 0.5s ease-in;
}