@@ -21,7 +21,7 @@ const ListGroups = () => {
2121 < strong > React List Group</ strong > < small > Basic example</ small >
2222 </ CCardHeader >
2323 < CCardBody >
24- < p className = "text-medium-emphasis small" >
24+ < p className = "text-body-secondary small" >
2525 The default list group is an unordered list with items and the proper CSS classes.
2626 Build upon it with the options that follow, or with your CSS as required.
2727 </ p >
@@ -43,7 +43,7 @@ const ListGroups = () => {
4343 < strong > React List Group</ strong > < small > Active items</ small >
4444 </ CCardHeader >
4545 < CCardBody >
46- < p className = "text-medium-emphasis small" >
46+ < p className = "text-body-secondary small" >
4747 Add < code > active</ code > boolean property to a < code > <CListGroupItem></ code > to
4848 show the current active selection.
4949 </ p >
@@ -65,7 +65,7 @@ const ListGroups = () => {
6565 < strong > React List Group</ strong > < small > Disabled items</ small >
6666 </ CCardHeader >
6767 < CCardBody >
68- < p className = "text-medium-emphasis small" >
68+ < p className = "text-body-secondary small" >
6969 Add < code > disabled</ code > boolean property to a < code > <CListGroupItem></ code > to
7070 make it appear disabled.
7171 </ p >
@@ -87,7 +87,7 @@ const ListGroups = () => {
8787 < strong > React List Group</ strong > < small > Links and buttons</ small >
8888 </ CCardHeader >
8989 < CCardBody >
90- < p className = "text-medium-emphasis small" >
90+ < p className = "text-body-secondary small" >
9191 Use < code > <a></ code > s or < code > <button></ code > s to create{ ' ' }
9292 < em > actionable</ em > list group items with hover, disabled, and active states by adding{ ' ' }
9393 < code > component="a|button"</ code > . We separate these pseudo-classes to ensure
@@ -123,7 +123,7 @@ const ListGroups = () => {
123123 < strong > React List Group</ strong > < small > Flush</ small >
124124 </ CCardHeader >
125125 < CCardBody >
126- < p className = "text-medium-emphasis small" >
126+ < p className = "text-body-secondary small" >
127127 Add < code > flush</ code > boolean property to remove some borders and rounded corners to
128128 render list group items edge-to-edge in a parent container (e.g., cards).
129129 </ p >
@@ -145,7 +145,7 @@ const ListGroups = () => {
145145 < strong > React List Group</ strong > < small > Horizontal</ small >
146146 </ CCardHeader >
147147 < CCardBody >
148- < p className = "text-medium-emphasis small" >
148+ < p className = "text-body-secondary small" >
149149 Add < code > layout="horizontal"</ code > to change the layout of list group items
150150 from vertical to horizontal across all breakpoints. Alternatively, choose a responsive
151151 variant < code > .layout="horizontal-{sm | md | lg | xl | xxl}"</ code > { ' ' }
@@ -171,7 +171,7 @@ const ListGroups = () => {
171171 < strong > React List Group</ strong > < small > Contextual classes</ small >
172172 </ CCardHeader >
173173 < CCardBody >
174- < p className = "text-medium-emphasis small" >
174+ < p className = "text-body-secondary small" >
175175 Use contextual classes to style list items with a stateful background and color.
176176 </ p >
177177 < DocsExample href = "components/list-group/#contextual-classes" >
@@ -193,7 +193,7 @@ const ListGroups = () => {
193193 ) ) }
194194 </ CListGroup >
195195 </ DocsExample >
196- < p className = "text-medium-emphasis small" >
196+ < p className = "text-body-secondary small" >
197197 Contextual classes also work with < code > <a></ code > s or{ ' ' }
198198 < code > <button></ code > s. Note the addition of the hover styles here not present
199199 in the previous example. Also supported is the < code > active</ code > state; apply it to
@@ -229,7 +229,7 @@ const ListGroups = () => {
229229 < strong > React List Group</ strong > < small > With badges</ small >
230230 </ CCardHeader >
231231 < CCardBody >
232- < p className = "text-medium-emphasis small" >
232+ < p className = "text-body-secondary small" >
233233 Add badges to any list group item to show unread counts, activity, and more.
234234 </ p >
235235 < DocsExample href = "components/list-group/#with-badges" >
@@ -263,7 +263,7 @@ const ListGroups = () => {
263263 < strong > React List Group</ strong > < small > Custom content</ small >
264264 </ CCardHeader >
265265 < CCardBody >
266- < p className = "text-medium-emphasis small" >
266+ < p className = "text-body-secondary small" >
267267 Add nearly any HTML within, even for linked list groups like the one below, with the
268268 help of < a href = "https://coreui.io/docs/utilities/flex/" > flexbox utilities</ a > .
269269 </ p >
@@ -283,24 +283,24 @@ const ListGroups = () => {
283283 < CListGroupItem component = "a" href = "#" >
284284 < div className = "d-flex w-100 justify-content-between" >
285285 < h5 className = "mb-1" > List group item heading</ h5 >
286- < small className = "text-medium-emphasis " > 3 days ago</ small >
286+ < small className = "text-body-secondary " > 3 days ago</ small >
287287 </ div >
288288 < p className = "mb-1" >
289289 Donec id elit non mi porta gravida at eget metus. Maecenas sed diam eget risus
290290 varius blandit.
291291 </ p >
292- < small className = "text-medium-emphasis " > Donec id elit non mi porta.</ small >
292+ < small className = "text-body-secondary " > Donec id elit non mi porta.</ small >
293293 </ CListGroupItem >
294294 < CListGroupItem component = "a" href = "#" >
295295 < div className = "d-flex w-100 justify-content-between" >
296296 < h5 className = "mb-1" > List group item heading</ h5 >
297- < small className = "text-medium-emphasis " > 3 days ago</ small >
297+ < small className = "text-body-secondary " > 3 days ago</ small >
298298 </ div >
299299 < p className = "mb-1" >
300300 Donec id elit non mi porta gravida at eget metus. Maecenas sed diam eget risus
301301 varius blandit.
302302 </ p >
303- < small className = "text-medium-emphasis " > Donec id elit non mi porta.</ small >
303+ < small className = "text-body-secondary " > Donec id elit non mi porta.</ small >
304304 </ CListGroupItem >
305305 </ CListGroup >
306306 </ DocsExample >
@@ -313,7 +313,7 @@ const ListGroups = () => {
313313 < strong > React List Group</ strong > < small > Checkboxes and radios</ small >
314314 </ CCardHeader >
315315 < CCardBody >
316- < p className = "text-medium-emphasis small" >
316+ < p className = "text-body-secondary small" >
317317 Place CoreUI's checkboxes and radios within list group items and customize as
318318 needed.
319319 </ p >
0 commit comments