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

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

Issue 2649483002: MD Downloads/History: use the Chromium-bundled versions of node and node_modules (Closed)
Patch Set: fix no node on path Created 3 years, 11 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) 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 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 box-shadow: var(--shadow-elevation-8dp_-_box-shadow); 238 box-shadow: var(--shadow-elevation-8dp_-_box-shadow);
239 } 239 }
240 240
241 :host([elevation="5"]) { 241 :host([elevation="5"]) {
242 box-shadow: var(--shadow-elevation-16dp_-_box-shadow); 242 box-shadow: var(--shadow-elevation-16dp_-_box-shadow);
243 } 243 }
244 244
245 </style> 245 </style>
246 </template> 246 </template>
247 </dom-module> 247 </dom-module>
248
249
250 <dom-module id="paper-button" assetpath="chrome://resources/polymer/v1_0/paper-b utton/" css-build="shadow"> 248 <dom-module id="paper-button" assetpath="chrome://resources/polymer/v1_0/paper-b utton/" css-build="shadow">
251 <template strip-whitespace=""> 249 <template strip-whitespace="">
252 <style scope="paper-button">:host { 250 <style scope="paper-button">:host {
253 display: block; 251 display: block;
254 position: relative; 252 position: relative;
255 } 253 }
256 254
257 :host([elevation="1"]) { 255 :host([elevation="1"]) {
258 box-shadow: var(--shadow-elevation-2dp_-_box-shadow); 256 box-shadow: var(--shadow-elevation-2dp_-_box-shadow);
259 } 257 }
(...skipping 757 matching lines...) Expand 10 before | Expand all | Expand 10 after
1017 :host ::content .drawer-content { 1015 :host ::content .drawer-content {
1018 height: calc(100% - 56px); 1016 height: calc(100% - 56px);
1019 overflow: auto; 1017 overflow: auto;
1020 } 1018 }
1021 </style> 1019 </style>
1022 <div id="container" on-tap="onContainerTap_"> 1020 <div id="container" on-tap="onContainerTap_">
1023 <content></content> 1021 <content></content>
1024 </div> 1022 </div>
1025 </template> 1023 </template>
1026 </dom-module> 1024 </dom-module>
1027 <dom-module id="iron-overlay-backdrop" assetpath="chrome://resources/polymer/v1_ 0/iron-overlay-behavior/" css-build="shadow"> 1025 <dom-module id="iron-overlay-backdrop" assetpath="" css-build="shadow">
1028 1026
1029 <template> 1027 <template>
1030 <style scope="iron-overlay-backdrop">:host { 1028 <style scope="iron-overlay-backdrop">:host {
1031 position: fixed; 1029 position: fixed;
1032 top: 0; 1030 top: 0;
1033 left: 0; 1031 left: 0;
1034 width: 100%; 1032 width: 100%;
1035 height: 100%; 1033 height: 100%;
1036 background-color: var(--iron-overlay-backdrop-background-color, #000); 1034 background-color: var(--iron-overlay-backdrop-background-color, #000);
1037 opacity: 0; 1035 opacity: 0;
1038 transition: opacity 0.2s; 1036 transition: opacity 0.2s;
1039 pointer-events: none; 1037 pointer-events: none;
1040 ; 1038 ;
1041 } 1039 }
1042 1040
1043 :host(.opened) { 1041 :host(.opened) {
1044 opacity: var(--iron-overlay-backdrop-opacity, 0.6); 1042 opacity: var(--iron-overlay-backdrop-opacity, 0.6);
1045 pointer-events: auto; 1043 pointer-events: auto;
1046 ; 1044 ;
1047 } 1045 }
1048 1046
1049 </style> 1047 </style>
1050 1048
1051 <content></content> 1049 <content></content>
1052 </template> 1050 </template>
1053 1051
1054 </dom-module> 1052 </dom-module>
1055 1053
1056 <script src="chrome://resources/polymer/v1_0/web-animations-js/web-animations-ne xt-lite.min.js"></script> 1054 <script src="chrome://resources/polymer/v1_0/web-animations-js/web-animations-ne xt-lite.min.js"></script>
1057
1058
1059 <dom-module id="iron-dropdown" assetpath="chrome://resources/polymer/v1_0/iron-d ropdown/" css-build="shadow"> 1055 <dom-module id="iron-dropdown" assetpath="chrome://resources/polymer/v1_0/iron-d ropdown/" css-build="shadow">
1060 <template> 1056 <template>
1061 <style scope="iron-dropdown">:host { 1057 <style scope="iron-dropdown">:host {
1062 position: fixed; 1058 position: fixed;
1063 } 1059 }
1064 1060
1065 #contentWrapper ::content > * { 1061 #contentWrapper ::content > * {
1066 overflow: auto; 1062 overflow: auto;
1067 } 1063 }
1068 1064
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
1120 1116
1121 ; 1117 ;
1122 } 1118 }
1123 1119
1124 :host(:focus) .tab-content { 1120 :host(:focus) .tab-content {
1125 opacity: 1; 1121 opacity: 1;
1126 font-weight: 700; 1122 font-weight: 700;
1127 } 1123 }
1128 1124
1129 paper-ripple { 1125 paper-ripple {
1130 color: var(--paper-tab-ink,var(--paper-yellow-a100));; 1126 color: var(--paper-tab-ink,var(--paper-yellow-a100));
1131 } 1127 }
1132 1128
1133 .tab-content > ::content > a { 1129 .tab-content > ::content > a {
1134 -ms-flex: var(--layout-flex-auto_-_-ms-flex); -webkit-flex: var(--layout-flex- auto_-_-webkit-flex); flex: var(--layout-flex-auto_-_flex); 1130 -ms-flex: var(--layout-flex-auto_-_-ms-flex); -webkit-flex: var(--layout-flex- auto_-_-webkit-flex); flex: var(--layout-flex-auto_-_flex);
1135 1131
1136 height: 100%; 1132 height: 100%;
1137 } 1133 }
1138 1134
1139 </style> 1135 </style>
1140 1136
1141 <div class="tab-content"> 1137 <div class="tab-content">
1142 <content></content> 1138 <content></content>
1143 </div> 1139 </div>
1144 </template> 1140 </template>
1145 1141
1146 </dom-module> 1142 </dom-module>
1147 <iron-iconset-svg name="paper-tabs" size="24"> 1143 <iron-iconset-svg name="paper-tabs" size="24">
1148 <svg><defs> 1144 <svg><defs>
1149 <g id="chevron-left"><path d="M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z"></p ath></g> 1145 <g id="chevron-left"><path d="M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z"></p ath></g>
1150 <g id="chevron-right"><path d="M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z">< /path></g> 1146 <g id="chevron-right"><path d="M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z">< /path></g>
1151 </defs></svg> 1147 </defs></svg>
1152 </iron-iconset-svg> 1148 </iron-iconset-svg>
1153
1154
1155 <dom-module id="paper-tabs" assetpath="chrome://resources/polymer/v1_0/paper-tab s/" css-build="shadow"> 1149 <dom-module id="paper-tabs" assetpath="chrome://resources/polymer/v1_0/paper-tab s/" css-build="shadow">
1156 <template> 1150 <template>
1157 <style scope="paper-tabs">:host { 1151 <style scope="paper-tabs">:host {
1158 display: var(--layout_-_display); 1152 display: var(--layout_-_display);
1159 -ms-flex-align: var(--layout-center_-_-ms-flex-align); -webkit-align-ite ms: var(--layout-center_-_-webkit-align-items); align-items: var(--layout-center _-_align-items); 1153 -ms-flex-align: var(--layout-center_-_-ms-flex-align); -webkit-align-ite ms: var(--layout-center_-_-webkit-align-items); align-items: var(--layout-center _-_align-items);
1160 1154
1161 height: 48px; 1155 height: 48px;
1162 font-size: 14px; 1156 font-size: 14px;
1163 font-weight: 500; 1157 font-weight: 500;
1164 overflow: hidden; 1158 overflow: hidden;
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
1227 padding: 12px; 1221 padding: 12px;
1228 margin: 0 4px; 1222 margin: 0 4px;
1229 } 1223 }
1230 1224
1231 #selectionBar { 1225 #selectionBar {
1232 position: absolute; 1226 position: absolute;
1233 height: 2px; 1227 height: 2px;
1234 bottom: 0; 1228 bottom: 0;
1235 left: 0; 1229 left: 0;
1236 right: 0; 1230 right: 0;
1237 background-color: var(--paper-tabs-selection-bar-color,var(--paper-yello w-a100));; 1231 background-color: var(--paper-tabs-selection-bar-color,var(--paper-yello w-a100));
1238 -webkit-transform: scale(0); 1232 -webkit-transform: scale(0);
1239 transform: scale(0); 1233 transform: scale(0);
1240 -webkit-transform-origin: left center; 1234 -webkit-transform-origin: left center;
1241 transform-origin: left center; 1235 transform-origin: left center;
1242 transition: -webkit-transform; 1236 transition: -webkit-transform;
1243 transition: transform; 1237 transition: transform;
1244 1238
1245 ; 1239 ;
1246 } 1240 }
1247 1241
(...skipping 26 matching lines...) Expand all
1274 <content select="*"></content> 1268 <content select="*"></content>
1275 </div> 1269 </div>
1276 </div> 1270 </div>
1277 1271
1278 <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> 1272 <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>
1279 1273
1280 </template> 1274 </template>
1281 1275
1282 </dom-module> 1276 </dom-module>
1283 </div><script src="lazy_load.crisper.js"></script></body></html> 1277 </div><script src="lazy_load.crisper.js"></script></body></html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_history/app.vulcanized.html ('k') | chrome/browser/resources/vulcanize.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698