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

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

Issue 3131021: Get the same margin on all sides of the notification.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/resources/notification_2line.html ('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 <title>$2</title> 4 <title>$2</title>
5 <style> 5 <style>
6 body { 6 body {
7 margin: 6px;
8 height: 50px;
9 direction: $5; 7 direction: $5;
10 } 8 }
11 #icon { 9 #icon {
12 height: 48px; 10 height: 48px;
13 width: 48px; 11 width: 48px;
14 float: $4; 12 float: $4;
15 } 13 }
16 #title { 14 #title {
17 margin-$4: 54px; 15 margin-$4: 54px;
18 font-weight: bold; 16 font-weight: bold;
19 font-size: 13px; 17 font-size: 13px;
20 font-family: helvetica, arial, sans-serif; 18 font-family: helvetica, arial, sans-serif;
21 } 19 }
22 #description { 20 #description {
23 margin-$4: 54px; 21 margin-$4: 54px;
24 font-family: helvetica, arial, sans-serif; 22 font-family: helvetica, arial, sans-serif;
25 font-size: 13px; 23 font-size: 13px;
26 } 24 }
27 </style> 25 </style>
28 </head> 26 </head>
29 <body> 27 <body>
30 <div id="icon"><img src="$1" width="48" height="48" /></div> 28 <div id="icon"><img src="$1" width="48" height="48" /></div>
31 <div id="title">$2</div> 29 <div id="title">$2</div>
32 <div id="description">$3</div> 30 <div id="description">$3</div>
33 </body> 31 </body>
34 </html> 32 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/notification_2line.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698