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

Side by Side Diff: chrome/browser/resources/md_history/synced_device_card.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/paper-styles/shadow.htm l"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm l">
4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll apse.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll apse.html">
5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l">
6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout.html">
7 <link rel="import" href="chrome://resources/html/icon.html"> 7 <link rel="import" href="chrome://resources/html/icon.html">
8 <link rel="import" href="chrome://history/shared_style.html"> 8 <link rel="import" href="chrome://history/shared_style.html">
9 9
10 <dom-module id="history-synced-device-card"> 10 <dom-module id="history-synced-device-card">
11 <template> 11 <template>
12 <style include="shared-style"> 12 <style include="shared-style">
13 :host { 13 :host {
14 @apply(--layout-center); 14 @apply(--layout-center);
15 @apply(--layout-vertical); 15 @apply(--layout-vertical);
16 padding: 0 var(--card-padding-side) 20px; 16 padding: 0 var(--card-padding-side) var(--card-padding-between);
17 } 17 }
18 18
19 #card-heading { 19 #card-heading {
20 @apply(--layout-justified); 20 @apply(--layout-justified);
21 cursor: pointer; 21 cursor: pointer;
22 } 22 }
23 23
24 #icon { 24 #icon {
25 -webkit-margin-start: 20px; 25 -webkit-margin-start: 20px;
26 } 26 }
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 </template> 99 </template>
100 <div class="item-container"> 100 <div class="item-container">
101 <p on-tap="openAllTabs_" id="open-tabs">$i18n{openAll}</p> 101 <p on-tap="openAllTabs_" id="open-tabs">$i18n{openAll}</p>
102 </div> 102 </div>
103 </div> 103 </div>
104 </iron-collapse> 104 </iron-collapse>
105 </div> 105 </div>
106 </template> 106 </template>
107 <script src="chrome://history/synced_device_card.js"></script> 107 <script src="chrome://history/synced_device_card.js"></script>
108 </dom-module> 108 </dom-module>
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_history/shared_style.html ('k') | chrome/browser/ui/webui/md_history_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698