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

Side by Side Diff: chrome/browser/resources/md_downloads/vulcanized.html

Issue 2089563002: [Polymer] update polymer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: polymer update Created 4 years, 6 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 <!DOCTYPE html><html dir="$i18n{textdirection}" lang="$i18n{language}"><head><!- - 1 <!DOCTYPE html><html dir="$i18n{textdirection}" lang="$i18n{language}"><head><!- -
2 @license 2 @license
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
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
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
9 --><!--
10 @license
3 Copyright (c) 2016 The Polymer Project Authors. All rights reserved. 11 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 12 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 13 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 14 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 15 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 16 subject to an additional IP rights grant found at http://polymer.github.io/PATEN TS.txt
9 --><!-- 17 --><!--
10 @license 18 @license
11 Copyright (c) 2015 The Polymer Project Authors. All rights reserved. 19 Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
12 This code may only be used under the BSD style license found at http://polymer.g ithub.io/LICENSE.txt 20 This code may only be used under the BSD style license found at http://polymer.g ithub.io/LICENSE.txt
(...skipping 450 matching lines...) Expand 10 before | Expand all | Expand 10 after
463 height: var(--iron-icon-height, 24px); 471 height: var(--iron-icon-height, 24px);
464 } 472 }
465 </style> 473 </style>
466 474
467 <template> 475 <template>
468 </template> 476 </template>
469 477
470 </dom-module> 478 </dom-module>
471 <dom-module id="paper-ripple" assetpath="chrome://resources/polymer/v1_0/paper-r ipple/"> 479 <dom-module id="paper-ripple" assetpath="chrome://resources/polymer/v1_0/paper-r ipple/">
472 480
473
474
475 <template> 481 <template>
476 <style> 482 <style>
477 :host { 483 :host {
478 display: block; 484 display: block;
479 position: absolute; 485 position: absolute;
480 border-radius: inherit; 486 border-radius: inherit;
481 overflow: hidden; 487 overflow: hidden;
482 top: 0; 488 top: 0;
483 left: 0; 489 left: 0;
484 right: 0; 490 right: 0;
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
713 outline: none; 719 outline: none;
714 width: 24px; 720 width: 24px;
715 height: 24px; 721 height: 24px;
716 background: none; 722 background: none;
717 margin: 0; 723 margin: 0;
718 border: none; 724 border: none;
719 padding: 0; 725 padding: 0;
720 726
721 position: relative; 727 position: relative;
722 cursor: pointer; 728 cursor: pointer;
729
730 /* NOTE: Both values are needed, since some phones require the value to be `transparent`. */
723 -webkit-tap-highlight-color: rgba(0, 0, 0, 0); 731 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
732 -webkit-tap-highlight-color: transparent;
724 } 733 }
725 734
726 :host([disabled]) { 735 :host([disabled]) {
727 color: #9b9b9b; 736 color: #9b9b9b;
728 pointer-events: none; 737 pointer-events: none;
729 cursor: auto; 738 cursor: auto;
730 } 739 }
731 740
732 paper-ripple { 741 paper-ripple {
733 opacity: 0.6; 742 opacity: 0.6;
(...skipping 1330 matching lines...) Expand 10 before | Expand all | Expand 10 after
2064 2073
2065 </dom-module> 2074 </dom-module>
2066 <dom-module id="paper-icon-button" assetpath="chrome://resources/polymer/v1_0/pa per-icon-button/"> 2075 <dom-module id="paper-icon-button" assetpath="chrome://resources/polymer/v1_0/pa per-icon-button/">
2067 <template strip-whitespace=""> 2076 <template strip-whitespace="">
2068 <style> 2077 <style>
2069 :host { 2078 :host {
2070 display: inline-block; 2079 display: inline-block;
2071 position: relative; 2080 position: relative;
2072 padding: 8px; 2081 padding: 8px;
2073 outline: none; 2082 outline: none;
2074 -webkit-tap-highlight-color: rgba(0,0,0,0);
2075 -webkit-user-select: none; 2083 -webkit-user-select: none;
2076 -moz-user-select: none; 2084 -moz-user-select: none;
2077 -ms-user-select: none; 2085 -ms-user-select: none;
2078 user-select: none; 2086 user-select: none;
2079 cursor: pointer; 2087 cursor: pointer;
2080 z-index: 0; 2088 z-index: 0;
2081 line-height: 1; 2089 line-height: 1;
2082 2090
2083 width: 40px; 2091 width: 40px;
2084 height: 40px; 2092 height: 40px;
2085 2093
2094 /* NOTE: Both values are needed, since some phones require the value to be `transparent`. */
2095 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
2096 -webkit-tap-highlight-color: transparent;
2097
2086 /* Because of polymer/2558, this style has lower specificity than * */ 2098 /* Because of polymer/2558, this style has lower specificity than * */
2087 box-sizing: border-box !important; 2099 box-sizing: border-box !important;
2088 2100
2089 @apply(--paper-icon-button); 2101 @apply(--paper-icon-button);
2090 } 2102 }
2091 2103
2092 :host #ink { 2104 :host #ink {
2093 color: var(--paper-icon-button-ink-color, --primary-text-color); 2105 color: var(--paper-icon-button-ink-color, --primary-text-color);
2094 opacity: 0.6; 2106 opacity: 0.6;
2095 } 2107 }
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
2178 display: inline-block; 2190 display: inline-block;
2179 } 2191 }
2180 2192
2181 :host([disabled]) { 2193 :host([disabled]) {
2182 pointer-events: none; 2194 pointer-events: none;
2183 opacity: 0.33; 2195 opacity: 0.33;
2184 2196
2185 @apply(--paper-input-container-disabled); 2197 @apply(--paper-input-container-disabled);
2186 } 2198 }
2187 2199
2200 :host([hidden]) {
2201 display: none !important;
2202 }
2203
2188 .floated-label-placeholder { 2204 .floated-label-placeholder {
2189 @apply(--paper-font-caption); 2205 @apply(--paper-font-caption);
2190 } 2206 }
2191 2207
2192 .underline { 2208 .underline {
2193 position: relative; 2209 position: relative;
2194 } 2210 }
2195 2211
2196 .focused-line { 2212 .focused-line {
2197 @apply(--layout-fit); 2213 @apply(--layout-fit);
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
2367 .add-on-content.is-invalid ::content * { 2383 .add-on-content.is-invalid ::content * {
2368 color: var(--paper-input-container-invalid-color, --error-color); 2384 color: var(--paper-input-container-invalid-color, --error-color);
2369 } 2385 }
2370 2386
2371 .add-on-content.is-highlighted ::content * { 2387 .add-on-content.is-highlighted ::content * {
2372 color: var(--paper-input-container-focus-color, --primary-color); 2388 color: var(--paper-input-container-focus-color, --primary-color);
2373 } 2389 }
2374 </style> 2390 </style>
2375 2391
2376 <template is="dom-if" if="[[!noLabelFloat]]"> 2392 <template is="dom-if" if="[[!noLabelFloat]]">
2377 <div class="floated-label-placeholder">&nbsp;</div> 2393 <div class="floated-label-placeholder" aria-hidden="true">&nbsp;</div>
2378 </template> 2394 </template>
2379 2395
2380 <div class$="[[_computeInputContentClass(noLabelFloat,alwaysFloatLabel,focus ed,invalid,_inputHasContent)]]"> 2396 <div class$="[[_computeInputContentClass(noLabelFloat,alwaysFloatLabel,focus ed,invalid,_inputHasContent)]]">
2381 <content select="[prefix]" id="prefix"></content> 2397 <content select="[prefix]" id="prefix"></content>
2382 2398
2383 <div class="label-and-input-container" id="labelAndInputContainer"> 2399 <div class="label-and-input-container" id="labelAndInputContainer">
2384 <content select=":not([add-on]):not([prefix]):not([suffix])"></content> 2400 <content select=":not([add-on]):not([prefix]):not([suffix])"></content>
2385 </div> 2401 </div>
2386 2402
2387 <content select="[suffix]"></content> 2403 <content select="[suffix]"></content>
(...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after
2760 <if expr="is_macosx"> 2776 <if expr="is_macosx">
2761 <command id="undo-command" shortcut="Meta-U+005A"></command> 2777 <command id="undo-command" shortcut="Meta-U+005A"></command>
2762 <command id="find-command" shortcut="Meta-U+0046"></command> 2778 <command id="find-command" shortcut="Meta-U+0046"></command>
2763 </if> 2779 </if>
2764 <if expr="not is_macosx"> 2780 <if expr="not is_macosx">
2765 <command id="undo-command" shortcut="Ctrl-U+005A"></command> 2781 <command id="undo-command" shortcut="Ctrl-U+005A"></command>
2766 <command id="find-command" shortcut="Ctrl-U+0046"></command> 2782 <command id="find-command" shortcut="Ctrl-U+0046"></command>
2767 </if> 2783 </if>
2768 <link rel="import" href="chrome://resources/html/polymer.html"> 2784 <link rel="import" href="chrome://resources/html/polymer.html">
2769 <script src="crisper.js"></script></body></html> 2785 <script src="crisper.js"></script></body></html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698