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

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

Issue 1729263005: MD History: Display synced tabs history. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mdh_shared_styles
Patch Set: address_comments Created 4 years, 9 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/polymer/v1_0/polymer/polymer.html"> 1 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html">
2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-list/iron-list.htm l"> 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-list/iron-list.htm l">
3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-item/paper-item.h tml"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-item/paper-item.h tml">
4 <link rel="import" href="chrome://resources/cr_elements/cr_shared_menu/cr_shared _menu.html"> 4 <link rel="import" href="chrome://resources/cr_elements/cr_shared_menu/cr_shared _menu.html">
5 <link rel="import" href="chrome://history/constants.html"> 5 <link rel="import" href="chrome://history/constants.html">
6 <link rel="import" href="chrome://history/history_item.html"> 6 <link rel="import" href="chrome://history/history_item.html">
7 <link rel="import" href="chrome://history/shared_style.html"> 7 <link rel="import" href="chrome://history/shared_style.html">
8 8
9 <dom-module id="history-list"> 9 <dom-module id="history-list">
10 <template> 10 <template>
11 <style include="shared-style"></style> 11 <style include="shared-style"></style>
12 <style> 12 <style>
13 :host { 13 :host {
14 display: flex; 14 display: flex;
15 flex-direction: column; 15 flex-direction: column;
16 } 16 }
17 17
18 #infinite-list { 18 #infinite-list {
19 flex: 1; 19 flex: 1;
20 padding: 20px 0 0 0; 20 padding-top: var(--first-card-padding-top);
21 } 21 }
22 22
23 paper-item { 23 paper-item {
24 -webkit-user-select: none; 24 -webkit-user-select: none;
25 cursor: pointer; 25 cursor: pointer;
26 font: inherit; 26 font: inherit;
27 } 27 }
28 28
29 paper-item:hover { 29 paper-item:hover {
30 background: #eaeaea; 30 background: #eaeaea;
(...skipping 26 matching lines...) Expand all
57 <cr-shared-menu id="sharedMenu"> 57 <cr-shared-menu id="sharedMenu">
58 <paper-item i18n-content="moreFromSite" on-tap="onMoreFromSiteTap_"> 58 <paper-item i18n-content="moreFromSite" on-tap="onMoreFromSiteTap_">
59 </paper-item> 59 </paper-item>
60 <paper-item i18n-content="removeFromHistory" 60 <paper-item i18n-content="removeFromHistory"
61 on-tap="onRemoveFromHistoryTap_"> 61 on-tap="onRemoveFromHistoryTap_">
62 </paper-item> 62 </paper-item>
63 </cr-shared-menu> 63 </cr-shared-menu>
64 </template> 64 </template>
65 <script src="chrome://history/history_list.js"></script> 65 <script src="chrome://history/history_list.js"></script>
66 </dom-module> 66 </dom-module>
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_history/history_item.html ('k') | chrome/browser/resources/md_history/history_toolbar.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698