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

Side by Side Diff: chrome/browser/resources/notification_icon.html

Issue 786023002: Remove hard-coded font families in WebUI. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: The First Version. Created 6 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title>$2</title> 5 <title>$2</title>
6 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
6 <style> 7 <style>
7 body { 8 body {
Dan Beam 2014/12/10 19:49:25 should probably be on html
xdai1 2014/12/11 02:59:23 Done.
8 direction: $5; 9 direction: $5;
9 } 10 }
10 #icon { 11 #icon {
11 height: 32px; 12 height: 32px;
12 width: 32px; 13 width: 32px;
13 float: $4; 14 float: $4;
14 } 15 }
15 #title { 16 #title {
16 margin-$4: 38px; 17 margin-$4: 38px;
17 font-weight: bold; 18 font-weight: bold;
18 font-size: 13px; 19 font-size: 13px;
19 font-family: helvetica, arial, sans-serif;
20 } 20 }
21 #description { 21 #description {
22 margin-$4: 38px; 22 margin-$4: 38px;
23 font-family: helvetica, arial, sans-serif;
24 font-size: 13px; 23 font-size: 13px;
25 } 24 }
26 </style> 25 </style>
27 </head> 26 </head>
28 <body> 27 <body>
29 <div id="icon"><img src="$1" width="32" height="32"></div> 28 <div id="icon"><img src="$1" width="32" height="32"></div>
30 <div id="title">$2</div> 29 <div id="title">$2</div>
31 <div id="description">$3</div> 30 <div id="description">$3</div>
32 </body> 31 </body>
33 </html> 32 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698