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

Unified Diff: third_party/polymer/components-chromium/paper-checkbox/paper-checkbox.html

Issue 913353002: Update paper-checkbox to 0.5.4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Applying sed to remove cr's. Created 5 years, 10 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-chromium/paper-checkbox/paper-checkbox.html
diff --git a/third_party/polymer/components-chromium/paper-checkbox/paper-checkbox.html b/third_party/polymer/components-chromium/paper-checkbox/paper-checkbox.html
index 14d75ad0e7b22a755d4d66069b10b2445fa4ea3a..1d7d96de00091d1725a52e438ec51d84dbe1f7e1 100644
--- a/third_party/polymer/components-chromium/paper-checkbox/paper-checkbox.html
+++ b/third_party/polymer/components-chromium/paper-checkbox/paper-checkbox.html
@@ -29,6 +29,7 @@ To change the ink color for checked state:
To change the checkbox checked color:
paper-checkbox::shadow #checkbox.checked {
+ background-color: #4285f4;
border-color: #4285f4;
}
@@ -59,7 +60,9 @@ To change the checbox unchecked color:
<paper-ripple id="ink" class="circle recenteringTouch" checked?="{{!checked}}"></paper-ripple>
- <div id="checkbox" on-animationend="{{checkboxAnimationEnd}}" on-webkitanimationend="{{checkboxAnimationEnd}}"></div>
+ <div id="checkbox">
+ <div id="checkmark" on-animationend="{{checkboxAnimationEnd}}" on-webkitanimationend="{{checkboxAnimationEnd}}"></div>
+ </div>
</div>

Powered by Google App Engine
This is Rietveld 408576698