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

Side by Side Diff: chrome/browser/resources/md_history/history_toolbar.html

Issue 1993613002: [MD History] Implement grouped history UI. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@privatize
Patch Set: address comments Created 4 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
OLDNEW
1 <link rel="import" href="chrome://resources/cr_elements/icons.html"> 1 <link rel="import" href="chrome://resources/cr_elements/icons.html">
2 <link rel="import" href="chrome://resources/html/polymer.html"> 2 <link rel="import" href="chrome://resources/html/polymer.html">
3 <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-flex-layout/iron-f lex-layout.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/iron-icons/hardware-ico ns.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/hardware-ico ns.html">
7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-spinner/paper-spi nner.html"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-spinner/paper-spi nner.html">
8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-tabs/paper-tab.ht ml"> 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-tabs/paper-tab.ht ml">
9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-tabs/paper-tabs.h tml"> 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-tabs/paper-tabs.h tml">
10 <link rel="import" href="chrome://resources/cr_elements/cr_search_field/cr_searc h_field.html"> 10 <link rel="import" href="chrome://resources/cr_elements/cr_search_field/cr_searc h_field.html">
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 #grouped-nav-container { 129 #grouped-nav-container {
130 @apply(--layout-center); 130 @apply(--layout-center);
131 @apply(--layout-end-justified); 131 @apply(--layout-end-justified);
132 @apply(--layout-flex); 132 @apply(--layout-flex);
133 @apply(--layout-horizontal); 133 @apply(--layout-horizontal);
134 -webkit-margin-end: 24px; 134 -webkit-margin-end: 24px;
135 overflow: hidden; 135 overflow: hidden;
136 transition: opacity 150ms; 136 transition: opacity 150ms;
137 } 137 }
138 138
139 :host([grouped-range=0]) #grouped-nav-container { 139 :host([grouped-range="0"]) #grouped-nav-container {
140 opacity: 0; 140 opacity: 0;
141 pointer-events: none; 141 pointer-events: none;
142 } 142 }
143 143
144 #grouped-date { 144 #grouped-date {
145 flex: 0 1 auto; 145 flex: 0 1 auto;
146 opacity: 0.7; 146 opacity: 0.7;
147 overflow: hidden; 147 overflow: hidden;
148 text-align: right; 148 text-align: right;
149 text-overflow: ellipsis; 149 text-overflow: ellipsis;
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 class="rtl-reversible"></paper-icon-button> 203 class="rtl-reversible"></paper-icon-button>
204 <paper-icon-button icon="hardware:keyboard-arrow-right" 204 <paper-icon-button icon="hardware:keyboard-arrow-right"
205 alt="$i18n{rangeNext}" title="$i18n{rangeNext}" 205 alt="$i18n{rangeNext}" title="$i18n{rangeNext}"
206 class="rtl-reversible"></paper-icon-button> 206 class="rtl-reversible"></paper-icon-button>
207 </div> 207 </div>
208 </div> 208 </div>
209 </template> 209 </template>
210 </template> 210 </template>
211 <script src="chrome://history/history_toolbar.js"></script> 211 <script src="chrome://history/history_toolbar.js"></script>
212 </dom-module> 212 </dom-module>
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_history/history_list.js ('k') | chrome/browser/resources/md_history/history_toolbar.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698