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 3587 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3598 <content></content> | 3598 <content></content> |
3599 | 3599 |
3600 </template> | 3600 </template> |
3601 </dom-module> | 3601 </dom-module> |
3602 | 3602 |
3603 <dom-module id="history-list" assetpath="chrome://history/"> | 3603 <dom-module id="history-list" assetpath="chrome://history/"> |
3604 <template> | 3604 <template> |
3605 <style include="shared-style"> | 3605 <style include="shared-style"> |
3606 :host { | 3606 :host { |
3607 display: block; | 3607 display: block; |
3608 overflow: overlay; | 3608 overflow: auto; |
3609 } | 3609 } |
3610 | 3610 |
3611 #infinite-list { | 3611 #infinite-list { |
3612 @apply(--card-container-filter); | 3612 @apply(--card-container-filter); |
3613 } | 3613 } |
3614 | 3614 |
3615 history-item { | 3615 history-item { |
3616 --history-item-padding-side: var(--card-padding-side); | 3616 --history-item-padding-side: var(--card-padding-side); |
3617 } | 3617 } |
3618 </style> | 3618 </style> |
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3768 </div> | 3768 </div> |
3769 </iron-collapse> | 3769 </iron-collapse> |
3770 </div> | 3770 </div> |
3771 </template> | 3771 </template> |
3772 </dom-module> | 3772 </dom-module> |
3773 <dom-module id="history-synced-device-manager" assetpath="chrome://history/"> | 3773 <dom-module id="history-synced-device-manager" assetpath="chrome://history/"> |
3774 <template> | 3774 <template> |
3775 <style include="shared-style"> | 3775 <style include="shared-style"> |
3776 :host { | 3776 :host { |
3777 display: block; | 3777 display: block; |
3778 overflow: overlay; | 3778 overflow: auto; |
3779 } | 3779 } |
3780 | 3780 |
3781 #illustration { | 3781 #illustration { |
3782 background: -webkit-image-set( | 3782 background: -webkit-image-set( |
3783 url("chrome://history/images/100/sign_in_promo.png") 1x, | 3783 url("chrome://history/images/100/sign_in_promo.png") 1x, |
3784 url("chrome://history/images/200/sign_in_promo.png") 2x) | 3784 url("chrome://history/images/200/sign_in_promo.png") 2x) |
3785 no-repeat center center; | 3785 no-repeat center center; |
3786 height: 222px; | 3786 height: 222px; |
3787 margin-top: 100px; | 3787 margin-top: 100px; |
3788 width: 594px; | 3788 width: 594px; |
(...skipping 236 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=""> | 4025 <history-side-bar id="drawer-side-bar" selected-page="[[selectedPage_]]"
route="[[route_]]" show-footer="[[showSidebarFooter]]" drawer=""> |
4026 </history-side-bar> | 4026 </history-side-bar> |
4027 </app-drawer> | 4027 </app-drawer> |
4028 </template> | 4028 </template> |
4029 | 4029 |
4030 <iron-media-query query="(max-width: 1023px)" query-matches="{{hasDrawer_}}"
> | 4030 <iron-media-query query="(max-width: 1023px)" query-matches="{{hasDrawer_}}"
> |
4031 </iron-media-query> | 4031 </iron-media-query> |
4032 </template> | 4032 </template> |
4033 </dom-module> | 4033 </dom-module> |
4034 <script src="app.crisper.js"></script></body></html> | 4034 <script src="app.crisper.js"></script></body></html> |
OLD | NEW |