diff options
author | bauerb@chromium.org <bauerb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-30 11:24:51 +0000 |
---|---|---|
committer | bauerb@chromium.org <bauerb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-30 11:24:51 +0000 |
commit | 57b66d09c510ff03605c9dddc289a17dc79f17e7 (patch) | |
tree | c8dd27f47eb1ea5f00ead6cc1898ec997597228f /chrome/renderer/resources/outdated_plugin.html | |
parent | e6437b5b5aef788023788991840e2de227480da1 (diff) | |
download | chromium_src-57b66d09c510ff03605c9dddc289a17dc79f17e7.zip chromium_src-57b66d09c510ff03605c9dddc289a17dc79f17e7.tar.gz chromium_src-57b66d09c510ff03605c9dddc289a17dc79f17e7.tar.bz2 |
Move disabling outdated plugins to labs and update UI to Glen's mocks.
BUG=47731
TEST=Disabling outdated plugins should show up in about:labs
Review URL: http://codereview.chromium.org/3386033
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61055 0039d316-1c4b-4281-b951-d872f2087c98
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> |