@charset "utf-8";

/**
 * Styles to create the overlay and message box
 */
div.gp-updates-overlay
{
	background-color: #000000; /* Fallback for IE8 */
	background-color: rgba(0, 0, 0, 0.7);
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1;
}

div.gp-updates-overlay div.message
{
	background-color: #ffffff;
	
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
			box-sizing: border-box;
			
    left: 50%;
    padding: 10px;
    position: absolute;
    top: 50%;
	
    -webkit-transform: translate(-50%, -50%);
	   -moz-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
			transform: translate(-50%, -50%);
			
    width: 50%;
}

div.gp-updates-overlay div.message p
{
	font-size: 16px;
	margin-bottom: 15px;
}

#gp-updates-button-accept
{
	margin-right: 10px;
}

/**
 * Styles to hide certain update notifications for plugins. This forces the user to use the update screen where they can still update their plugins,
 * but have to read our caution message.
 */
#the-list tr.plugin-update-tr,
#plugin_update_from_iframe
{
	display: none !important;
}

/**
 * Styles to hide the update notification on themes in the Appearance > Themes screen. This forces the user to use the update screen where they can still
 * update their themes, but have to read our caution message.
 *
 * This only really applies to the default WordPress themes, which we should be removing from projects anyway since they are not being used.
 */
div.theme div.theme-update
{
	display: none !important;
}
