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

Side by Side Diff: chrome/browser/resources/history.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 | « chrome/browser/resources/downloads.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 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 <script type="text/javascript"> 6 <script type="text/javascript">
7 /////////////////////////////////////////////////////////////////////////////// 7 ///////////////////////////////////////////////////////////////////////////////
8 // Globals: 8 // Globals:
9 var RESULTS_PER_PAGE = 150; 9 var RESULTS_PER_PAGE = 150;
10 var MAX_SEARCH_DEPTH_MONTHS = 18; 10 var MAX_SEARCH_DEPTH_MONTHS = 18;
(...skipping 807 matching lines...) Expand 10 before | Expand all | Expand 10 after
818 clear:both; 818 clear:both;
819 } 819 }
820 .header .logo { 820 .header .logo {
821 float:left; 821 float:left;
822 } 822 }
823 .header .form { 823 .header .form {
824 float:left; 824 float:left;
825 margin-top:22px; 825 margin-top:22px;
826 margin-left:12px; 826 margin-left:12px;
827 } 827 }
828 html[dir='rtl'] .logo {
829 float:right;
830 }
831 html[dir='rtl'] .form {
832 float:right;
833 margin-right:12px;
834 }
828 #results-summary { 835 #results-summary {
829 margin-top:12px; 836 margin-top:12px;
830 border-top:1px solid #9cc2ef; 837 border-top:1px solid #9cc2ef;
831 background-color:#ebeff9; 838 background-color:#ebeff9;
832 font-weight:bold; 839 font-weight:bold;
833 padding:3px; 840 padding:3px;
834 margin-bottom:-8px; 841 margin-bottom:-8px;
835 } 842 }
836 #results-display { 843 #results-display {
837 max-width:740px; 844 max-width:740px;
838 } 845 }
839 .day { 846 .day {
840 margin-top:18px; 847 margin-top:18px;
841 margin-left:3px; 848 margin-left:3px;
842 width:750px; 849 width:750px;
843 } 850 }
844 .delete-day { 851 .delete-day {
845 width:200px; 852 width:200px;
846 float:right; 853 float:right;
847 } 854 }
855 html[dir='rtl'] .delete-day {
856 float:left;
857 }
848 .gap { 858 .gap {
849 margin-left:18px; 859 margin-left:18px;
850 width:15px; 860 width:15px;
851 border-right:1px solid #ddd; 861 border-right:1px solid #ddd;
852 height:14px; 862 height:14px;
853 } 863 }
854 .entry { 864 .entry {
855 margin-left:18px; 865 margin-left:18px;
856 margin-top:6px; 866 margin-top:6px;
857 overflow:auto; 867 overflow:auto;
858 } 868 }
859 table.results { 869 table.results {
860 margin-left:4px; 870 margin-left:4px;
861 } 871 }
862 .entry .time { 872 .entry .time {
863 color:#888; 873 color:#888;
864 float:left; 874 float:left;
865 min-width:56px; 875 min-width:56px;
866 margin-right:5px; 876 margin-right:5px;
867 padding-top:1px; 877 padding-top:1px;
868 } 878 }
879 html[dir='rtl'] .time {
880 float:right;
881 }
869 .entry .title { 882 .entry .title {
870 max-width:600px; 883 max-width:600px;
871 overflow: hidden; 884 overflow: hidden;
872 white-space: nowrap; 885 white-space: nowrap;
873 text-overflow: ellipsis; 886 text-overflow: ellipsis;
874 } 887 }
875 .results .time, .results .title { 888 .results .time, .results .title {
876 margin-top:18px; 889 margin-top:18px;
877 } 890 }
878 .starred { 891 .starred {
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
935 <span id="searchresultsfor" jscontent="searchresultsfor">Search results for '% s'</span> 948 <span id="searchresultsfor" jscontent="searchresultsfor">Search results for '% s'</span>
936 <span id="history" jscontent="history">History</span> 949 <span id="history" jscontent="history">History</span>
937 <span id="cont" jscontent="cont">(cont.)</span> 950 <span id="cont" jscontent="cont">(cont.)</span>
938 <span id="noresults" jscontent="noresults">No results</span> 951 <span id="noresults" jscontent="noresults">No results</span>
939 <span id="noitems" jscontent="noitems">No items</span> 952 <span id="noitems" jscontent="noitems">No items</span>
940 <span id="deleteday" jscontent="deleteday">Delete history for this day</span> 953 <span id="deleteday" jscontent="deleteday">Delete history for this day</span>
941 <span id="deletedaywarning" jscontent="deletedaywarning">Are you sure you want to delete this day?</span> 954 <span id="deletedaywarning" jscontent="deletedaywarning">Are you sure you want to delete this day?</span>
942 </div> 955 </div>
943 </body> 956 </body>
944 </html> 957 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/downloads.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698