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

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

Issue 2073703002: MD History: Simplify flex layout in <history-list> (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix height of #main-container 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/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/icons.html">
11 <link rel="import" href="chrome://history/shared_style.html"> 11 <link rel="import" href="chrome://history/shared_style.html">
12 12
13 <dom-module id="history-toolbar"> 13 <dom-module id="history-toolbar">
14 <template> 14 <template>
15 <style include="shared-style"> 15 <style include="shared-style">
16 :host { 16 :host {
17 color: #fff; 17 color: #fff;
18 display: block;
18 transition: background-color 150ms; 19 transition: background-color 150ms;
19 width: 100%; 20 width: 100%;
20 } 21 }
21 22
22 cr-toolbar, 23 cr-toolbar,
23 #overlay-buttons, 24 #overlay-buttons,
24 #overlay-wrapper, 25 #overlay-wrapper,
25 #toolbar-container { 26 #toolbar-container {
26 @apply(--layout-center); 27 @apply(--layout-center);
27 @apply(--layout-horizontal); 28 @apply(--layout-horizontal);
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 class="rtl-reversible"></paper-icon-button> 154 class="rtl-reversible"></paper-icon-button>
154 <paper-icon-button icon="cr:chevron-right" 155 <paper-icon-button icon="cr:chevron-right"
155 alt="$i18n{rangeNext}" title="$i18n{rangeNext}" 156 alt="$i18n{rangeNext}" title="$i18n{rangeNext}"
156 class="rtl-reversible"></paper-icon-button> 157 class="rtl-reversible"></paper-icon-button>
157 </div> 158 </div>
158 </div> 159 </div>
159 </template> 160 </template>
160 </template> 161 </template>
161 <script src="chrome://history/history_toolbar.js"></script> 162 <script src="chrome://history/history_toolbar.js"></script>
162 </dom-module> 163 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698