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

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

Issue 42544: Make the history and downloads pages work in RTL. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 9 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 | « no previous file | chrome/browser/resources/history.html » ('j') | 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 id="t" jsvalues="dir:textdirection;"> 2 <html id="t" jsvalues="dir:textdirection;">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title jscontent="title"></title> 5 <title jscontent="title"></title>
6 <style type="text/css"> 6 <style type="text/css">
7 body { 7 body {
8 font-family:arial; 8 font-family:arial;
9 background-color:white; 9 background-color:white;
10 color:black; 10 color:black;
11 font-size:84%; 11 font-size:84%;
12 margin:10px; 12 margin:10px;
13 } 13 }
14 .header { 14 .header {
15 overflow:auto; 15 overflow:auto;
16 clear:both; 16 clear:both;
17 } 17 }
18 .header .logo { 18 .header .logo {
19 float:left; 19 float:left;
20 } 20 }
21 .header .form { 21 .header .form {
22 float:left; 22 float:left;
23 margin-top:22px; 23 margin-top:22px;
24 margin-left:12px; 24 margin-left:12px;
25 } 25 }
26 html[dir='rtl'] .logo {
27 float:right;
28 }
29 html[dir='rtl'] .form {
30 float:right;
31 margin-right:12px;
32 }
26 #downloads-summary { 33 #downloads-summary {
27 margin-top:12px; 34 margin-top:12px;
28 border-top:1px solid #9cc2ef; 35 border-top:1px solid #9cc2ef;
29 background-color:#ebeff9; 36 background-color:#ebeff9;
30 font-weight:bold; 37 font-weight:bold;
31 padding:3px; 38 padding:3px;
32 margin-bottom:6px; 39 margin-bottom:6px;
33 } 40 }
34 #downloads-display { 41 #downloads-display {
35 max-width:740px; 42 max-width:740px;
(...skipping 530 matching lines...) Expand 10 before | Expand all | Expand 10 after
566 <span id="danger_save" jscontent="danger_save">Save</span> 573 <span id="danger_save" jscontent="danger_save">Save</span>
567 <span id="danger_discard" jscontent="danger_discard">Discard</span> 574 <span id="danger_discard" jscontent="danger_discard">Discard</span>
568 575
569 <span id="control_pause" jscontent="control_pause">Pause</span> 576 <span id="control_pause" jscontent="control_pause">Pause</span>
570 <span id="control_showinfolder" jscontent="control_showinfolder">Show in folde r</span> 577 <span id="control_showinfolder" jscontent="control_showinfolder">Show in folde r</span>
571 <span id="control_cancel" jscontent="control_cancel">Cancel</span> 578 <span id="control_cancel" jscontent="control_cancel">Cancel</span>
572 <span id="control_resume" jscontent="control_resume">Resume</span> 579 <span id="control_resume" jscontent="control_resume">Resume</span>
573 </div> 580 </div>
574 </body> 581 </body>
575 </html> 582 </html>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/history.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698