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

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: Created 4 years, 7 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/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/paper-button/paper-butt on.html"> 3 <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-icon-button/paper -icon-button.html"> 4 <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/iron-icons/hardware-ico ns.html"> 5 <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/paper-spinner/paper-spi nner.html"> 6 <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-tabs/paper-tab.ht ml"> 7 <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-tabs.h tml"> 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-tabs/paper-tabs.h tml">
9 <link rel="import" href="chrome://resources/cr_elements/cr_search_field/cr_searc h_field.html"> 9 <link rel="import" href="chrome://resources/cr_elements/cr_search_field/cr_searc h_field.html">
10 <link rel="import" href="chrome://history/shared_style.html"> 10 <link rel="import" href="chrome://history/shared_style.html">
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 #grouped-nav-container { 128 #grouped-nav-container {
129 @apply(--layout-center); 129 @apply(--layout-center);
130 @apply(--layout-end-justified); 130 @apply(--layout-end-justified);
131 @apply(--layout-flex); 131 @apply(--layout-flex);
132 @apply(--layout-horizontal); 132 @apply(--layout-horizontal);
133 -webkit-margin-end: 24px; 133 -webkit-margin-end: 24px;
134 overflow: hidden; 134 overflow: hidden;
135 transition: opacity 150ms; 135 transition: opacity 150ms;
136 } 136 }
137 137
138 :host([grouped-range=0]) #grouped-nav-container { 138 :host([grouped-range="0"]) #grouped-nav-container {
139 opacity: 0; 139 opacity: 0;
140 pointer-events: none; 140 pointer-events: none;
141 } 141 }
142 142
143 #grouped-date { 143 #grouped-date {
144 flex: 0 1 auto; 144 flex: 0 1 auto;
145 opacity: 0.7; 145 opacity: 0.7;
146 overflow: hidden; 146 overflow: hidden;
147 text-align: right; 147 text-align: right;
148 text-overflow: ellipsis; 148 text-overflow: ellipsis;
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 class="rtl-reversible"></paper-icon-button> 202 class="rtl-reversible"></paper-icon-button>
203 <paper-icon-button icon="hardware:keyboard-arrow-right" 203 <paper-icon-button icon="hardware:keyboard-arrow-right"
204 alt="$i18n{rangeNext}" title="$i18n{rangeNext}" 204 alt="$i18n{rangeNext}" title="$i18n{rangeNext}"
205 class="rtl-reversible"></paper-icon-button> 205 class="rtl-reversible"></paper-icon-button>
206 </div> 206 </div>
207 </div> 207 </div>
208 </template> 208 </template>
209 </template> 209 </template>
210 <script src="chrome://history/history_toolbar.js"></script> 210 <script src="chrome://history/history_toolbar.js"></script>
211 </dom-module> 211 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698