Skip to content

Commit b664eab

Browse files
committed
examples fixes
1 parent e2bc67f commit b664eab

File tree

4 files changed

+12
-10
lines changed

4 files changed

+12
-10
lines changed

site/content/docs/5.3/examples/badges/badges.css

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1+
/*
12
.text-warning {
23
color: #997404 !important;
34
}
45
56
.text-info {
67
color: #087990 !important;
78
}
9+
*/
810

911
.badge > a {
1012
color: inherit;

site/content/docs/5.3/examples/breadcrumbs/breadcrumbs.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,22 @@
44
}
55
.breadcrumb-chevron .breadcrumb-item {
66
display: flex;
7-
align-items: center;
87
gap: inherit;
8+
align-items: center;
99
padding-left: 0;
1010
line-height: 1;
1111
}
1212
.breadcrumb-chevron .breadcrumb-item::before {
13+
gap: inherit;
1314
float: none;
1415
width: 1rem;
1516
height: 1rem;
16-
gap: inherit;
1717
}
1818

1919
.breadcrumb-custom .breadcrumb-item {
2020
position: relative;
21-
padding: .75rem 3rem;
2221
flex-grow: 1;
22+
padding: .75rem 3rem;
2323
}
2424
.breadcrumb-custom .breadcrumb-item::before {
2525
display: none;
@@ -36,8 +36,8 @@
3636
content: "";
3737
background-color: var(--bs-tertiary-bg);
3838
border-top-right-radius: .5rem;
39-
transform: scale(0.707) rotate(45deg);
4039
box-shadow: 1px -1px var(--bs-border-color);
40+
transform: scale(.707) rotate(45deg);
4141
}
4242
.breadcrumb-custom .breadcrumb-item:first-child {
4343
padding-left: 1.5rem;

site/content/docs/5.3/examples/pricing/index.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@
1616
<div class="container py-3">
1717
<header>
1818
<div class="d-flex flex-column flex-md-row align-items-center pb-3 mb-4 border-bottom">
19-
<a href="/" class="d-flex align-items-center text-dark text-decoration-none">
19+
<a href="/" class="d-flex align-items-center link-body-emphasis text-decoration-none">
2020
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="32" class="me-2" viewBox="0 0 118 94" role="img"><title>Bootstrap</title><path fill-rule="evenodd" clip-rule="evenodd" d="M24.509 0c-6.733 0-11.715 5.893-11.492 12.284.214 6.14-.064 14.092-2.066 20.577C8.943 39.365 5.547 43.485 0 44.014v5.972c5.547.529 8.943 4.649 10.951 11.153 2.002 6.485 2.28 14.437 2.066 20.577C12.794 88.106 17.776 94 24.51 94H93.5c6.733 0 11.714-5.893 11.491-12.284-.214-6.14.064-14.092 2.066-20.577 2.009-6.504 5.396-10.624 10.943-11.153v-5.972c-5.547-.529-8.934-4.649-10.943-11.153-2.002-6.484-2.28-14.437-2.066-20.577C105.214 5.894 100.233 0 93.5 0H24.508zM80 57.863C80 66.663 73.436 72 62.543 72H44a2 2 0 01-2-2V24a2 2 0 012-2h18.437c9.083 0 15.044 4.92 15.044 12.474 0 5.302-4.01 10.049-9.119 10.88v.277C75.317 46.394 80 51.21 80 57.863zM60.521 28.34H49.948v14.934h8.905c6.884 0 10.68-2.772 10.68-7.727 0-4.643-3.264-7.207-9.012-7.207zM49.948 49.2v16.458H60.91c7.167 0 10.964-2.876 10.964-8.281 0-5.406-3.903-8.178-11.425-8.178H49.948z" fill="currentColor"></path></svg>
2121
<span class="fs-4">Pricing example</span>
2222
</a>
2323

2424
<nav class="d-inline-flex mt-2 mt-md-0 ms-md-auto">
25-
<a class="me-3 py-2 text-dark text-decoration-none" href="#">Features</a>
26-
<a class="me-3 py-2 text-dark text-decoration-none" href="#">Enterprise</a>
27-
<a class="me-3 py-2 text-dark text-decoration-none" href="#">Support</a>
28-
<a class="py-2 text-dark text-decoration-none" href="#">Pricing</a>
25+
<a class="me-3 py-2 link-body-emphasis text-decoration-none" href="#">Features</a>
26+
<a class="me-3 py-2 link-body-emphasis text-decoration-none" href="#">Enterprise</a>
27+
<a class="me-3 py-2 link-body-emphasis text-decoration-none" href="#">Support</a>
28+
<a class="py-2 link-body-emphasis text-decoration-none" href="#">Pricing</a>
2929
</nav>
3030
</div>
3131

site/content/docs/5.3/examples/pricing/pricing.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
body {
2-
background-image: linear-gradient(180deg, #eee, #fff 100px, #fff);
2+
background-image: linear-gradient(180deg, var(--bs-body-secondary-bg), var(--bs-body-bg) 100px, var(--bs-body-bg));
33
}
44

55
.container {

0 commit comments

Comments
 (0)