OLD | NEW |
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 Loading... |
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> |
OLD | NEW |