OLD | NEW |
1 <link rel="import" href="chrome://resources/html/polymer.html"> | 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout.html"> | 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout.html"> |
3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/hardware-ico
ns.html"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/hardware-ico
ns.html"> |
4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> |
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-tabs/paper-tab.ht
ml"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-tabs/paper-tab.ht
ml"> |
7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-tabs/paper-tabs.h
tml"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-tabs/paper-tabs.h
tml"> |
8 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 8 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
9 <link rel="import" href="chrome://resources/cr_elements/cr_toolbar/cr_toolbar.ht
ml"> | 9 <link rel="import" href="chrome://resources/cr_elements/cr_toolbar/cr_toolbar.ht
ml"> |
| 10 <link rel="import" href="chrome://history/icons.html"> |
10 <link rel="import" href="chrome://history/shared_style.html"> | 11 <link rel="import" href="chrome://history/shared_style.html"> |
11 | 12 |
12 <dom-module id="history-toolbar"> | 13 <dom-module id="history-toolbar"> |
13 <template> | 14 <template> |
14 <style include="shared-style"> | 15 <style include="shared-style"> |
15 :host { | 16 :host { |
16 color: #fff; | 17 color: #fff; |
17 transition: background-color 150ms; | 18 transition: background-color 150ms; |
18 width: 100%; | 19 width: 100%; |
19 } | 20 } |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
137 <paper-tabs attr-for-selected="value" selected="{{groupedRange}}" | 138 <paper-tabs attr-for-selected="value" selected="{{groupedRange}}" |
138 id="grouped-range-buttons"> | 139 id="grouped-range-buttons"> |
139 <paper-tab value="0">$i18n{rangeAllTime}</paper-tab> | 140 <paper-tab value="0">$i18n{rangeAllTime}</paper-tab> |
140 <paper-tab value="1">$i18n{rangeWeek}</paper-tab> | 141 <paper-tab value="1">$i18n{rangeWeek}</paper-tab> |
141 <paper-tab value="2">$i18n{rangeMonth}</paper-tab> | 142 <paper-tab value="2">$i18n{rangeMonth}</paper-tab> |
142 </paper-tabs> | 143 </paper-tabs> |
143 <div id="grouped-nav-container"> | 144 <div id="grouped-nav-container"> |
144 <span id="grouped-date"> | 145 <span id="grouped-date"> |
145 {{getHistoryInterval_(queryStartTime, queryEndTime)}} | 146 {{getHistoryInterval_(queryStartTime, queryEndTime)}} |
146 </span> | 147 </span> |
147 <paper-icon-button icon="today" alt="$i18n{rangeToday}" | 148 <paper-icon-button icon="history:today" alt="$i18n{rangeToday}" |
148 title="$i18n{rangeToday}"></paper-icon-button> | 149 title="$i18n{rangeToday}"></paper-icon-button> |
149 <paper-icon-button icon="hardware:keyboard-arrow-left" | 150 <paper-icon-button icon="history:chevron-left" |
150 alt="$i18n{rangePrevious}" title="$i18n{rangePrevious}" | 151 alt="$i18n{rangePrevious}" title="$i18n{rangePrevious}" |
151 class="rtl-reversible"></paper-icon-button> | 152 class="rtl-reversible"></paper-icon-button> |
152 <paper-icon-button icon="hardware:keyboard-arrow-right" | 153 <paper-icon-button icon="cr:chevron-right" |
153 alt="$i18n{rangeNext}" title="$i18n{rangeNext}" | 154 alt="$i18n{rangeNext}" title="$i18n{rangeNext}" |
154 class="rtl-reversible"></paper-icon-button> | 155 class="rtl-reversible"></paper-icon-button> |
155 </div> | 156 </div> |
156 </div> | 157 </div> |
157 </template> | 158 </template> |
158 </template> | 159 </template> |
159 <script src="chrome://history/history_toolbar.js"></script> | 160 <script src="chrome://history/history_toolbar.js"></script> |
160 </dom-module> | 161 </dom-module> |
OLD | NEW |