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

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

Issue 2597573002: MD History/Downloads: convert .bind(this) and function property values to use => (Closed)
Patch Set: Created 4 years 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) 2016 The Polymer Project Authors. All rights reserved. 3 Copyright (c) 2016 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 882 matching lines...) Expand 10 before | Expand all | Expand 10 after
893 } 893 }
894 894
895 .action-button, .cancel-button { 895 .action-button, .cancel-button {
896 font-weight: 500; 896 font-weight: 500;
897 } 897 }
898 898
899 [actionable] { 899 [actionable] {
900 cursor: var(--cr-actionable_-_cursor); 900 cursor: var(--cr-actionable_-_cursor);
901 } 901 }
902 902
903 button[is='paper-icon-button-light'] {
904 -webkit-margin-end: var(--cr-paper-icon-button-margin_-_-webkit-margin-end); - webkit-margin-start: var(--cr-paper-icon-button-margin_-_-webkit-margin-start);
905 background-position: center;
906 background-repeat: no-repeat;
907 background-size: var(--cr-icon-size);
908 flex-shrink: 0;
909 height: var(--cr-icon-ripple-size);
910 width: var(--cr-icon-ripple-size);
911 }
912
903 button[is='paper-icon-button-light'].subpage-arrow { 913 button[is='paper-icon-button-light'].subpage-arrow {
904 background-image: url("chrome://resources/images/arrow_right.svg"); 914 background-image: url("chrome://resources/images/arrow_right.svg");
905 } 915 }
906 916
907 button[is='paper-icon-button-light'].icon-external { 917 button[is='paper-icon-button-light'].icon-external {
908 background-image: url("chrome://resources/images/open_in_new.svg"); 918 background-image: url("chrome://resources/images/open_in_new.svg");
909 } 919 }
910 920
911 .subpage-arrow, .icon-external { 921 .subpage-arrow, .icon-external {
912 display: none; 922 display: none;
913 } 923 }
914 924
925 paper-icon-button.subpage-arrow {
926 background-image: url("chrome://resources/images/arrow_right.svg");
927 }
928
915 [actionable] :-webkit-any(.subpage-arrow, .icon-external), [actionable]:-webkit- any(.subpage-arrow, .icon-external) { 929 [actionable] :-webkit-any(.subpage-arrow, .icon-external), [actionable]:-webkit- any(.subpage-arrow, .icon-external) {
916 display: block; 930 display: block;
917 } 931 }
918 932
919 [scrollable] { 933 [scrollable] {
920 border-color: transparent; 934 border-color: transparent;
921 border-style: solid; 935 border-style: solid;
922 border-width: 1px 0; 936 border-width: 1px 0;
923 overflow-y: auto; 937 overflow-y: auto;
924 } 938 }
(...skipping 518 matching lines...) Expand 10 before | Expand all | Expand 10 after
1443 <div id="selectionBar" class$="[[_computeSelectionBarClass(noBar, alignB ottom)]]" on-transitionend="_onBarTransitionEnd"></div> 1457 <div id="selectionBar" class$="[[_computeSelectionBarClass(noBar, alignB ottom)]]" on-transitionend="_onBarTransitionEnd"></div>
1444 <content select="*"></content> 1458 <content select="*"></content>
1445 </div> 1459 </div>
1446 </div> 1460 </div>
1447 1461
1448 <paper-icon-button icon="paper-tabs:chevron-right" class$="[[_computeScrollB uttonClass(_rightHidden, scrollable, hideScrollButtons)]]" on-up="_onScrollButto nUp" on-down="_onRightScrollButtonDown" tabindex="-1"></paper-icon-button> 1462 <paper-icon-button icon="paper-tabs:chevron-right" class$="[[_computeScrollB uttonClass(_rightHidden, scrollable, hideScrollButtons)]]" on-up="_onScrollButto nUp" on-down="_onRightScrollButtonDown" tabindex="-1"></paper-icon-button>
1449 1463
1450 </template> 1464 </template>
1451 1465
1452 </dom-module> 1466 </dom-module>
1453 </div><script src="lazy_load.crisper.js"></script></body></html> 1467 </div><script src="lazy_load.crisper.js"></script></body></html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698