Chromium Code Reviews| Index: chrome/renderer/resources/outdated_plugin.html |
| =================================================================== |
| --- chrome/renderer/resources/outdated_plugin.html (revision 67330) |
| +++ chrome/renderer/resources/outdated_plugin.html (working copy) |
| @@ -26,6 +26,10 @@ |
| visibility: visible; |
| } |
| +#outer:hover img { |
|
Bernhard Bauer
2010/11/29 21:02:49
Nit: Could you join these two selectors?
Chris Evans
2010/11/30 03:17:48
Done.
|
| + visibility: visible; |
| +} |
| + |
| #plugin_icon { |
| opacity: .6; |
| } |
| @@ -48,6 +52,14 @@ |
| top: 50%; |
| margin-top: -70px; |
| } |
| + |
| +#close { |
| + visibility: hidden; |
| + cursor: pointer; |
| + position: absolute; |
| + right: 0px; |
| + top: 0px; |
| +} |
| </style> |
| </head> |
| @@ -59,6 +71,7 @@ |
| <h1 i18n-content="name">PLUGIN_NAME</h1> |
| <p id="debug"> </p> |
| </div> |
| +<img id="close" onclick="plugin.hide();" src="../../browser/resources/ntp/ntp_close_p.png"> |
| </div> |
| </body> |
| </html> |