Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chore merge from 436de31 #1872

Merged
merged 24 commits into from
Mar 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
e35bc0f
436de310ba3257e356ec25c09768745baca0d4bb
julien-deramond Mar 6, 2023
aa11a12
eec501552016064056c379fb9ae42e93225e6046
julien-deramond Mar 6, 2023
13fd01f
20ab8219a0caca784483e93083cde269055d0f3a
julien-deramond Mar 6, 2023
d248f2a
e8b7d382767dcd73916ecd339c237fb49b9f3561
julien-deramond Mar 6, 2023
b09774f
5dc7f4c165c39b63eb5541a66d5ad443e35aaf09
julien-deramond Mar 6, 2023
eb6a8bd
16aff741ecf47b2ce682b625c1a6ab3ae80f8256
julien-deramond Mar 6, 2023
08e596b
1369b81492a5368ac40dbfac3d6553e32065f706
julien-deramond Mar 6, 2023
fe08993
bada2b9a90be728da0157a6f96e4de5364035f5f
julien-deramond Mar 6, 2023
a7f544e
d9d2b4fdb25395237ee70ec6ad502280e13a4639
julien-deramond Mar 6, 2023
22dd9f4
cfd3560c6df1decc0d203041c1218d9ca2547a67
julien-deramond Mar 6, 2023
82407a7
15744ee1d04bcca03155c3bb37ee7e65a7b011c6
julien-deramond Mar 6, 2023
d1635c0
1299b163c7526b0e6892856d87e8710bc195d7f5
julien-deramond Mar 6, 2023
698a103
cf6972ccf1f995394bf1d25b557bd43023b87f73
julien-deramond Mar 6, 2023
fd22ad8
82391bc7b7c41e40f6223b7cfac48c5c3ae56255
julien-deramond Mar 6, 2023
2b51621
3635f2cbb4e44f229ef00bbeec209ac8cd5a0f3d
julien-deramond Mar 6, 2023
7646cae
e69b618a1a5328744963bb7344aa16c7b0dd7c82
julien-deramond Mar 6, 2023
0d890f7
06f89276958ffdd9dc00e0d00b7ede3e00aec5df
julien-deramond Mar 6, 2023
782ccfb
a6b39f59ffd467283b8c525aa3289f11fe16ad68
julien-deramond Mar 6, 2023
85e26de
1a4b18cb140a52635d4351ea499df338885d5a38
julien-deramond Mar 6, 2023
d881373
d9037ba77f2cc43139659056ac55387ad876854d
julien-deramond Mar 6, 2023
b5e80e6
Changed Sass vars: -text* to -text-emphasis*
julien-deramond Mar 7, 2023
6a15ca4
Update site/content/docs/5.3/customize/color.md
julien-deramond Mar 7, 2023
6e6df26
Fix title level in buttons.md for Sass vars
julien-deramond Mar 7, 2023
fab7438
Merge branch 'main' into main-jd-chore-merge-from-436de31
julien-deramond Mar 7, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
79 changes: 79 additions & 0 deletions js/tests/visual/input.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="../../../dist/css/boosted.min.css" rel="stylesheet">
<title>Form</title>
<style></style>
</head>
<body>
<div class="container">
<h1>Input <small>Bootstrap Visual Test</small></h1>

<h2>No layout</h2>

<div class="mb-3">
Text
<input class="form-control">
</div>
<div class="mb-3">
Email
<input type="email" class="form-control">
</div>
<div class="mb-3">
Number
<input type="number" class="form-control">
</div>
<div class="mb-3">
Date
<input type="date" class="form-control">
</div>

<h2>Flex</h2>

<div class="d-flex flex-wrap gap-3 mb-3">
<div>
Text
<input class="form-control">
</div>
<div>
Email
<input type="email" class="form-control">
</div>
<div>
Number
<input type="number" class="form-control">
</div>
<div>
Date
<input type="date" class="form-control">
</div>
</div>

<h2>Grid</h2>

<div class="row mb-3">
<div class="col">
Text
<input class="form-control">
</div>
<div class="col">
Email
<input type="email" class="form-control">
</div>
<div class="col">
Number
<input type="number" class="form-control">
</div>
<div class="col">
Date
<input type="date" class="form-control">
</div>
</div>
</div>

<script src="../../../dist/js/bootstrap.bundle.js"></script>
<script></script>
</body>
</html>
Loading