/*!
 * VisualEditor UserInterface MobileSurface styles.
 *
 * @copyright 2011-2015 VisualEditor Team and others; see http://ve.mit-license.org
 */

/* Most vendor prefixes are not needed on mobile devices */
/*csslint compatible-vendor-prefixes:false */

.ve-ui-mobileSurface-overlay-global {
	background: #fff;
	height: 100%;
	-webkit-transform: translate3d(0, -100%, 0);
	transform: translate3d(0, -100%, 0);

	-webkit-transition: -webkit-transform .3s, opacity .3s;
	transition: transform .3s, opacity .3s;
}

.ve-ui-mobileSurface-overlay-global-visible {
	-webkit-transform: none;
	transform: none;
}

.ve-ui-mobileSurface-overlay-global-enabled {
	height: 100%;
	overflow: hidden;
}

/* inspector styles */

.ve-ui-mobileSurface-overlay-global-visible .oo-ui-window-frame iframe {
	width: 100%;
}
