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

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

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

Powered by Google App Engine
This is Rietveld 408576698