Skip to content

Commit eaad699

Browse files
Add default select example in cheatsheet
1 parent 6c221aa commit eaad699

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed

site/content/docs/5.2/examples/cheatsheet-rtl/index.html

+10-1
Original file line numberDiff line numberDiff line change
@@ -339,6 +339,15 @@ <h3>نظرة عامة</h3>
339339
<label for="exampleInputPassword1" class="form-label">كلمة السر</label>
340340
<input type="password" class="form-control" id="exampleInputPassword1">
341341
</div>
342+
<div class="mb-3">
343+
<label for="exampleSelect" class="form-label">قائمة اختيار</label>
344+
<select class="form-select" id="exampleSelect">
345+
<option selected>افتح قائمة الاختيار هذه</option>
346+
<option value="1">واحد</option>
347+
<option value="2">اثنان</option>
348+
<option value="3">ثلاثة</option>
349+
</select>
350+
</div>
342351
<div class="mb-3 form-check">
343352
<input type="checkbox" class="form-check-input" id="exampleCheck1">
344353
<label class="form-check-label" for="exampleCheck1">اخترني</label>
@@ -440,7 +449,7 @@ <h3>الأحجام</h3>
440449
<input class="form-control form-control-lg" type="text" placeholder="حقل إدخال كبير" aria-label=".form-control-lg مثال">
441450
</div>
442451
<div class="mb-3">
443-
<select class="form-select form-select-lg mb-3" aria-label=".form-select-lg مثال">
452+
<select class="form-select form-select-lg" aria-label=".form-select-lg مثال">
444453
<option selected>افتح قائمة الاختيار هذه</option>
445454
<option value="1">واحد</option>
446455
<option value="2">اثنان</option>

site/content/docs/5.2/examples/cheatsheet/index.html

+10-1
Original file line numberDiff line numberDiff line change
@@ -338,6 +338,15 @@ <h3>Overview</h3>
338338
<label for="exampleInputPassword1" class="form-label">Password</label>
339339
<input type="password" class="form-control" id="exampleInputPassword1">
340340
</div>
341+
<div class="mb-3">
342+
<label for="exampleSelect" class="form-label">Select menu</label>
343+
<select class="form-select" id="exampleSelect">
344+
<option selected>Open this select menu</option>
345+
<option value="1">One</option>
346+
<option value="2">Two</option>
347+
<option value="3">Three</option>
348+
</select>
349+
</div>
341350
<div class="mb-3 form-check">
342351
<input type="checkbox" class="form-check-input" id="exampleCheck1">
343352
<label class="form-check-label" for="exampleCheck1">Check me out</label>
@@ -439,7 +448,7 @@ <h3>Sizing</h3>
439448
<input class="form-control form-control-lg" type="text" placeholder=".form-control-lg" aria-label=".form-control-lg example">
440449
</div>
441450
<div class="mb-3">
442-
<select class="form-select form-select-lg mb-3" aria-label=".form-select-lg example">
451+
<select class="form-select form-select-lg" aria-label=".form-select-lg example">
443452
<option selected>Open this select menu</option>
444453
<option value="1">One</option>
445454
<option value="2">Two</option>

0 commit comments

Comments
 (0)