You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can also remove the divider setting `--cui-breadcrumb-divider: '';` (empty strings in CSS custom properties counts as a value), or setting the Sass variable to `$breadcrumb-divider: none;`.
Copy file name to clipboardExpand all lines: src/components/button/CButton.mdx
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -153,7 +153,7 @@ The `.disabled` class uses `pointer-events: none` to try to disable the link fun
153
153
Create buttons that span the full width of a parent—by using utilities.
154
154
155
155
<Playground>
156
-
<divclass="d-grid gap-2">
156
+
<divclassName="d-grid gap-2">
157
157
<CButtoncolor="primary">Button</CButton>
158
158
<CButtoncolor="primary">Button</CButton>
159
159
</div>
@@ -162,7 +162,7 @@ Create buttons that span the full width of a parent—by using utilities.
162
162
Here we create a responsive variation, starting with vertically stacked buttons until the `md` breakpoint, where `.d-md-block` replaces the `.d-grid` class, thus nullifying the `gap-2` utility. Resize your browser to see them change.
163
163
164
164
<Playground>
165
-
<divclass="d-grid gap-2 d-md-block">
165
+
<divclassName="d-grid gap-2 d-md-block">
166
166
<CButtoncolor="primary">Button</CButton>
167
167
<CButtoncolor="primary">Button</CButton>
168
168
</div>
@@ -171,7 +171,7 @@ Here we create a responsive variation, starting with vertically stacked buttons
171
171
You can adjust the width of your block buttons with grid column width classes. For example, for a half-width "block button", use `.col-6`. Center it horizontally with `.mx-auto`, too.
172
172
173
173
<Playground>
174
-
<divclass="d-grid gap-2 col-6 mx-auto">
174
+
<divclassName="d-grid gap-2 col-6 mx-auto">
175
175
<CButtoncolor="primary">Button</CButton>
176
176
<CButtoncolor="primary">Button</CButton>
177
177
</div>
@@ -180,7 +180,7 @@ You can adjust the width of your block buttons with grid column width classes. F
180
180
Additional utilities can be used to adjust the alignment of buttons when horizontal. Here we've taken our previous responsive example and added some flex utilities and a margin utility on the button to right align the buttons when they're no longer stacked.
Copy file name to clipboardExpand all lines: src/components/card/CCard.mdx
+22-22Lines changed: 22 additions & 22 deletions
Original file line number
Diff line number
Diff line change
@@ -188,9 +188,9 @@ Card headers can be styled by adding ex. `component="h5"`.
188
188
2851
<CCard>
189
189
<CCardHeader>Quote</CCardHeader>
190
190
<CCardBody>
191
-
<blockquoteclass="blockquote mb-0">
191
+
<blockquoteclassName="blockquote mb-0">
192
192
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
193
-
<footerclass="blockquote-footer">Someone famous in <citetitle="Source Title">Source Title</cite></footer>
193
+
<footerclassName="blockquote-footer">Someone famous in <citetitle="Source Title">Source Title</cite></footer>
194
194
</blockquote>
195
195
</CCardBody>
196
196
</CCard>
@@ -394,14 +394,14 @@ Similar to headers and footers, cards can include top and bottom "image caps"—
394
394
<CCardBody>
395
395
<CCardTitle>Card title</CCardTitle>
396
396
<CCardText>This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</CCardText>
397
-
<CCardText><smallclass="text-muted">Last updated 3 mins ago</small></CCardText>
397
+
<CCardText><smallclassName="text-muted">Last updated 3 mins ago</small></CCardText>
398
398
</CCardBody>
399
399
</CCard>
400
400
<CCardclassName="mb-3">
401
401
<CCardBody>
402
402
<CCardTitle>Card title</CCardTitle>
403
403
<CCardText>This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</CCardText>
404
-
<CCardText><smallclass="text-muted">Last updated 3 mins ago</small></CCardText>
404
+
<CCardText><smallclassName="text-muted">Last updated 3 mins ago</small></CCardText>
@@ -425,7 +425,7 @@ Using a combination of grid and utility classes, cards can be made horizontal in
425
425
<CCardBody>
426
426
<CCardTitle>Card title</CCardTitle>
427
427
<CCardText>This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</CCardText>
428
-
<CCardText><smallclass="text-muted">Last updated 3 mins ago</small></CCardText>
428
+
<CCardText><smallclassName="text-muted">Last updated 3 mins ago</small></CCardText>
429
429
</CCardBody>
430
430
</CCol>
431
431
</CRow>
@@ -537,23 +537,23 @@ Use card groups to render cards as a single, attached element with equal width a
537
537
<CCardBody>
538
538
<CCardTitle>Card title</CCardTitle>
539
539
<CCardText>This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</CCardText>
540
-
<CCardText><smallclass="text-muted">Last updated 3 mins ago</small></CCardText>
540
+
<CCardText><smallclassName="text-muted">Last updated 3 mins ago</small></CCardText>
<CCardText>This is a wider card with supporting text below as a natural lead-in to additional content. This card has even longer content than the first to show that equal height action.</CCardText>
556
-
<CCardText><smallclass="text-muted">Last updated 3 mins ago</small></CCardText>
556
+
<CCardText><smallclassName="text-muted">Last updated 3 mins ago</small></CCardText>
557
557
</CCardBody>
558
558
</CCard>
559
559
</CCardGroup>
@@ -569,23 +569,23 @@ When using card groups with footers, their content will automatically line up.
569
569
<CCardTitle>Card title</CCardTitle>
570
570
<CCardText>This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</CCardText>
571
571
</CCardBody>
572
-
<CCardFooter><smallclass="text-muted">Last updated 3 mins ago</small></CCardFooter>
572
+
<CCardFooter><smallclassName="text-muted">Last updated 3 mins ago</small></CCardFooter>
<CCardText>This is a wider card with supporting text below as a natural lead-in to additional content. This card has even longer content than the first to show that equal height action.</CCardText>
587
587
</CCardBody>
588
-
<CCardFooter><smallclass="text-muted">Last updated 3 mins ago</small></CCardFooter>
588
+
<CCardFooter><smallclassName="text-muted">Last updated 3 mins ago</small></CCardFooter>
589
589
</CCard>
590
590
</CCardGroup>
591
591
</Playground>
@@ -603,7 +603,7 @@ Use the `CRow` component and set `xs|sm|md|lg|xl|xxl}={{ cols: * }}` property to
603
603
<CCardTitle>Card title</CCardTitle>
604
604
<CCardText>This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</CCardText>
605
605
</CCardBody>
606
-
<CCardFooter><smallclass="text-muted">Last updated 3 mins ago</small></CCardFooter>
606
+
<CCardFooter><smallclassName="text-muted">Last updated 3 mins ago</small></CCardFooter>
607
607
</CCard>
608
608
</CCol>
609
609
<CColxs>
@@ -613,7 +613,7 @@ Use the `CRow` component and set `xs|sm|md|lg|xl|xxl}={{ cols: * }}` property to
613
613
<CCardTitle>Card title</CCardTitle>
614
614
<CCardText>This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</CCardText>
615
615
</CCardBody>
616
-
<CCardFooter><smallclass="text-muted">Last updated 3 mins ago</small></CCardFooter>
616
+
<CCardFooter><smallclassName="text-muted">Last updated 3 mins ago</small></CCardFooter>
617
617
</CCard>
618
618
</CCol>
619
619
<CColxs>
@@ -623,7 +623,7 @@ Use the `CRow` component and set `xs|sm|md|lg|xl|xxl}={{ cols: * }}` property to
623
623
<CCardTitle>Card title</CCardTitle>
624
624
<CCardText>This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</CCardText>
625
625
</CCardBody>
626
-
<CCardFooter><smallclass="text-muted">Last updated 3 mins ago</small></CCardFooter>
626
+
<CCardFooter><smallclassName="text-muted">Last updated 3 mins ago</small></CCardFooter>
627
627
</CCard>
628
628
</CCol>
629
629
<CColxs>
@@ -633,7 +633,7 @@ Use the `CRow` component and set `xs|sm|md|lg|xl|xxl}={{ cols: * }}` property to
633
633
<CCardTitle>Card title</CCardTitle>
634
634
<CCardText>This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</CCardText>
635
635
</CCardBody>
636
-
<CCardFooter><smallclass="text-muted">Last updated 3 mins ago</small></CCardFooter>
636
+
<CCardFooter><smallclassName="text-muted">Last updated 3 mins ago</small></CCardFooter>
637
637
</CCard>
638
638
</CCol>
639
639
</CRow>
@@ -650,7 +650,7 @@ Change it to `md={{ cols: 3}}` and you'll see the fourth card wrap.
650
650
<CCardTitle>Card title</CCardTitle>
651
651
<CCardText>This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</CCardText>
652
652
</CCardBody>
653
-
<CCardFooter><smallclass="text-muted">Last updated 3 mins ago</small></CCardFooter>
653
+
<CCardFooter><smallclassName="text-muted">Last updated 3 mins ago</small></CCardFooter>
654
654
</CCard>
655
655
</CCol>
656
656
<CColxs>
@@ -660,7 +660,7 @@ Change it to `md={{ cols: 3}}` and you'll see the fourth card wrap.
660
660
<CCardTitle>Card title</CCardTitle>
661
661
<CCardText>This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</CCardText>
662
662
</CCardBody>
663
-
<CCardFooter><smallclass="text-muted">Last updated 3 mins ago</small></CCardFooter>
663
+
<CCardFooter><smallclassName="text-muted">Last updated 3 mins ago</small></CCardFooter>
664
664
</CCard>
665
665
</CCol>
666
666
<CColxs>
@@ -670,7 +670,7 @@ Change it to `md={{ cols: 3}}` and you'll see the fourth card wrap.
670
670
<CCardTitle>Card title</CCardTitle>
671
671
<CCardText>This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</CCardText>
672
672
</CCardBody>
673
-
<CCardFooter><smallclass="text-muted">Last updated 3 mins ago</small></CCardFooter>
673
+
<CCardFooter><smallclassName="text-muted">Last updated 3 mins ago</small></CCardFooter>
674
674
</CCard>
675
675
</CCol>
676
676
<CColxs>
@@ -680,7 +680,7 @@ Change it to `md={{ cols: 3}}` and you'll see the fourth card wrap.
680
680
<CCardTitle>Card title</CCardTitle>
681
681
<CCardText>This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</CCardText>
682
682
</CCardBody>
683
-
<CCardFooter><smallclass="text-muted">Last updated 3 mins ago</small></CCardFooter>
683
+
<CCardFooter><smallclassName="text-muted">Last updated 3 mins ago</small></CCardFooter>
684
684
</CCard>
685
685
</CCol>
686
686
</CRow>
@@ -740,7 +740,7 @@ Just like with card groups, card footers will automatically line up.
740
740
<CCardTitle>Card title</CCardTitle>
741
741
<CCardText>This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</CCardText>
742
742
</CCardBody>
743
-
<CCardFooter><smallclass="text-muted">Last updated 3 mins ago</small></CCardFooter>
743
+
<CCardFooter><smallclassName="text-muted">Last updated 3 mins ago</small></CCardFooter>
744
744
</CCard>
745
745
</CCol>
746
746
<CColxs>
@@ -750,7 +750,7 @@ Just like with card groups, card footers will automatically line up.
750
750
<CCardTitle>Card title</CCardTitle>
751
751
<CCardText>This card has supporting text below as a natural lead-in to additional content.</CCardText>
752
752
</CCardBody>
753
-
<CCardFooter><smallclass="text-muted">Last updated 3 mins ago</small></CCardFooter>
753
+
<CCardFooter><smallclassName="text-muted">Last updated 3 mins ago</small></CCardFooter>
754
754
</CCard>
755
755
</CCol>
756
756
<CColxs>
@@ -760,7 +760,7 @@ Just like with card groups, card footers will automatically line up.
760
760
<CCardTitle>Card title</CCardTitle>
761
761
<CCardText>This is a wider card with supporting text below as a natural lead-in to additional content. This card has even longer content than the first to show that equal height action.</CCardText>
762
762
</CCardBody>
763
-
<CCardFooter><smallclass="text-muted">Last updated 3 mins ago</small></CCardFooter>
763
+
<CCardFooter><smallclassName="text-muted">Last updated 3 mins ago</small></CCardFooter>
0 commit comments