Index: chrome/browser/resources/history/history.html |
diff --git a/chrome/browser/resources/history/history.html b/chrome/browser/resources/history/history.html |
index 14e35f75fb7dcc3745d555c1f952440a865e2eba..49fc6bdce803c38766bbc8ba5f274f126720ad12 100644 |
--- a/chrome/browser/resources/history/history.html |
+++ b/chrome/browser/resources/history/history.html |
@@ -61,40 +61,45 @@ |
<body i18n-values=".style.fontFamily:fontfamily"> |
</if> |
-<div class="page"> |
+<div id="history-page" class="page"> |
<header> |
<h1 i18n-content="history"></h1> |
<div id="search-form" class="search-field-container"> |
<input type="search" id="search-field" required> |
<input type="submit" id="search-button" i18n-values="value:searchButton"> |
</div> |
- </header> |
- |
- <div id="filter-controls" hidden> |
- <button id="range-today" i18n-content="rangeToday" disabled> |
- </button> |
- <button id="range-previous" disabled> |
- <img src="../disclosure_triangle_small.png" |
- i18n-values="alt:rangePrevious"> |
- </button> |
- <button id="range-next" disabled> |
- <img src="../disclosure_triangle_small.png" i18n-values="alt:rangeNext"> |
- </button> |
- <div id="display-filter-controls"> |
- <label> |
- <input type="checkbox" id="group-by-domain" name="group-by-domain"> |
- <span i18n-content="groupByDomainLabel"></span> |
- </label> |
- <label> |
- <span i18n-content="rangeLabel"></span> |
- <select id="timeframe-filter"> |
- <option i18n-content="rangeAllTime" value="0"></option> |
- <option i18n-content="rangeWeek" value="1"></option> |
- <option i18n-content="rangeMonth" value="2"></option> |
- </select> |
- </label> |
+ <div id="filter-controls" hidden> |
+ <button id="range-today" i18n-content="rangeToday" disabled></button> |
+ <button id="range-previous" i18n-values="alt:rangePrevious" disabled> |
+ </button><button id="range-next" i18n-values="alt:rangeNext" disabled> |
Bernhard Bauer
2013/06/10 17:49:33
Can you put the closing tag on the previous line?
|
+ </button> |
+ <div id="display-filter-controls"> |
+ <div class="display-filter-button"> |
+ <label for="timeframe-filter-all"> |
+ <input id="timeframe-filter-all" type="radio" |
+ name="timeframe-filter" value="0" checked> |
+ <span i18n-content="rangeAllTime" class="first-button-component"> |
+ </span> |
+ </label> |
+ </div> |
+ <div class="display-filter-button"> |
+ <label for="timeframe-filter-week"> |
+ <input id="timeframe-filter-week" type="radio" |
+ name="timeframe-filter" value="1"> |
+ <span i18n-content="rangeWeek"></span> |
+ </label> |
+ </div> |
+ <div class="display-filter-button"> |
+ <label for="timeframe-filter-month"> |
+ <input id="timeframe-filter-month" type="radio" |
+ name="timeframe-filter" value="2"> |
+ <span i18n-content="rangeMonth" class="last-button-component"> |
+ </span> |
+ </label> |
+ </div> |
+ </div> |
</div> |
- </div> |
+ </header> |
<if expr="not is_android"> |
<div id="other-devices" class="other-devices"></div> |
</if> |