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

Side by Side Diff: third_party/polymer/v1_0/components-chromium/paper-input/paper-input.html

Issue 1633603004: Add script to remove prefixed CSS from third_party/polymer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add missing files Created 3 years, 9 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 <!-- 1 <!--
2 @license 2 @license
3 Copyright (c) 2015 The Polymer Project Authors. All rights reserved. 3 Copyright (c) 2015 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 --><html><head><link rel="import" href="../polymer/polymer.html"> 9 --><html><head><link rel="import" href="../polymer/polymer.html">
10 <link rel="import" href="../iron-form-element-behavior/iron-form-element-behavio r.html"> 10 <link rel="import" href="../iron-form-element-behavior/iron-form-element-behavio r.html">
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 } 73 }
74 74
75 :host([focused]) { 75 :host([focused]) {
76 outline: none; 76 outline: none;
77 } 77 }
78 78
79 :host([hidden]) { 79 :host([hidden]) {
80 display: none !important; 80 display: none !important;
81 } 81 }
82 82
83 input::-webkit-input-placeholder {
84 color: var(--paper-input-container-color, --secondary-text-color); 83 color: var(--paper-input-container-color, --secondary-text-color);
85 } 84 }
86 85
87 input:-moz-placeholder {
88 color: var(--paper-input-container-color, --secondary-text-color);
89 }
90 86
91 input::-moz-placeholder {
92 color: var(--paper-input-container-color, --secondary-text-color);
93 }
94 87
95 input:-ms-input-placeholder {
96 color: var(--paper-input-container-color, --secondary-text-color);
97 }
98 88
99 label { 89 label {
100 pointer-events: none; 90 pointer-events: none;
101 } 91 }
102 </style> 92 </style>
103 93
104 <paper-input-container no-label-float="[[noLabelFloat]]" always-float-label= "[[_computeAlwaysFloatLabel(alwaysFloatLabel,placeholder)]]" auto-validate$="[[a utoValidate]]" disabled$="[[disabled]]" invalid="[[invalid]]"> 94 <paper-input-container no-label-float="[[noLabelFloat]]" always-float-label= "[[_computeAlwaysFloatLabel(alwaysFloatLabel,placeholder)]]" auto-validate$="[[a utoValidate]]" disabled$="[[disabled]]" invalid="[[invalid]]">
105 95
106 <content select="[prefix]"></content> 96 <content select="[prefix]"></content>
107 97
108 <label hidden$="[[!label]]" aria-hidden="true" for="input">[[label]]</labe l> 98 <label hidden$="[[!label]]" aria-hidden="true" for="input">[[label]]</labe l>
109 99
110 <input is="iron-input" id="input" aria-labelledby$="[[_ariaLabelledBy]]" a ria-describedby$="[[_ariaDescribedBy]]" disabled$="[[disabled]]" title$="[[title ]]" bind-value="{{value}}" invalid="{{invalid}}" prevent-invalid-input="[[preven tInvalidInput]]" allowed-pattern="[[allowedPattern]]" validator="[[validator]]" type$="[[type]]" pattern$="[[pattern]]" required$="[[required]]" autocomplete$=" [[autocomplete]]" autofocus$="[[autofocus]]" inputmode$="[[inputmode]]" minlengt h$="[[minlength]]" maxlength$="[[maxlength]]" min$="[[min]]" max$="[[max]]" step $="[[step]]" name$="[[name]]" placeholder$="[[placeholder]]" readonly$="[[readon ly]]" list$="[[list]]" size$="[[size]]" autocapitalize$="[[autocapitalize]]" aut ocorrect$="[[autocorrect]]" on-change="_onChange" tabindex$="[[tabindex]]" autos ave$="[[autosave]]" results$="[[results]]" accept$="[[accept]]" multiple$="[[mul tiple]]"> 100 <input is="iron-input" id="input" aria-labelledby$="[[_ariaLabelledBy]]" a ria-describedby$="[[_ariaDescribedBy]]" disabled$="[[disabled]]" title$="[[title ]]" bind-value="{{value}}" invalid="{{invalid}}" prevent-invalid-input="[[preven tInvalidInput]]" allowed-pattern="[[allowedPattern]]" validator="[[validator]]" type$="[[type]]" pattern$="[[pattern]]" required$="[[required]]" autocomplete$=" [[autocomplete]]" autofocus$="[[autofocus]]" inputmode$="[[inputmode]]" minlengt h$="[[minlength]]" maxlength$="[[maxlength]]" min$="[[min]]" max$="[[max]]" step $="[[step]]" name$="[[name]]" placeholder$="[[placeholder]]" readonly$="[[readon ly]]" list$="[[list]]" size$="[[size]]" autocapitalize$="[[autocapitalize]]" aut ocorrect$="[[autocorrect]]" on-change="_onChange" tabindex$="[[tabindex]]" autos ave$="[[autosave]]" results$="[[results]]" accept$="[[accept]]" multiple$="[[mul tiple]]">
111 101
112 <content select="[suffix]"></content> 102 <content select="[suffix]"></content>
113 103
114 <template is="dom-if" if="[[errorMessage]]"> 104 <template is="dom-if" if="[[errorMessage]]">
115 <paper-input-error aria-live="assertive">[[errorMessage]]</paper-input-e rror> 105 <paper-input-error aria-live="assertive">[[errorMessage]]</paper-input-e rror>
116 </template> 106 </template>
117 107
118 <template is="dom-if" if="[[charCounter]]"> 108 <template is="dom-if" if="[[charCounter]]">
119 <paper-input-char-counter></paper-input-char-counter> 109 <paper-input-char-counter></paper-input-char-counter>
120 </template> 110 </template>
121 111
122 </paper-input-container> 112 </paper-input-container>
123 </template> 113 </template>
124 </dom-module> 114 </dom-module>
125 115
126 <script src="paper-input-extracted.js"></script></body></html> 116 <script src="paper-input-extracted.js"></script></body></html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698