diff options
Diffstat (limited to 'chrome/renderer/resources/outdated_plugin.html')
-rw-r--r-- | chrome/renderer/resources/outdated_plugin.html | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/chrome/renderer/resources/outdated_plugin.html b/chrome/renderer/resources/outdated_plugin.html new file mode 100644 index 0000000..bf55ae4 --- /dev/null +++ b/chrome/renderer/resources/outdated_plugin.html @@ -0,0 +1,63 @@ +<!DOCTYPE html> +<html> +<head> +<script> +function debug(msg) { + document.getElementById('debug').textContent = msg; +} +</script> +<style> +body { + background-color: rgb(187, 187, 187); + margin: 0; + text-align: center; + font-family: sans-serif; + overflow: hidden; +} + +h1 { + padding: 0pt 10pt; + font-size: 10pt; + font-weight: normal; + visibility: hidden; +} + +#outer:hover h1 { + visibility: visible; +} + +#plugin_icon { + opacity: .6; +} + +p { + padding: 0pt 14pt; + font-size: 8pt; +} + +#outer { + width: 100%; + height: 100%; + position: absolute; + border: 1px black solid; + -webkit-box-sizing: border-box; +} + +#inner { + position: relative; + top: 50%; + margin-top: -50px; +} +</style> +</head> + +<body id="t" onSelectStart="return false;"> +<div id="outer"> +<div id="inner"> +<div><img id="plugin_icon" src="plugin_blocked.png" /></div> +<h1 i18n-content="pluginOutdated">PLUGIN_OUTDATED</h1> +<p id="debug"> </p> +</div> +</div> +</body> +</html> |