| 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/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-button/paper-butt
on.html"> | 3 <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-item/paper-item.h
tml"> | 4 <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-menu/paper-menu.h
tml"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-menu/paper-menu.h
tml"> |
| 6 <link rel="import" href="chrome://resources/html/cr/ui/position_util.html"> | 6 <link rel="import" href="chrome://resources/html/cr/ui/position_util.html"> |
| 7 <link rel="import" href="chrome://history/shared_style.html"> | 7 <link rel="import" href="chrome://history/shared_style.html"> |
| 8 <link rel="import" href="chrome://history/synced_device_card.html"> | 8 <link rel="import" href="chrome://history/synced_device_card.html"> |
| 9 | 9 |
| 10 <dom-module id="history-synced-device-manager"> | 10 <dom-module id="history-synced-device-manager"> |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 #sign-in-guide { | 33 #sign-in-guide { |
| 34 align-items: center; | 34 align-items: center; |
| 35 display: flex; | 35 display: flex; |
| 36 flex-direction: column; | 36 flex-direction: column; |
| 37 justify-content: center; | 37 justify-content: center; |
| 38 overflow-x: hidden; | 38 overflow-x: hidden; |
| 39 text-align: center; | 39 text-align: center; |
| 40 } | 40 } |
| 41 | 41 |
| 42 #sign-in-promo { | 42 #sign-in-promo { |
| 43 color: #333; | 43 color: var(--primary-text-color); |
| 44 font-size: 28px; | 44 font-size: 28px; |
| 45 margin-top: 40px; | 45 margin-top: 40px; |
| 46 } | 46 } |
| 47 | 47 |
| 48 #sign-in-promo-desc { | 48 #sign-in-promo-desc { |
| 49 color: #848484; | 49 color: #848484; |
| 50 font-size: 16px; | 50 font-size: 16px; |
| 51 margin-top: 10px; | 51 margin-top: 10px; |
| 52 } | 52 } |
| 53 | 53 |
| (...skipping 26 matching lines...) Expand all Loading... |
| 80 <div id="illustration"></div> | 80 <div id="illustration"></div> |
| 81 <div id="sign-in-promo">$i18n{signInPromo}</div> | 81 <div id="sign-in-promo">$i18n{signInPromo}</div> |
| 82 <div id="sign-in-promo-desc">$i18n{signInPromoDesc}</div> | 82 <div id="sign-in-promo-desc">$i18n{signInPromoDesc}</div> |
| 83 <paper-button id="sign-in-button" on-tap="onSignInTap_"> | 83 <paper-button id="sign-in-button" on-tap="onSignInTap_"> |
| 84 $i18n{signInButton} | 84 $i18n{signInButton} |
| 85 </paper-button> | 85 </paper-button> |
| 86 </div> | 86 </div> |
| 87 </template> | 87 </template> |
| 88 <script src="chrome://history/synced_device_manager.js"></script> | 88 <script src="chrome://history/synced_device_manager.js"></script> |
| 89 </dom-module> | 89 </dom-module> |
| OLD | NEW |