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

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

Issue 12218058: History: Use images instead of unicode characters. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Improved version after talking to Pat. Created 7 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
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 <if expr="pp_ifdef('android')"> 5 <if expr="pp_ifdef('android')">
6 <meta name="viewport" content="width=device-width, initial-scale=1.0, 6 <meta name="viewport" content="width=device-width, initial-scale=1.0,
7 maximum-scale=1.0, user-scalable=no"> 7 maximum-scale=1.0, user-scalable=no">
8 </if> 8 </if>
9 <title i18n-content="title"></title> 9 <title i18n-content="title"></title>
10 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css"> 10 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 <form id="search-form" method="post" action="" 43 <form id="search-form" method="post" action=""
44 class="search-field-container"> 44 class="search-field-container">
45 <input type="search" id="search-field"> 45 <input type="search" id="search-field">
46 <input type="submit" id="search-button" i18n-values="value:searchbutton"> 46 <input type="submit" id="search-button" i18n-values="value:searchbutton">
47 </form> 47 </form>
48 </header> 48 </header>
49 49
50 <div id="filter-controls" hidden> 50 <div id="filter-controls" hidden>
51 <button id="range-today" i18n-content="rangetoday" disabled> 51 <button id="range-today" i18n-content="rangetoday" disabled>
52 </button> 52 </button>
53 <button id="range-previous" disabled>◀</button> 53 <button id="range-previous" disabled>
James Hawkins 2013/02/07 19:37:29 Is it styled differently when disabled?
Sergiu 2013/02/08 10:01:17 Yes, the background on the button is slightly more
54 <button id="range-next" disabled>▶</button> 54 <img src="../triangle_small_right.png" i18n-values="alt:rangeprevious">
55 </button>
56 <button id="range-next" disabled>
57 <img src="../triangle_small_right.png" i18n-values="alt:rangenext">
58 </button>
55 <div id="display-filter-controls"> 59 <div id="display-filter-controls">
56 <label> 60 <label>
57 <input type="checkbox" id="display-filter-sites" name="display-filter"> 61 <input type="checkbox" id="display-filter-sites" name="display-filter">
58 <span i18n-content="displayfiltersites"></span> 62 <span i18n-content="displayfiltersites"></span>
59 </label> 63 </label>
60 <label> 64 <label>
61 <span i18n-content="rangelabel"></span> 65 <span i18n-content="rangelabel"></span>
62 <select id="timeframe-filter"> 66 <select id="timeframe-filter">
63 <option i18n-content="rangealltime" value="0"></option> 67 <option i18n-content="rangealltime" value="0"></option>
64 <option i18n-content="rangeweek" value="1"></option> 68 <option i18n-content="rangeweek" value="1"></option>
(...skipping 28 matching lines...) Expand all
93 97
94 <menu id="action-menu"> 98 <menu id="action-menu">
95 <button id="more-from-site" i18n-content="moreFromSite"></button> 99 <button id="more-from-site" i18n-content="moreFromSite"></button>
96 <button id="remove-visit" i18n-content="removeFromHistory"></button> 100 <button id="remove-visit" i18n-content="removeFromHistory"></button>
97 </menu> 101 </menu>
98 102
99 <script src="chrome://history-frame/strings.js"></script> 103 <script src="chrome://history-frame/strings.js"></script>
100 <script src="chrome://resources/js/i18n_template2.js"></script> 104 <script src="chrome://resources/js/i18n_template2.js"></script>
101 </body> 105 </body>
102 </html> 106 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698