From c899fb33af1d3df85cab0cb31433fbf268ea5905 Mon Sep 17 00:00:00 2001 From: "Manu Mtz.-Almeida" Date: Thu, 16 Aug 2018 15:48:52 +0200 Subject: [PATCH] chore(): update docs --- core/src/components/card-subtitle/readme.md | 7 +++++++ core/src/components/card-title/readme.md | 7 +++++++ core/src/components/card/readme.md | 8 ++++++++ core/src/components/checkbox/readme.md | 16 ++++++++++++++++ 4 files changed, 38 insertions(+) diff --git a/core/src/components/card-subtitle/readme.md b/core/src/components/card-subtitle/readme.md index e75a03b03f..031097b422 100644 --- a/core/src/components/card-subtitle/readme.md +++ b/core/src/components/card-subtitle/readme.md @@ -13,6 +13,13 @@ | `mode` | `mode` | The mode determines which platform styles to use. Possible values are: `"ios"` or `"md"`. | `Mode` | +## CSS Custom Properties + +| Name | Description | +| --------- | -------------------------- | +| `--color` | Color of the card subtitle | + + ---------------------------------------------- *Built with [StencilJS](https://stenciljs.com/)* diff --git a/core/src/components/card-title/readme.md b/core/src/components/card-title/readme.md index 9fece5b9de..715672fd17 100644 --- a/core/src/components/card-title/readme.md +++ b/core/src/components/card-title/readme.md @@ -14,6 +14,13 @@ | `mode` | `mode` | The mode determines which platform styles to use. Possible values are: `"ios"` or `"md"`. | `Mode` | +## CSS Custom Properties + +| Name | Description | +| --------- | ----------------------- | +| `--color` | Color of the card title | + + ---------------------------------------------- *Built with [StencilJS](https://stenciljs.com/)* diff --git a/core/src/components/card/readme.md b/core/src/components/card/readme.md index 96410b0584..331155628f 100644 --- a/core/src/components/card/readme.md +++ b/core/src/components/card/readme.md @@ -17,6 +17,14 @@ sub-components to reflect this. Please see `ion-card-content`, | `mode` | `mode` | The mode determines which platform styles to use. Possible values are: `"ios"` or `"md"`. | `Mode` | +## CSS Custom Properties + +| Name | Description | +| -------------- | ---------------------- | +| `--background` | Background of the card | +| `--color` | Color of the card | + + ---------------------------------------------- *Built with [StencilJS](https://stenciljs.com/)* diff --git a/core/src/components/checkbox/readme.md b/core/src/components/checkbox/readme.md index 404c44ae38..1633600f1a 100644 --- a/core/src/components/checkbox/readme.md +++ b/core/src/components/checkbox/readme.md @@ -30,6 +30,22 @@ Checkboxes allow the selection of multiple options from a set of options. They a | `ionStyle` | Emitted when the styles change. | +## CSS Custom Properties + +| Name | Description | +| ------------------------ | ---------------------------------------------- | +| `--background` | Background of the checkbox icon | +| `--background-checked` | Background of the checkbox icon when checked | +| `--border-color` | Border color of the checkbox icon | +| `--border-color-checked` | Border color of the checkbox icon when checked | +| `--border-radius` | Border radius of the checkbox icon | +| `--border-style` | Border style of the checkbox icon | +| `--border-width` | Border width of the checkbox icon | +| `--checkmark-color` | Color of the checkbox checkmark when checked | +| `--size` | Size of the checkbox icon | +| `--transition` | Transition of the checkbox icon | + + ---------------------------------------------- *Built with [StencilJS](https://stenciljs.com/)*