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

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

Issue 3010683002: Update Polymer components. (Closed)
Patch Set: Rebase Created 3 years, 4 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 2b795a018dcb316ceb7e05aaedf1a5cbcbce601a..3eb0024e84a39264c2024774b54a3d2cd69b119a 100644
--- a/third_party/polymer/components/paper-input/paper-input.html
+++ b/third_party/polymer/components/paper-input/paper-input.html
@@ -82,6 +82,15 @@ style this element.
display: none !important;
}
+ input::-webkit-outer-spin-button,
+ input::-webkit-inner-spin-button {
+ @apply(--paper-input-container-input-webkit-spinner);
+ }
+
+ input::-webkit-clear-button {
+ @apply(--paper-input-container-input-webkit-clear);
+ }
+
input::-webkit-input-placeholder {
color: var(--paper-input-container-color, --secondary-text-color);
}
@@ -94,6 +103,10 @@ style this element.
color: var(--paper-input-container-color, --secondary-text-color);
}
+ input::-ms-clear {
+ @apply(--paper-input-container-ms-clear);
+ }
+
input:-ms-input-placeholder {
color: var(--paper-input-container-color, --secondary-text-color);
}

Powered by Google App Engine
This is Rietveld 408576698