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

Unified Diff: third_party/polymer/v1_0/components/paper-checkbox/README.md

Issue 1269803005: Remove third_party/polymer from .gitignore (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 5 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/paper-checkbox/README.md
diff --git a/third_party/polymer/v1_0/components/paper-checkbox/README.md b/third_party/polymer/v1_0/components/paper-checkbox/README.md
deleted file mode 100644
index 01eddc1a20ab455329411c079891eec6725f5e1d..0000000000000000000000000000000000000000
--- a/third_party/polymer/v1_0/components/paper-checkbox/README.md
+++ /dev/null
@@ -1,35 +0,0 @@
-# paper-checkbox
-
-`paper-checkbox` is a button that can be either checked or unchecked. User
-can tap the checkbox to check or uncheck it. Usually you use checkboxes
-to allow user to select multiple options from a set. If you have a single
-ON/OFF option, avoid using a single checkbox and use `paper-toggle-button`
-instead.
-
-Example:
-
-```html
-<paper-checkbox>label</paper-checkbox>
-
-<paper-checkbox checked>label</paper-checkbox>
-```
-
-Styling a checkbox:
-
-```html
-<style is="custom-style">
- paper-checkbox {
- --paper-checkbox-label-color: #000;
- --paper-checkbox-checkmark-color: #fff;
-
- /* Unhecked state colors. */
- --paper-checkbox-unchecked-color: #5a5a5a;
- --paper-checkbox-unchecked-background-color: #5a5a5a;
- --paper-checkbox-unchecked-ink-color: #5a5a5a;
-
- /* Checked state colors. */
- --paper-checkbox-checked-color: #009688;
- --paper-checkbox-checked-ink-color: #009688;
- }
-</style>
-```

Powered by Google App Engine
This is Rietveld 408576698