File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
@adobe/spectrum-css-temp/components/steplist
@react-spectrum/steplist/src Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -218,7 +218,7 @@ governing permissions and limitations under the License.
218
218
219
219
padding-inline-start : calc (var (--spectrum-steplist-chevron-gap ) - var (--spectrum-steplist-marker-label-gap ));
220
220
& ::before {
221
- content : 'x' ;
221
+ content : "*" ;
222
222
width : 0 ;
223
223
visibility : hidden;
224
224
}
@@ -239,7 +239,7 @@ governing permissions and limitations under the License.
239
239
display : flex;
240
240
align-items : center;
241
241
& ::before {
242
- content : 'x' ;
242
+ content : "*" ;
243
243
width : 0 ;
244
244
visibility : hidden;
245
245
}
@@ -281,7 +281,7 @@ governing permissions and limitations under the License.
281
281
display : flex;
282
282
align-items : center;
283
283
& ::before {
284
- content : 'x' ;
284
+ content : "*" ;
285
285
width : 0 ;
286
286
visibility : hidden;
287
287
}
Original file line number Diff line number Diff line change @@ -105,8 +105,8 @@ export function StepListItem<T>(props: SpectrumStepListItemProps<T>) {
105
105
'is-reversed' : direction === 'rtl'
106
106
} ) } />
107
107
</ div >
108
- < div id = { markerId } aria-hidden = "true" className = { classNames ( styles , 'spectrum-Steplist-markerWrapper' ) } >
109
- < div className = { classNames ( styles , 'spectrum-Steplist-marker' ) } > { numberFormatter . format ( ( item . index || 0 ) + 1 ) } </ div >
108
+ < div aria-hidden = "true" className = { classNames ( styles , 'spectrum-Steplist-markerWrapper' ) } >
109
+ < div id = { markerId } className = { classNames ( styles , 'spectrum-Steplist-marker' ) } > { numberFormatter . format ( ( item . index || 0 ) + 1 ) } </ div >
110
110
</ div >
111
111
</ a >
112
112
</ FocusRing >
You can’t perform that action at this time.
0 commit comments