-
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
98 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
.accordion-button:not(.collapsed)::after { | ||
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); | ||
transform: rotate(-180deg); | ||
} | ||
|
||
.accordion-button::after { | ||
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); | ||
transition: transform 0.2s ease-in-out; | ||
} | ||
|
||
.accordion-flush .accordion-item, | ||
.accordion-flush .accordion-item .accordion-button, | ||
.accordion-flush .accordion-item .accordion-button.collapsed { | ||
border-radius: 0 !important; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,11 +7,11 @@ | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<title>Bootstrap 5 - IE11 Test</title> | ||
<meta name="description" content="Bootstrap 5 for Internet Explorer 11 Test Page"> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected].0/dist/css/bootstrap.min.css"> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected].1/dist/css/bootstrap.min.css"> | ||
<link rel="stylesheet" href="../css/bootstrap-ie11.css" | ||
media="all and (-ms-high-contrast: active), (-ms-high-contrast: none)"> | ||
|
||
<script src="https://code.jquery.com/jquery-3.6.0.slim.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/jquery@3.6.1/dist/jquery.slim.min.js"></script> | ||
|
||
<!-- required JavaScript polyfills for IE11 --> | ||
<script nomodule crossorigin="anonymous" | ||
|
@@ -41,7 +41,7 @@ | |
|
||
<nav class="navbar navbar-expand-lg navbar-light bg-light sticky-top fixed-top mb-5" id="nav"> | ||
<div class="container"> | ||
<a class="navbar-brand" href="#">Bootstrap 5 for IE 11 <small class="text-muted small fs-6">5.2.0</small></a> | ||
<a class="navbar-brand" href="#">Bootstrap 5 for IE 11 <small class="text-muted small fs-6">5.2.1</small></a> | ||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" | ||
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"> | ||
<span class="navbar-toggler-icon"></span> | ||
|
@@ -564,6 +564,56 @@ <h2 class="accordion-header" id="headingThree"> | |
</div> | ||
</div> | ||
</div> | ||
<h5 class="mt-4">Accordion Flush</h5> | ||
|
||
<div class="accordion accordion-flush" id="accordionFlushExample"> | ||
<div class="accordion-item"> | ||
<h2 class="accordion-header" id="flush-headingOne"> | ||
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" | ||
data-bs-target="#flush-collapseOne" aria-expanded="false" aria-controls="flush-collapseOne"> | ||
Accordion Item #1 | ||
</button> | ||
</h2> | ||
<div id="flush-collapseOne" class="accordion-collapse collapse" aria-labelledby="flush-headingOne" | ||
data-bs-parent="#accordionFlushExample"> | ||
<div class="accordion-body">Placeholder content for this accordion, which is intended to demonstrate the | ||
<code>.accordion-flush</code> class. This is the first item's accordion body. | ||
</div> | ||
</div> | ||
</div> | ||
<div class="accordion-item"> | ||
<h2 class="accordion-header" id="flush-headingTwo"> | ||
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" | ||
data-bs-target="#flush-collapseTwo" aria-expanded="false" aria-controls="flush-collapseTwo"> | ||
Accordion Item #2 | ||
</button> | ||
</h2> | ||
<div id="flush-collapseTwo" class="accordion-collapse collapse" aria-labelledby="flush-headingTwo" | ||
data-bs-parent="#accordionFlushExample"> | ||
<div class="accordion-body">Placeholder content for this accordion, which is intended to demonstrate the | ||
<code>.accordion-flush</code> class. This is the second item's accordion body. Let's imagine this being filled | ||
with some actual content. | ||
</div> | ||
</div> | ||
</div> | ||
<div class="accordion-item"> | ||
<h2 class="accordion-header" id="flush-headingThree"> | ||
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" | ||
data-bs-target="#flush-collapseThree" aria-expanded="false" aria-controls="flush-collapseThree"> | ||
Accordion Item #3 | ||
</button> | ||
</h2> | ||
<div id="flush-collapseThree" class="accordion-collapse collapse" aria-labelledby="flush-headingThree" | ||
data-bs-parent="#accordionFlushExample"> | ||
<div class="accordion-body">Placeholder content for this accordion, which is intended to demonstrate the | ||
<code>.accordion-flush</code> class. This is the third item's accordion body. Nothing more exciting happening | ||
here in terms of content, but just filling up the space to make it look, at least at first glance, a bit more | ||
representative of how this would look in a real-world application. | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<hr id="alerts" class="my-5"> | ||
|
||
<h3 class="pt-3">Alerts</h3> | ||
|
@@ -2370,7 +2420,7 @@ <h4 class="pt-1 h5 fw-normal">Radius</h4> | |
<div class="d-inline-block bg-secondary py-4 px-4 m-1 rounded-pill" style="width: 80px"></div> | ||
</div> | ||
|
||
<h5 class="pt-1 h6 fw-normal">Radius Sizes</h4> | ||
<h5 class="pt-1 h6 fw-normal">Radius Sizes</h5> | ||
|
||
<div class="my-1"> | ||
<div class="d-inline-block bg-secondary p-4 m-1 rounded-0"></div> | ||
|
@@ -2589,7 +2639,7 @@ <h5 class="pt-3">Text decoration</h5> | |
|
||
</main> | ||
|
||
<script src="https://cdn.jsdelivr.net/npm/[email protected].0/dist/js/bootstrap.bundle.min.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected].1/dist/js/bootstrap.bundle.min.js"></script> | ||
|
||
</body> | ||
|
||
|