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

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

Issue 8772046: Make input boxes on history and downloads look nice. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 9 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
« no previous file with comments | « chrome/browser/resources/history.css ('k') | chrome/browser/resources/old_webui.css » ('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 i18n-values="dir:textdirection;"> 2 <html i18n-values="dir:textdirection;">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title i18n-content="title"></title> 5 <title i18n-content="title"></title>
6 <link rel="icon" href="../../app/theme/history_favicon.png"> 6 <link rel="icon" href="../../app/theme/history_favicon.png">
7 7
8 <link rel="stylesheet" href="chrome://resources/css/menu.css"> 8 <link rel="stylesheet" href="chrome://resources/css/menu.css">
9 <link rel="stylesheet" href="shared/css/button.css"> 9 <link rel="stylesheet" href="shared/css/button.css">
10 <link rel="stylesheet" href="shared/css/checkbox.css"> 10 <link rel="stylesheet" href="shared/css/checkbox.css">
11 11
12 <script src="chrome://resources/js/event_tracker.js"></script> 12 <script src="chrome://resources/js/event_tracker.js"></script>
13 <script src="chrome://resources/js/cr.js"></script> 13 <script src="chrome://resources/js/cr.js"></script>
14 <script src="chrome://resources/js/cr/ui.js"></script> 14 <script src="chrome://resources/js/cr/ui.js"></script>
15 <script src="chrome://resources/js/cr/ui/command.js"></script> 15 <script src="chrome://resources/js/cr/ui/command.js"></script>
16 <script src="chrome://resources/js/cr/ui/menu_item.js"></script> 16 <script src="chrome://resources/js/cr/ui/menu_item.js"></script>
17 <script src="chrome://resources/js/cr/ui/menu.js"></script> 17 <script src="chrome://resources/js/cr/ui/menu.js"></script>
18 <script src="chrome://resources/js/cr/ui/position_util.js"></script> 18 <script src="chrome://resources/js/cr/ui/position_util.js"></script>
19 <script src="chrome://resources/js/cr/ui/menu_button.js"></script> 19 <script src="chrome://resources/js/cr/ui/menu_button.js"></script>
20 20
21 <script src="chrome://resources/js/local_strings.js"></script> 21 <script src="chrome://resources/js/local_strings.js"></script>
22 22
23 <script src="chrome://history/history.js"></script> 23 <script src="chrome://history/history.js"></script>
24 <script src="chrome://history/strings.js"></script> 24 <script src="chrome://history/strings.js"></script>
25 25
26 <link rel="stylesheet" href="shared/css/chrome_shared.css">
26 <link rel="stylesheet" href="old_webui.css"> 27 <link rel="stylesheet" href="old_webui.css">
27 <link rel="stylesheet" href="history.css"> 28 <link rel="stylesheet" href="history.css">
28 </head> 29 </head>
29 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 30 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
30 <div class="header"> 31 <div class="header">
31 <a id="history-section" href=""> 32 <a id="history-section" href="">
32 <img src="shared/images/history_section.png" 33 <img src="shared/images/history_section.png"
33 width="67" height="67" class="logo" border="0"></a> 34 width="67" height="67" class="logo" border="0"></a>
34 <form id="search-form" method="post" action="" class="form"> 35 <form id="search-form" method="post" action="" class="form">
35 <input type="text" name="term" id="term"> 36 <input type="text" name="term" id="term">
36 <input type="submit" name="submit" i18n-values="value:searchbutton"> 37 <input type="submit" name="submit" i18n-values="value:searchbutton">
37 </form> 38 </form>
38 </div> 39 </div>
39 <div class="main"> 40 <div class="main">
40 <div id="results-separator"> 41 <div id="results-summary"></div>
41 <table border="0" cellPadding="0" cellSpacing="0">
42 <tr><td id="results-summary"></td><td id="edit-button"><p></p></td></tr>
43 </table>
44 </div>
45 <div id="editing-controls"> 42 <div id="editing-controls">
46 <button id="clear-browsing-data" i18n-content="clearallhistory"></button> 43 <button id="clear-browsing-data" i18n-content="clearallhistory"></button>
47 <button id="remove-selected" 44 <button id="remove-selected"
48 disabled="disabled" 45 disabled="disabled"
49 i18n-content="removeselected"></button> 46 i18n-content="removeselected"></button>
50 </div> 47 </div>
51 <div id="results-display"></div> 48 <div id="results-display"></div>
52 <div id="results-pagination"></div> 49 <div id="results-pagination"></div>
53 </div> 50 </div>
54 51
55 <menu id="action-menu"> 52 <menu id="action-menu">
56 <button id="more-from-site" i18n-content="moreFromSite"></button> 53 <button id="more-from-site" i18n-content="moreFromSite"></button>
57 <button id="remove-page" i18n-content="removeFromHistory"></button> 54 <button id="remove-page" i18n-content="removeFromHistory"></button>
58 </menu> 55 </menu>
59 56
60 <script src="chrome://resources/js/i18n_template.js"></script> 57 <script src="chrome://resources/js/i18n_template.js"></script>
61 <script src="chrome://resources/js/i18n_process.js"></script> 58 <script src="chrome://resources/js/i18n_process.js"></script>
62 </body> 59 </body>
63 </html> 60 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/history.css ('k') | chrome/browser/resources/old_webui.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698