| Index: third_party/polymer/v1_0/components-chromium/paper-checkbox/paper-checkbox.html
|
| diff --git a/third_party/polymer/v1_0/components-chromium/paper-checkbox/paper-checkbox.html b/third_party/polymer/v1_0/components-chromium/paper-checkbox/paper-checkbox.html
|
| index 1bfc1b558187e13302468ff8aaee519f9e843157..c1ce55deecf7d1743cf5f18345fbe414a30b4ce4 100644
|
| --- a/third_party/polymer/v1_0/components-chromium/paper-checkbox/paper-checkbox.html
|
| +++ b/third_party/polymer/v1_0/components-chromium/paper-checkbox/paper-checkbox.html
|
| @@ -123,24 +123,14 @@ In order to apply the `Roboto` font to this element, make sure you've imported `
|
| border-color: var(--paper-checkbox-unchecked-color, var(--primary-text-color));
|
| border-radius: 2px;
|
| pointer-events: none;
|
| - -webkit-transition: background-color 140ms, border-color 140ms;
|
| transition: background-color 140ms, border-color 140ms;
|
| }
|
|
|
| /* checkbox checked animations */
|
| #checkbox.checked #checkmark {
|
| - -webkit-animation: checkmark-expand 140ms ease-out forwards;
|
| animation: checkmark-expand 140ms ease-out forwards;
|
| }
|
|
|
| - @-webkit-keyframes checkmark-expand {
|
| - 0% {
|
| - -webkit-transform: scale(0, 0) rotate(45deg);
|
| - }
|
| - 100% {
|
| - -webkit-transform: scale(1, 1) rotate(45deg);
|
| - }
|
| - }
|
|
|
| @keyframes checkmark-expand {
|
| 0% {
|
| @@ -166,13 +156,11 @@ In order to apply the `Roboto` font to this element, make sure you've imported `
|
| border-right-width: calc(2/15 * var(--calculated-paper-checkbox-size));
|
| border-bottom-width: calc(2/15 * var(--calculated-paper-checkbox-size));
|
| border-color: var(--paper-checkbox-checkmark-color, white);
|
| - -webkit-transform-origin: 97% 86%;
|
| transform-origin: 97% 86%;
|
| box-sizing: content-box; /* protect against page-level box-sizing */
|
| }
|
|
|
| :host-context([dir="rtl"]) #checkmark {
|
| - -webkit-transform-origin: 50% 14%;
|
| transform-origin: 50% 14%;
|
| }
|
|
|
|
|