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

Unified Diff: third_party/polymer/v1_0/components-chromium/paper-input/paper-input-container.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 side-by-side diff with in-line comments
Download patch
Index: third_party/polymer/v1_0/components-chromium/paper-input/paper-input-container.html
diff --git a/third_party/polymer/v1_0/components-chromium/paper-input/paper-input-container.html b/third_party/polymer/v1_0/components-chromium/paper-input/paper-input-container.html
index a51999568a1c0e09868cf1f114b238fc7ba927c2..40177d8f5ac9adc2fd2614f60a9fb47c331a39cf 100644
--- a/third_party/polymer/v1_0/components-chromium/paper-input/paper-input-container.html
+++ b/third_party/polymer/v1_0/components-chromium/paper-input/paper-input-container.html
@@ -88,7 +88,6 @@ Custom property | Description | Default
`--paper-input-container-label-focus` | Mixin applied to the label when the input is focused | `{}`
`--paper-input-container-label-floating` | Mixin applied to the label when floating | `{}`
`--paper-input-container-input` | Mixin applied to the input | `{}`
-`--paper-input-container-input-webkit-spinner` | Mixin applied to the webkit spinner | `{}`
`--paper-input-container-underline` | Mixin applied to the underline | `{}`
`--paper-input-container-underline-focus` | Mixin applied to the underline when the input is focused | `{}`
`--paper-input-container-underline-disabled` | Mixin applied to the underline when the input is disabled | `{}`
@@ -138,18 +137,14 @@ This element is `display:block` by default, but you can set the `inline` attribu
border-bottom: 2px solid var(--paper-input-container-focus-color, --primary-color);
- -webkit-transform-origin: center center;
transform-origin: center center;
- -webkit-transform: scale3d(0,1,1);
transform: scale3d(0,1,1);
@apply(--paper-input-container-underline-focus);
}
.underline.is-highlighted .focused-line {
- -webkit-transform: none;
transform: none;
- -webkit-transition: -webkit-transform 0.25s;
transition: transform 0.25s;
@apply(--paper-transition-easing);
@@ -157,9 +152,7 @@ This element is `display:block` by default, but you can set the `inline` attribu
.underline.is-invalid .focused-line {
border-color: var(--paper-input-container-invalid-color, --error-color);
- -webkit-transform: none;
transform: none;
- -webkit-transition: -webkit-transform 0.25s;
transition: transform 0.25s;
@apply(--paper-transition-easing);
@@ -204,9 +197,7 @@ This element is `display:block` by default, but you can set the `inline` attribu
width: 100%;
font: inherit;
color: var(--paper-input-container-color, --secondary-text-color);
- -webkit-transition: -webkit-transform 0.25s, width 0.25s;
transition: transform 0.25s, width 0.25s;
- -webkit-transform-origin: left top;
transform-origin: left top;
@apply(--paper-font-common-nowrap);
@@ -217,7 +208,6 @@ This element is `display:block` by default, but you can set the `inline` attribu
.input-content.label-is-floating ::content label,
.input-content.label-is-floating ::content .paper-input-label {
- -webkit-transform: translateY(-75%) scale(0.75);
transform: translateY(-75%) scale(0.75);
/* Since we scale to 75/100 of the size, we actually have 100/75 of the
@@ -233,7 +223,6 @@ This element is `display:block` by default, but you can set the `inline` attribu
* actually makes
* it wider on the right side, not left side, as you would expect in RTL */
width: 100%;
- -webkit-transform-origin: right top;
transform-origin: right top;
}
@@ -275,9 +264,6 @@ This element is `display:block` by default, but you can set the `inline` attribu
@apply(--paper-input-container-input);
}
- .input-content ::content input::-webkit-outer-spin-button,
- .input-content ::content input::-webkit-inner-spin-button {
- @apply(--paper-input-container-input-webkit-spinner);
}
::content [prefix] {

Powered by Google App Engine
This is Rietveld 408576698