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

Side by Side Diff: chrome/browser/resources/script_bubble/popup.html

Issue 11411308: Enable script bubble by default on all but mac. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Everything passes Created 8 years 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!doctype html>
2 <html>
3
4 <head>
5 <style>
6 body {
7 font-family:'DejaVu Sans', Arial, sans-serif;
8 font-size: 14px;
9 }
10
11 h1 {
12 font-weight:normal;
13 font-size:1em;
14 color:#111;
15 white-space:nowrap;
16 }
17
18 .row, .icon, .name {
19 display:-webkit-box;
20 }
21
22 .row {
23 -webkit-box-align:center;
24 color:#222;
25 margin-bottom:0.5em;
26 }
27
28 .row.template {
29 display:none;
30 }
31
32 .icon {
33 margin-right:1ex;
34 margin-bottom:1px;
35 }
36 </style>
37 </head>
38 <body>
39
40 <h1></h1>
41
42 <div class="row template">
43 <img class="icon" width=16 height=16><div class="name"></div>
44 </div>
45
46 <script src="popup.js"></script>
47 </body>
48 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/script_bubble/manifest.json ('k') | chrome/browser/resources/script_bubble/popup.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698