| OLD | NEW |
| 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/paper-styles/shadow.htm
l"> | 2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm
l"> |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll
apse.html"> | 3 <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-icon/iron-icon.htm
l"> | 4 <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-icons/iron-icons.h
tml"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.h
tml"> |
| 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/util.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) 20px; |
| 17 } | 17 } |
| (...skipping 81 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 |