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

Unified Diff: third_party/polymer/v1_0/components-chromium/paper-radio-button/paper-radio-button.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-radio-button/paper-radio-button.html
diff --git a/third_party/polymer/v1_0/components-chromium/paper-radio-button/paper-radio-button.html b/third_party/polymer/v1_0/components-chromium/paper-radio-button/paper-radio-button.html
index cd15f2e182588e38403b977e89bce4e73c9fc405..b26af656c9a151815bec58d6b556bdf44acf38bc 100644
--- a/third_party/polymer/v1_0/components-chromium/paper-radio-button/paper-radio-button.html
+++ b/third_party/polymer/v1_0/components-chromium/paper-radio-button/paper-radio-button.html
@@ -88,7 +88,6 @@ In order to apply the `Roboto` font to this element, make sure you've imported `
color: var(--paper-radio-button-unchecked-ink-color, --primary-text-color);
opacity: 0.6;
pointer-events: none;
- -webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
@@ -114,9 +113,7 @@ In order to apply the `Roboto` font to this element, make sure you've imported `
#onRadio {
background-color: var(--paper-radio-button-checked-color, --primary-color);
- -webkit-transform: scale(0);
transform: scale(0);
- transition: -webkit-transform ease 0.28s;
transition: transform ease 0.28s;
will-change: transform;
}
@@ -126,7 +123,6 @@ In order to apply the `Roboto` font to this element, make sure you've imported `
}
:host([checked]) #onRadio {
- -webkit-transform: scale(0.5);
transform: scale(0.5);
}

Powered by Google App Engine
This is Rietveld 408576698