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/cr_elements/cr_shared_menu/cr_shared
_menu.html"> | 5 <link rel="import" href="chrome://resources/cr_elements/cr_shared_menu/cr_shared
_menu.html"> |
6 <link rel="import" href="chrome://history/lazy_render.html"> | 6 <link rel="import" href="chrome://history/lazy_render.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 align-items: center; | 33 align-items: center; |
34 display: flex; | 34 display: flex; |
35 flex-direction: column; | 35 flex-direction: column; |
36 justify-content: center; | 36 justify-content: center; |
37 overflow-x: hidden; | 37 overflow-x: hidden; |
38 text-align: center; | 38 text-align: center; |
39 } | 39 } |
40 | 40 |
41 #sign-in-promo { | 41 #sign-in-promo { |
42 color: var(--primary-text-color); | 42 color: var(--primary-text-color); |
43 font-size: 28px; | 43 font-size: 215%; |
44 margin-top: 40px; | 44 margin-top: 40px; |
45 } | 45 } |
46 | 46 |
47 #sign-in-promo-desc { | 47 #sign-in-promo-desc { |
48 color: #848484; | 48 color: #848484; |
49 font-size: 16px; | 49 font-size: 123%; |
50 margin-top: 10px; | 50 margin-top: 10px; |
51 } | 51 } |
52 | 52 |
53 #sign-in-button { | 53 #sign-in-button { |
54 background-color: var(--google-blue-500); | 54 background-color: var(--google-blue-500); |
55 color: white; | 55 color: white; |
56 font-size: 14px; | 56 font-weight: 500; |
57 margin-top: 24px; | 57 margin-top: 24px; |
| 58 padding-left: 12px; |
| 59 padding-right: 12px; |
58 } | 60 } |
59 | 61 |
60 #synced-device-list { | 62 #synced-device-list { |
61 padding-top: var(--first-card-padding-top); | 63 padding-top: var(--first-card-padding-top); |
62 } | 64 } |
63 </style> | 65 </style> |
64 <div id="synced-device-list" hidden="[[!syncedDevices_.length]]"> | 66 <div id="synced-device-list" hidden="[[!syncedDevices_.length]]"> |
65 <template is="dom-repeat" items="[[syncedDevices_]]" as="syncedDevice"> | 67 <template is="dom-repeat" items="[[syncedDevices_]]" as="syncedDevice"> |
66 <history-synced-device-card device="[[syncedDevice.device]]" | 68 <history-synced-device-card device="[[syncedDevice.device]]" |
67 last-update-time="[[syncedDevice.lastUpdateTime]]" | 69 last-update-time="[[syncedDevice.lastUpdateTime]]" |
(...skipping 28 matching lines...) Expand all Loading... |
96 </paper-item> | 98 </paper-item> |
97 <paper-item id="menuDeleteButton" class="menu-item" | 99 <paper-item id="menuDeleteButton" class="menu-item" |
98 on-tap="onDeleteSessionTap_"> | 100 on-tap="onDeleteSessionTap_"> |
99 $i18n{deleteSession} | 101 $i18n{deleteSession} |
100 </paper-item> | 102 </paper-item> |
101 </cr-shared-menu> | 103 </cr-shared-menu> |
102 </template> | 104 </template> |
103 </template> | 105 </template> |
104 <script src="chrome://history/synced_device_manager.js"></script> | 106 <script src="chrome://history/synced_device_manager.js"></script> |
105 </dom-module> | 107 </dom-module> |
OLD | NEW |