|
23 | 23 | </p>
|
24 | 24 |
|
25 | 25 | > [!IMPORTANT]
|
26 |
| -> This library is still in early development. New changes can break existing functionality, and no functionality should be considered final. The library will be considered stable once it reaches v1.0. |
| 26 | +> This library is still in early development. New changes can break existing functionality, and no functionality should be considered final at this stage. The library will be considered stable once it reaches v1.0. |
27 | 27 |
|
28 | 28 | ---
|
29 | 29 | ## Table of Contents
|
|
39 | 39 |
|
40 | 40 | ## Documentation
|
41 | 41 |
|
42 |
| -Full documentation coming soon on [webcoreui.dev/docs](https://webcoreui.dev/docs). |
| 42 | +Full documentation available on [webcoreui.dev](https://webcoreui.dev). |
43 | 43 |
|
44 | 44 | ## Getting Started
|
45 | 45 |
|
@@ -101,15 +101,35 @@ The `Setup` mixin can also accept the following options:
|
101 | 101 | | `includeResets` | `true` | Include reset styles. Set to `false` if you want to use your own CSS resets. |
|
102 | 102 | | `includeHelperClasses` | `true` | Adds global helper classes for CSS. All global helper classes are defined [here](https://github.com/Frontendland/webcoreui/tree/main/src/scss/global). |
|
103 | 103 | | `includeElementStyles` | `true` | Adds styles for native HTML elements, such as `code`, `pre`, or `ul`.
|
| 104 | +| `includeTooltip` | `true` | Adds styles for using tooltips. |
| 105 | +| `includeScrollbarStyles` | `true` | Adds styles for scrollbars. |
104 | 106 |
|
105 |
| -Default component styles can also be changed by overriding the following CSS variables: |
| 107 | +Default component styles can be changed by overriding the following CSS variables: |
106 | 108 |
|
107 | 109 | ```css
|
108 | 110 | :root {
|
109 | 111 | --w-avatar-border: #000;
|
| 112 | + --w-checkbox-color: #FFF; |
| 113 | + --w-progress-color: #FFF; |
| 114 | + --w-progress-background: #252525; |
| 115 | + --w-progress-stripe-light: #FFF; |
| 116 | + --w-progress-stripe-dark: #DDD; |
| 117 | + --w-radio-color: #FFF; |
110 | 118 | --w-rating-color: #FFF;
|
111 | 119 | --w-rating-empty-color: #BBB;
|
112 | 120 | --w-rating-size: 18px;
|
| 121 | + --w-spinner-color: #FFF; |
| 122 | + --w-spinner-width: 2px; |
| 123 | + --w-spinner-speed: 2s; |
| 124 | + --w-spinner-size: 30px; |
| 125 | + --w-spinner-dash: 8; |
| 126 | + --w-switch-off-color: #252525; |
| 127 | + --w-switch-on-color: #FFF; |
| 128 | + --w-timeline-color: #252525; |
| 129 | + --w-timeline-text-color: #FFF; |
| 130 | + --w-timeline-counter: decimal; |
| 131 | + --w-tooltip-background: #FFF; |
| 132 | + --w-tooltip-color: #000; |
113 | 133 | }
|
114 | 134 | ```
|
115 | 135 |
|
|
0 commit comments