not really known
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
666 B

  1. /**
  2. A button in the onyx style. The color of the button may be customized by
  3. applying a background color.
  4. The *onyx-affirmative*, *onyx-negative*, and *onyx-blue* classes provide
  5. some built-in presets.
  6. {kind: "onyx.Button", content: "Button"},
  7. {kind: "onyx.Button", content: "Affirmative", classes: "onyx-affirmative"},
  8. {kind: "onyx.Button", content: "Negative", classes: "onyx-negative"},
  9. {kind: "onyx.Button", content: "Blue", classes: "onyx-blue"},
  10. {kind: "onyx.Button", content: "Custom", style: "background-color: purple; color: #F1F1F1;"}
  11. */
  12. enyo.kind({
  13. name: "onyx.Button",
  14. kind: "enyo.Button",
  15. classes: "onyx-button enyo-unselectable"
  16. });