| 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/html/cr/ui/focus_grid.html"> | 2 <link rel="import" href="chrome://resources/html/cr/ui/focus_grid.html"> |
| 3 <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/iron-list/iron-list.htm
l"> |
| 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-item/paper-item.h
tml"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-item/paper-item.h
tml"> |
| 6 <link rel="import" href="chrome://resources/cr_elements/cr_lazy_render/cr_lazy_r
ender.html"> | 6 <link rel="import" href="chrome://resources/cr_elements/cr_lazy_render/cr_lazy_r
ender.html"> |
| 7 <link rel="import" href="chrome://resources/cr_elements/cr_shared_menu/cr_shared
_menu.html"> | 7 <link rel="import" href="chrome://resources/cr_elements/cr_shared_menu/cr_shared
_menu.html"> |
| 8 <link rel="import" href="chrome://resources/cr_elements/shared_style_css.html"> | 8 <link rel="import" href="chrome://resources/cr_elements/shared_style_css.html"> |
| 9 <link rel="import" href="chrome://history/shared_style.html"> | 9 <link rel="import" href="chrome://history/shared_style.html"> |
| 10 <link rel="import" href="chrome://history/synced_device_card.html"> | 10 <link rel="import" href="chrome://history/synced_device_card.html"> |
| 11 | 11 |
| 12 <dom-module id="history-synced-device-manager"> | 12 <dom-module id="history-synced-device-manager"> |
| 13 <template> | 13 <template> |
| 14 <style include="shared-style cr-shared-style"> | 14 <style include="shared-style cr-shared-style"> |
| 15 :host { | 15 :host { |
| 16 display: block; | 16 display: block; |
| 17 overflow: auto; | 17 overflow: auto; |
| 18 } | 18 } |
| 19 | 19 |
| 20 #illustration { | 20 #illustration { |
| 21 background: -webkit-image-set( | 21 background: -webkit-image-set( |
| 22 url(chrome://history/images/100/sign_in_promo.png) 1x, | 22 url(chrome://history/images/100/sign_in_promo.jpg) 1x, |
| 23 url(chrome://history/images/200/sign_in_promo.png) 2x) | 23 url(chrome://history/images/200/sign_in_promo.jpg) 2x) |
| 24 no-repeat center center; | 24 no-repeat center center; |
| 25 height: 222px; | 25 height: 222px; |
| 26 margin-top: 100px; | 26 margin-top: 100px; |
| 27 width: 594px; | 27 width: 574px; |
| 28 } | 28 } |
| 29 | 29 |
| 30 #no-synced-tabs { | 30 #no-synced-tabs { |
| 31 height: 100%; | 31 height: 100%; |
| 32 } | 32 } |
| 33 | 33 |
| 34 #sign-in-guide { | 34 #sign-in-guide { |
| 35 align-items: center; | 35 align-items: center; |
| 36 display: flex; | 36 display: flex; |
| 37 flex-direction: column; | 37 flex-direction: column; |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 </paper-item> | 98 </paper-item> |
| 99 <paper-item id="menuDeleteButton" class="menu-item" | 99 <paper-item id="menuDeleteButton" class="menu-item" |
| 100 on-tap="onDeleteSessionTap_"> | 100 on-tap="onDeleteSessionTap_"> |
| 101 $i18n{deleteSession} | 101 $i18n{deleteSession} |
| 102 </paper-item> | 102 </paper-item> |
| 103 </cr-shared-menu> | 103 </cr-shared-menu> |
| 104 </template> | 104 </template> |
| 105 </template> | 105 </template> |
| 106 <script src="chrome://history/synced_device_manager.js"></script> | 106 <script src="chrome://history/synced_device_manager.js"></script> |
| 107 </dom-module> | 107 </dom-module> |
| OLD | NEW |