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

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

Issue 9372111: History page: Removing ugly css hack (negative margins). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebasing Created 8 years, 10 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/history.css ('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 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="shared/css/menu.css"> 8 <link rel="stylesheet" href="shared/css/menu.css">
9 9
10 <script src="chrome://resources/js/event_tracker.js"></script> 10 <script src="chrome://resources/js/event_tracker.js"></script>
11 <script src="chrome://resources/js/cr.js"></script> 11 <script src="chrome://resources/js/cr.js"></script>
12 <script src="chrome://resources/js/cr/ui.js"></script> 12 <script src="chrome://resources/js/cr/ui.js"></script>
13 <script src="chrome://resources/js/cr/ui/command.js"></script> 13 <script src="chrome://resources/js/cr/ui/command.js"></script>
14 <script src="chrome://resources/js/cr/ui/menu_item.js"></script> 14 <script src="chrome://resources/js/cr/ui/menu_item.js"></script>
15 <script src="chrome://resources/js/cr/ui/menu.js"></script> 15 <script src="chrome://resources/js/cr/ui/menu.js"></script>
16 <script src="chrome://resources/js/cr/ui/position_util.js"></script> 16 <script src="chrome://resources/js/cr/ui/position_util.js"></script>
17 <script src="chrome://resources/js/cr/ui/menu_button.js"></script> 17 <script src="chrome://resources/js/cr/ui/menu_button.js"></script>
18 18
19 <script src="chrome://resources/js/local_strings.js"></script> 19 <script src="chrome://resources/js/local_strings.js"></script>
20 20
21 <script src="chrome://history/history.js"></script> 21 <script src="chrome://history/history.js"></script>
22 <script src="chrome://history/strings.js"></script> 22 <script src="chrome://history/strings.js"></script>
23 23
24 <link rel="stylesheet" href="shared/css/chrome_shared2.css"> 24 <link rel="stylesheet" href="shared/css/chrome_shared2.css">
25 <link rel="stylesheet" href="uber/uber_shared.css"> 25 <link rel="stylesheet" href="uber/uber_shared.css">
26 <link rel="stylesheet" href="history.css"> 26 <link rel="stylesheet" href="history.css">
27 </head> 27 </head>
28 <body class="uber-frame" 28 <body class="uber-frame"
29 i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 29 i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
30 <header> 30 <div class="page">
31 <h1 i18n-content="history"></h1> 31 <header>
32 <form id="search-form" method="post" action="" 32 <h1 i18n-content="history"></h1>
33 class="search-field-container"> 33 <form id="search-form" method="post" action=""
34 <input type="text" id="search-field"> 34 class="search-field-container">
35 <input type="submit" id="search-button" i18n-values="value:searchbutton"> 35 <input type="text" id="search-field">
36 </form> 36 <input type="submit" id="search-button" i18n-values="value:searchbutton">
37 </header> 37 </form>
38 </header>
38 39
39 <div class="page">
40 <div id="editing-controls"> 40 <div id="editing-controls">
41 <button id="clear-browsing-data" i18n-content="clearallhistory"></button> 41 <button id="clear-browsing-data" i18n-content="clearallhistory"></button>
42 <button id="remove-selected" 42 <button id="remove-selected"
43 disabled="disabled" 43 disabled="disabled"
44 i18n-content="removeselected"></button> 44 i18n-content="removeselected"></button>
45 </div> 45 </div>
46 <div id="results-display"></div> 46 <div id="results-display"></div>
47 <div id="results-pagination"></div> 47 <div id="results-pagination"></div>
48 </div> 48 </div>
49 49
50 <menu id="action-menu"> 50 <menu id="action-menu">
51 <button id="more-from-site" i18n-content="moreFromSite"></button> 51 <button id="more-from-site" i18n-content="moreFromSite"></button>
52 <button id="remove-page" i18n-content="removeFromHistory"></button> 52 <button id="remove-page" i18n-content="removeFromHistory"></button>
53 </menu> 53 </menu>
54 54
55 <script src="chrome://resources/js/i18n_template.js"></script> 55 <script src="chrome://resources/js/i18n_template.js"></script>
56 <script src="chrome://resources/js/i18n_process.js"></script> 56 <script src="chrome://resources/js/i18n_process.js"></script>
57 </body> 57 </body>
58 </html> 58 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/history.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698