| OLD | NEW |
| 1 <html><head><!-- | 1 <html><head><!-- |
| 2 @license | 2 @license |
| 3 Copyright (c) 2014 The Polymer Project Authors. All rights reserved. | 3 Copyright (c) 2014 The Polymer Project Authors. All rights reserved. |
| 4 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE.txt | 4 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE.txt |
| 5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt | 5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt |
| 6 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS.txt | 6 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS.txt |
| 7 Code distributed by Google as part of the polymer project is also | 7 Code distributed by Google as part of the polymer project is also |
| 8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS.txt | 8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS.txt |
| 9 --><!-- | 9 --><!-- |
| 10 @license | 10 @license |
| (...skipping 3785 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3796 align-items: center; | 3796 align-items: center; |
| 3797 display: flex; | 3797 display: flex; |
| 3798 flex-direction: column; | 3798 flex-direction: column; |
| 3799 justify-content: center; | 3799 justify-content: center; |
| 3800 overflow-x: hidden; | 3800 overflow-x: hidden; |
| 3801 text-align: center; | 3801 text-align: center; |
| 3802 } | 3802 } |
| 3803 | 3803 |
| 3804 #sign-in-promo { | 3804 #sign-in-promo { |
| 3805 color: var(--primary-text-color); | 3805 color: var(--primary-text-color); |
| 3806 font-size: 28px; | 3806 font-size: 215%; |
| 3807 margin-top: 40px; | 3807 margin-top: 40px; |
| 3808 } | 3808 } |
| 3809 | 3809 |
| 3810 #sign-in-promo-desc { | 3810 #sign-in-promo-desc { |
| 3811 color: #848484; | 3811 color: #848484; |
| 3812 font-size: 16px; | 3812 font-size: 123%; |
| 3813 margin-top: 10px; | 3813 margin-top: 10px; |
| 3814 } | 3814 } |
| 3815 | 3815 |
| 3816 #sign-in-button { | 3816 #sign-in-button { |
| 3817 background-color: var(--google-blue-500); | 3817 background-color: var(--google-blue-500); |
| 3818 color: white; | 3818 color: white; |
| 3819 font-size: 14px; | 3819 font-weight: 500; |
| 3820 margin-top: 24px; | 3820 margin-top: 24px; |
| 3821 padding-left: 12px; |
| 3822 padding-right: 12px; |
| 3821 } | 3823 } |
| 3822 | 3824 |
| 3823 #synced-device-list { | 3825 #synced-device-list { |
| 3824 padding-top: var(--first-card-padding-top); | 3826 padding-top: var(--first-card-padding-top); |
| 3825 } | 3827 } |
| 3826 </style> | 3828 </style> |
| 3827 <div id="synced-device-list" hidden="[[!syncedDevices_.length]]"> | 3829 <div id="synced-device-list" hidden="[[!syncedDevices_.length]]"> |
| 3828 <template is="dom-repeat" items="[[syncedDevices_]]" as="syncedDevice"> | 3830 <template is="dom-repeat" items="[[syncedDevices_]]" as="syncedDevice"> |
| 3829 <history-synced-device-card device="[[syncedDevice.device]]" last-update
-time="[[syncedDevice.lastUpdateTime]]" tabs="[[syncedDevice.tabs]]" separator-i
ndexes="[[syncedDevice.separatorIndexes]]" search-term="[[searchTerm]]" session-
tag="[[syncedDevice.tag]]" opened="{{syncedDevice.opened}}"> | 3831 <history-synced-device-card device="[[syncedDevice.device]]" last-update
-time="[[syncedDevice.lastUpdateTime]]" tabs="[[syncedDevice.tabs]]" separator-i
ndexes="[[syncedDevice.separatorIndexes]]" search-term="[[searchTerm]]" session-
tag="[[syncedDevice.tag]]" opened="{{syncedDevice.opened}}"> |
| 3830 </history-synced-device-card> | 3832 </history-synced-device-card> |
| (...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4025 <history-side-bar id="drawer-side-bar" selected-page="[[selectedPage_]]"
route="[[route_]]" show-footer="[[showSidebarFooter]]" drawer=""> | 4027 <history-side-bar id="drawer-side-bar" selected-page="[[selectedPage_]]"
route="[[route_]]" show-footer="[[showSidebarFooter]]" drawer=""> |
| 4026 </history-side-bar> | 4028 </history-side-bar> |
| 4027 </app-drawer> | 4029 </app-drawer> |
| 4028 </template> | 4030 </template> |
| 4029 | 4031 |
| 4030 <iron-media-query query="(max-width: 1023px)" query-matches="{{hasDrawer_}}"
> | 4032 <iron-media-query query="(max-width: 1023px)" query-matches="{{hasDrawer_}}"
> |
| 4031 </iron-media-query> | 4033 </iron-media-query> |
| 4032 </template> | 4034 </template> |
| 4033 </dom-module> | 4035 </dom-module> |
| 4034 <script src="app.crisper.js"></script></body></html> | 4036 <script src="app.crisper.js"></script></body></html> |
| OLD | NEW |