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

Unified Diff: third_party/polymer/v1_0/components/paper-spinner/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-spinner/README.md
diff --git a/third_party/polymer/v1_0/components/paper-spinner/README.md b/third_party/polymer/v1_0/components/paper-spinner/README.md
deleted file mode 100644
index c447c8bb0c9232b6ced32ac9f03186f51e0444a2..0000000000000000000000000000000000000000
--- a/third_party/polymer/v1_0/components/paper-spinner/README.md
+++ /dev/null
@@ -1,45 +0,0 @@
-paper-spinner
-=============
-
-Element providing material design circular spinner.
-
-##### Example
-
-```html
-<paper-spinner active></paper-spinner>
-```
-
-The default spinner cycles between four layers of colors; by default they are
-blue, red, yellow and green. It can be customized so that it uses one color only
-by setting all the layer colors to the same value.
-
-##### Example
-
-```html
-<style is="custom-style">
- paper-spinner .rainbow {
- --paper-spinner-layer-1-color: yellow;
- --paper-spinner-layer-2-color: red;
- --paper-spinner-layer-3-color: blue;
- --paper-spinner-layer-4-color: green;
- }
-
- paper-spinner .red {
- --paper-spinner-layer-1-color: red;
- --paper-spinner-layer-2-color: red;
- --paper-spinner-layer-3-color: red;
- --paper-spinner-layer-4-color: red;
- }
-</style>
-```
-
-Alt attribute should be set to provide adequate context for accessibility. If not provided,
-it defaults to 'loading'.
-Empty alt can be provided to mark the element as decorative if alternative content is provided
-in another form (e.g. a text block following the spinner).
-
-##### Example
-
-```html
-<paper-spinner alt="Loading contacts list" active></paper-spinner>
-```

Powered by Google App Engine
This is Rietveld 408576698