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

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

Issue 15969014: History: Update managed user history page (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixes Created 7 years, 6 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="is_android or pp_ifdef('ios')"> 5 <if expr="is_android or pp_ifdef('ios')">
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/butter_bar.css"> 10 <link rel="stylesheet" href="chrome://resources/css/butter_bar.css">
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 </head> 54 </head>
55 55
56 <if expr="not is_android"> 56 <if expr="not is_android">
57 <body class="uber-frame" 57 <body class="uber-frame"
58 i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 58 i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
59 </if> 59 </if>
60 <if expr="is_android or pp_ifdef('ios')"> 60 <if expr="is_android or pp_ifdef('ios')">
61 <body i18n-values=".style.fontFamily:fontfamily"> 61 <body i18n-values=".style.fontFamily:fontfamily">
62 </if> 62 </if>
63 63
64 <div class="page"> 64 <div id="page" class="page">
65 <header> 65 <header>
66 <h1 i18n-content="history"></h1> 66 <h1 i18n-content="history"></h1>
67 <div id="search-form" class="search-field-container"> 67 <div id="search-form" class="search-field-container">
68 <input type="search" id="search-field" required> 68 <input type="search" id="search-field" required>
69 <input type="submit" id="search-button" i18n-values="value:searchButton"> 69 <input type="submit" id="search-button" i18n-values="value:searchButton">
70 </div> 70 </div>
71 <div id="filter-controls" hidden>
72 <button id="range-today" i18n-content="rangeToday" disabled></button>
73 <button id="range-previous" disabled>
74 <img src="../disclosure_triangle_small.png"
75 i18n-values="alt:rangePrevious">
76 </button><button id="range-next" disabled>
markusheintz_ 2013/06/06 09:43:51 I guess James already mentioned this. Could you mo
77 <img src="../disclosure_triangle_small.png" i18n-values="alt:rangeNext">
78 </button>
79 <div id="display-filter-controls">
80 <div class="display-filter-button">
81 <label for="timeframe-filter-all">
82 <input id="timeframe-filter-all" type="radio"
83 name="timeframe-filter" value="0" checked>
84 <span i18n-content="rangeAllTime" class="first-button-component">
85 </span>
86 </label>
87 </div>
88 <div class="display-filter-button">
89 <label for="timeframe-filter-week">
90 <input id="timeframe-filter-week" type="radio"
91 name="timeframe-filter" value="1">
92 <span i18n-content="rangeWeek"></span>
93 </label>
94 </div>
95 <div class="display-filter-button">
96 <label for="timeframe-filter-month">
97 <input id="timeframe-filter-month" type="radio"
98 name="timeframe-filter" value="2">
99 <span i18n-content="rangeMonth" class="last-button-component">
100 </span>
101 </label>
102 </div>
103 </div>
104 </div>
71 </header> 105 </header>
72
73 <div id="filter-controls" hidden>
74 <button id="range-today" i18n-content="rangeToday" disabled>
75 </button>
76 <button id="range-previous" disabled>
77 <img src="../disclosure_triangle_small.png"
78 i18n-values="alt:rangePrevious">
79 </button>
80 <button id="range-next" disabled>
81 <img src="../disclosure_triangle_small.png" i18n-values="alt:rangeNext">
82 </button>
83 <div id="display-filter-controls">
84 <label>
85 <input type="checkbox" id="group-by-domain" name="group-by-domain">
86 <span i18n-content="groupByDomainLabel"></span>
87 </label>
88 <label>
89 <span i18n-content="rangeLabel"></span>
90 <select id="timeframe-filter">
91 <option i18n-content="rangeAllTime" value="0"></option>
92 <option i18n-content="rangeWeek" value="1"></option>
93 <option i18n-content="rangeMonth" value="2"></option>
94 </select>
95 </label>
96 </div>
97 </div>
98 <if expr="not is_android"> 106 <if expr="not is_android">
99 <div id="other-devices" class="other-devices"></div> 107 <div id="other-devices" class="other-devices"></div>
100 </if> 108 </if>
101 <div id="top-container"> 109 <div id="top-container">
102 <div id="editing-controls"> 110 <div id="editing-controls">
103 <button id="clear-browsing-data" i18n-content="clearAllHistory"></button> 111 <button id="clear-browsing-data" i18n-content="clearAllHistory"></button>
104 <button id="remove-selected" disabled="disabled" 112 <button id="remove-selected" disabled="disabled"
105 i18n-content="removeSelected"></button> 113 i18n-content="removeSelected"></button>
106 </div> 114 </div>
107 <div id="notification-bar" hidden></div> 115 <div id="notification-bar" hidden></div>
(...skipping 25 matching lines...) Expand all
133 <script src="chrome://history-frame/strings.js"></script> 141 <script src="chrome://history-frame/strings.js"></script>
134 <script src="chrome://resources/js/i18n_template2.js"></script> 142 <script src="chrome://resources/js/i18n_template2.js"></script>
135 143
136 <if expr="not is_android and not pp_ifdef('ios')"> 144 <if expr="not is_android and not pp_ifdef('ios')">
137 <div id="overlay" class="overlay" hidden> 145 <div id="overlay" class="overlay" hidden>
138 <include src="alert_overlay.html"> 146 <include src="alert_overlay.html">
139 </div> 147 </div>
140 </if> 148 </if>
141 </body> 149 </body>
142 </html> 150 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698