|
5 | 5 |
|
6 | 6 | :host { |
7 | 7 | /** |
8 | | - * @prop --ion-progress-bar-determinate-buffer-bar-default-background: Background of the progress track, or the buffer bar if `buffer` is set |
9 | | - * @prop --ion-progress-bar-determinate-progress-default-background: Background of the progress bar representing the current value |
| 8 | + * @prop --ion-progress-bar-height: Height of the progress bar |
| 9 | + * |
| 10 | + * @prop --ion-progress-bar-determinate-progress-default-background: Background of the filled progress indicator in a determinate progress bar |
| 11 | + * @prop --ion-progress-bar-determinate-progress-semantic-default-background: Background of the filled progress indicator in a determinate progress bar when a semantic color is applied |
| 12 | + * |
| 13 | + * @prop --ion-progress-bar-determinate-buffer-bar-default-background: Background of the track representing the buffered amount in a determinate progress bar |
| 14 | + * @prop --ion-progress-bar-determinate-buffer-bar-semantic-default-background: Background of the track representing the buffered amount in a determinate progress bar when a semantic color is applied |
| 15 | + * @prop --ion-progress-bar-determinate-buffer-bar-solid-default-background: Background of the track representing the buffered amount in a determinate progress bar when it's fully buffered |
| 16 | + * |
| 17 | + * @prop --ion-progress-bar-determinate-buffer-circles-default-background: Background of the buffer circles in a determinate progress bar |
| 18 | + * @prop --ion-progress-bar-determinate-buffer-circles-semantic-default-background: Background of the buffer circles in a determinate progress bar when a semantic color is applied |
| 19 | + * @prop --ion-progress-bar-determinate-buffer-circles-solid-default-background: Background of the buffer circles in a determinate progress bar when it's fully buffered |
| 20 | + * |
| 21 | + * @prop --ion-progress-bar-indeterminate-progress-default-background: Background of the filled progress indicator in an indeterminate progress bar |
| 22 | + * @prop --ion-progress-bar-indeterminate-progress-semantic-default-background: Background of the filled progress indicator in an indeterminate progress bar when a semantic color is applied |
| 23 | + * |
| 24 | + * @prop --ion-progress-bar-indeterminate-buffer-bar-default-background: Background of the track representing the buffered amount in an indeterminate progress bar |
| 25 | + * @prop --ion-progress-bar-indeterminate-buffer-bar-semantic-default-background: Background of the track representing the buffered amount in an indeterminate progress bar when a semantic color is applied |
| 26 | + * @prop --ion-progress-bar-indeterminate-buffer-bar-solid-default-background: Background of the track representing the buffered amount in an indeterminate progress bar when it's fully buffered |
| 27 | + * |
| 28 | + * @prop --ion-progress-bar-shape-round-border-radius: Border radius of the `round` progress bar shape |
| 29 | + * @prop --ion-progress-bar-shape-rectangular-border-radius: Border radius of the `rectangular` progress bar shape |
10 | 30 | */ |
11 | 31 |
|
12 | 32 | display: block; |
|
78 | 98 | background: var(--ion-progress-bar-determinate-progress-default-background); |
79 | 99 | } |
80 | 100 |
|
81 | | -:host(.progress-bar-determinate) .progress-buffer-bar { |
| 101 | +:host(.progress-bar-type-determinate) .progress-buffer-bar { |
82 | 102 | background: var(--ion-progress-bar-determinate-buffer-bar-default-background); |
83 | 103 | } |
84 | 104 |
|
|
105 | 125 | background: var(--ion-progress-bar-indeterminate-progress-default-background); |
106 | 126 | } |
107 | 127 |
|
108 | | -:host(.progress-bar-indeterminate) .progress-buffer-bar { |
| 128 | +:host(.progress-bar-type-indeterminate) .progress-buffer-bar { |
109 | 129 | background: var(--ion-progress-bar-indeterminate-buffer-bar-default-background); |
110 | 130 | } |
111 | 131 |
|
|
128 | 148 | background: var(--ion-progress-bar-determinate-progress-semantic-default-background); |
129 | 149 | } |
130 | 150 |
|
131 | | -:host(.ion-color.progress-bar-determinate:not(.progress-bar-solid)) .progress-buffer-bar { |
| 151 | +:host(.ion-color.progress-bar-type-determinate:not(.progress-bar-solid)) .progress-buffer-bar { |
132 | 152 | background: var( |
133 | 153 | --ion-progress-bar-determinate-buffer-bar-semantic-default-background, |
134 | 154 | var(--ion-progress-bar-determinate-buffer-bar-default-background) |
|
149 | 169 | background: var(--ion-progress-bar-indeterminate-progress-semantic-default-background); |
150 | 170 | } |
151 | 171 |
|
152 | | -:host(.ion-color.progress-bar-indeterminate:not(.progress-bar-solid)) .progress-buffer-bar { |
| 172 | +:host(.ion-color.progress-bar-type-indeterminate:not(.progress-bar-solid)) .progress-buffer-bar { |
153 | 173 | background: var( |
154 | 174 | --ion-progress-bar-indeterminate-buffer-bar-semantic-default-background, |
155 | 175 | var(--ion-progress-bar-indeterminate-buffer-bar-default-background) |
|
179 | 199 | // -------------------------------------------------- |
180 | 200 |
|
181 | 201 | // Determinate |
182 | | -:host(.progress-bar-solid.progress-bar-determinate) .progress-buffer-bar { |
| 202 | +:host(.progress-bar-solid.progress-bar-type-determinate) .progress-buffer-bar { |
183 | 203 | background: var( |
184 | 204 | --ion-progress-bar-determinate-buffer-bar-solid-default-background, |
185 | 205 | var(--ion-progress-bar-determinate-buffer-bar-default-background) |
|
196 | 216 | } |
197 | 217 |
|
198 | 218 | // Indeterminate |
199 | | -:host(.progress-bar-solid.progress-bar-indeterminate) .progress-buffer-bar { |
| 219 | +:host(.progress-bar-solid.progress-bar-type-indeterminate) .progress-buffer-bar { |
200 | 220 | background: var( |
201 | 221 | --ion-progress-bar-indeterminate-buffer-bar-solid-default-background, |
202 | 222 | var(--ion-progress-bar-indeterminate-buffer-bar-default-background) |
|
0 commit comments