summaryrefslogtreecommitdiffstats
path: root/chrome/renderer/resources
diff options
context:
space:
mode:
authorcevans@chromium.org <cevans@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-24 18:16:26 +0000
committercevans@chromium.org <cevans@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-24 18:16:26 +0000
commitd21314202d542df5c364eec6361dfc9c15c1aa1e (patch)
treea677624fc7b8e9a0163ac9b23b58cbaa887b62f6 /chrome/renderer/resources
parentac167ce76fdb3a98f1ea6aadeb121b8495f8400e (diff)
downloadchromium_src-d21314202d542df5c364eec6361dfc9c15c1aa1e.zip
chromium_src-d21314202d542df5c364eec6361dfc9c15c1aa1e.tar.gz
chromium_src-d21314202d542df5c364eec6361dfc9c15c1aa1e.tar.bz2
Include a bit more information on which plugin is involved. Also use a
slightly less common cursor in the click-to-play case. The "version" string isn't giving me much of use (Linux); the version, if present, seems to be tagged into the name. So this seems like a nice balance. BUG=49832 TEST=NONE Review URL: http://codereview.chromium.org/5323001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@67280 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/renderer/resources')
-rw-r--r--chrome/renderer/resources/blocked_plugin.html5
-rw-r--r--chrome/renderer/resources/outdated_plugin.html3
2 files changed, 5 insertions, 3 deletions
diff --git a/chrome/renderer/resources/blocked_plugin.html b/chrome/renderer/resources/blocked_plugin.html
index d8309ed..c6eff24 100644
--- a/chrome/renderer/resources/blocked_plugin.html
+++ b/chrome/renderer/resources/blocked_plugin.html
@@ -50,7 +50,7 @@ p {
#outer {
width: 100%;
height: 100%;
- cursor: pointer;
+ cursor: crosshair;
position: absolute;
border: 1px black solid;
-webkit-box-sizing: border-box;
@@ -66,7 +66,7 @@ FIXME: This causes flickering on hover.
#inner {
position: relative;
top: 50%;
- margin-top: -50px;
+ margin-top: -70px;
}
</style>
</head>
@@ -76,6 +76,7 @@ FIXME: This causes flickering on hover.
<div id="inner">
<div><img id="plugin_icon" src="plugin_blocked.png" /></div>
<h1 i18n-content="message">PLUGIN_LOAD</h1>
+<h1 id="name" i18n-content="name">PLUGIN_NAME</h1>
<p id="debug"> </p>
</div>
</div>
diff --git a/chrome/renderer/resources/outdated_plugin.html b/chrome/renderer/resources/outdated_plugin.html
index 75460eb..e036016 100644
--- a/chrome/renderer/resources/outdated_plugin.html
+++ b/chrome/renderer/resources/outdated_plugin.html
@@ -46,7 +46,7 @@ p {
#inner {
position: relative;
top: 50%;
- margin-top: -50px;
+ margin-top: -70px;
}
</style>
</head>
@@ -56,6 +56,7 @@ p {
<div id="inner">
<div><img id="plugin_icon" src="plugin_blocked.png" /></div>
<h1 i18n-content="message">PLUGIN_OUTDATED</h1>
+<h1 i18n-content="name">PLUGIN_NAME</h1>
<p id="debug"> </p>
</div>
</div>