Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(13)

Side by Side Diff: chrome/browser/resources/md_history/app.vulcanized.html

Issue 2371383003: MD Downloads/History: make javascript uglier and more compact (Closed)
Patch Set: merge Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 2818 matching lines...) Expand 10 before | Expand all | Expand 10 after
2829 2829
2830 [scrollable] :focus { 2830 [scrollable] :focus {
2831 ; 2831 ;
2832 background-color: var(--cr-selectable-focus_-_background-color); outline : var(--cr-selectable-focus_-_outline); 2832 background-color: var(--cr-selectable-focus_-_background-color); outline : var(--cr-selectable-focus_-_outline);
2833 } 2833 }
2834 2834
2835 [scrollable] iron-list > * { 2835 [scrollable] iron-list > * {
2836 cursor: var(--cr-actionable_-_cursor); 2836 cursor: var(--cr-actionable_-_cursor);
2837 } 2837 }
2838 2838
2839 .scroll-container {
2840 display: flex;
2841 flex-direction: column;
2842 min-height: 1px;
2843 }
2844
2839 [selectable]:focus, [selectable] > :focus { 2845 [selectable]:focus, [selectable] > :focus {
2840 background-color: var(--cr-selectable-focus_-_background-color); outline: var( --cr-selectable-focus_-_outline); 2846 background-color: var(--cr-selectable-focus_-_background-color); outline: var( --cr-selectable-focus_-_outline);
2841 } 2847 }
2842 2848
2843 [selectable] > * { 2849 [selectable] > * {
2844 cursor: var(--cr-actionable_-_cursor); 2850 cursor: var(--cr-actionable_-_cursor);
2845 } 2851 }
2846 2852
2847 </style> 2853 </style>
2848 </template> 2854 </template>
(...skipping 652 matching lines...) Expand 10 before | Expand all | Expand 10 after
3501 3507
3502 [scrollable] :focus { 3508 [scrollable] :focus {
3503 ; 3509 ;
3504 background-color: var(--cr-selectable-focus_-_background-color); outline : var(--cr-selectable-focus_-_outline); 3510 background-color: var(--cr-selectable-focus_-_background-color); outline : var(--cr-selectable-focus_-_outline);
3505 } 3511 }
3506 3512
3507 [scrollable] iron-list > * { 3513 [scrollable] iron-list > * {
3508 cursor: var(--cr-actionable_-_cursor); 3514 cursor: var(--cr-actionable_-_cursor);
3509 } 3515 }
3510 3516
3517 .scroll-container {
3518 display: flex;
3519 flex-direction: column;
3520 min-height: 1px;
3521 }
3522
3511 [selectable]:focus, [selectable] > :focus { 3523 [selectable]:focus, [selectable] > :focus {
3512 background-color: var(--cr-selectable-focus_-_background-color); outline: var( --cr-selectable-focus_-_outline); 3524 background-color: var(--cr-selectable-focus_-_background-color); outline: var( --cr-selectable-focus_-_outline);
3513 } 3525 }
3514 3526
3515 [selectable] > * { 3527 [selectable] > * {
3516 cursor: var(--cr-actionable_-_cursor); 3528 cursor: var(--cr-actionable_-_cursor);
3517 } 3529 }
3518 3530
3519 :host { 3531 :host {
3520 display: block; 3532 display: block;
(...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after
3937 <history-side-bar id="drawer-side-bar" selected-page="{{selectedPage_}}" show-footer="[[showSidebarFooter]]" drawer=""> 3949 <history-side-bar id="drawer-side-bar" selected-page="{{selectedPage_}}" show-footer="[[showSidebarFooter]]" drawer="">
3938 </history-side-bar> 3950 </history-side-bar>
3939 </app-drawer> 3951 </app-drawer>
3940 </template> 3952 </template>
3941 3953
3942 <iron-media-query query="(max-width: 1023px)" query-matches="{{hasDrawer_}}" > 3954 <iron-media-query query="(max-width: 1023px)" query-matches="{{hasDrawer_}}" >
3943 </iron-media-query> 3955 </iron-media-query>
3944 </template> 3956 </template>
3945 </dom-module> 3957 </dom-module>
3946 <script src="app.crisper.js"></script></body></html> 3958 <script src="app.crisper.js"></script></body></html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_history/app.crisper.js ('k') | chrome/browser/resources/md_history/lazy_load.crisper.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698