Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(179)

Side by Side Diff: chrome/renderer/resources/blocked_plugin.html

Issue 3074021: Prettify blocked plugin HTML UI (Closed) Base URL: git://codf21.jail/chromium.git
Patch Set: Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/renderer/blocked_plugin.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <style> 4 <style>
5 body { 5 body {
6 background-color: rgb(252, 235, 162); 6 background-color: rgb(252, 235, 162);
7 margin: 0; 7 margin: 0;
8 text-align: center; 8 text-align: center;
9 font-family: sans-serif; 9 font-family: sans-serif;
10 } 10 }
11 11
12 h1 {
13 padding: 0pt 14pt;
14 font-size: 14pt;
15 color: blue;
Pam (message me for reviews) 2010/08/04 18:22:43 Do we have any mechanism for allowing users to ove
16 }
17
18 #outer:hover h1 {
19 text-decoration: underline;
20 }
21
22 p {
23 padding: 0pt 14pt;
24 font-size: 8pt;
25 }
26
12 #outer { 27 #outer {
13 width: 100%; 28 width: 100%;
14 height: 100%; 29 height: 100%;
15 cursor: pointer; 30 cursor: pointer;
16 position: absolute; 31 position: absolute;
17 } 32 }
18 33
19 #inner { 34 #inner {
20 position: relative; 35 position: relative;
21 top: 50%; 36 top: 50%;
(...skipping 21 matching lines...) Expand all
43 </head> 58 </head>
44 59
45 <body id="t"> 60 <body id="t">
46 <div id="outer" onclick="plugin.load()"> 61 <div id="outer" onclick="plugin.load()">
47 <div id="left"></div> 62 <div id="left"></div>
48 <div id="right"></div> 63 <div id="right"></div>
49 <div id="top"></div> 64 <div id="top"></div>
50 <div id="bottom"></div> 65 <div id="bottom"></div>
51 <div id="inner"> 66 <div id="inner">
52 <div><img src="../../app/theme/extensions_section.png" /></div> 67 <div><img src="../../app/theme/extensions_section.png" /></div>
53 <p i18n-content="loadPlugin">LOAD_PLUGIN</p> 68 <h1 i18n-content="loadPlugin">PLUGIN_LOAD</h1>
69 <p><span class="help" i18n-content="message">BLOCKED_PLUGINS_TITLE</span></p>
54 </div> 70 </div>
55 </div> 71 </div>
56 </body> 72 </body>
57 </html> 73 </html>
OLDNEW
« no previous file with comments | « chrome/renderer/blocked_plugin.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698