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

Unified Diff: third_party/polymer/components/paper-input/paper-input.html

Issue 2113853002: Run bower update (Closed) Base URL: https://github.com/catapult-project/catapult@polymer10-migration
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 side-by-side diff with in-line comments
Download patch
Index: third_party/polymer/components/paper-input/paper-input.html
diff --git a/third_party/polymer/components/paper-input/paper-input.html b/third_party/polymer/components/paper-input/paper-input.html
index 13cdf97e8a6fe6fad3410cc1211ae533c465d762..075cfa68b45c096f5760fa98ff5170f7a02a066c 100644
--- a/third_party/polymer/components/paper-input/paper-input.html
+++ b/third_party/polymer/components/paper-input/paper-input.html
@@ -74,6 +74,10 @@ style this element.
display: block;
}
+ :host([hidden]) {
+ display: none !important;
+ }
+
input::-webkit-input-placeholder {
color: var(--paper-input-container-color, --secondary-text-color);
}
@@ -95,7 +99,7 @@ style this element.
<content select="[prefix]"></content>
- <label hidden$="[[!label]]">[[label]]</label>
+ <label hidden$="[[!label]]" aria-hidden="true">[[label]]</label>
<input is="iron-input" id="input"
aria-labelledby$="[[_ariaLabelledBy]]"

Powered by Google App Engine
This is Rietveld 408576698