Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/site
diff options
context:
space:
mode:
authorFlorian Lacreuse <florianlacreuse@users.noreply.github.com>2022-09-01 04:19:45 +0300
committerGitHub <noreply@github.com>2022-09-01 04:19:45 +0300
commit87aaf9499620c9a7b592711a6e8d86e9a30467b6 (patch)
tree55a0421ecd9e8f39191de2ebd76535888d7b5561 /site
parent2f3aec819ae7bd04c00cc55fee977d12e11a46c6 (diff)
Add default select example in cheatsheet (#36877)
Co-authored-by: Julien Déramond <julien.deramond@orange.com>
Diffstat (limited to 'site')
-rw-r--r--site/content/docs/5.2/examples/cheatsheet-rtl/index.html11
-rw-r--r--site/content/docs/5.2/examples/cheatsheet/index.html11
2 files changed, 20 insertions, 2 deletions
diff --git a/site/content/docs/5.2/examples/cheatsheet-rtl/index.html b/site/content/docs/5.2/examples/cheatsheet-rtl/index.html
index 77accc9766..fae87929bb 100644
--- a/site/content/docs/5.2/examples/cheatsheet-rtl/index.html
+++ b/site/content/docs/5.2/examples/cheatsheet-rtl/index.html
@@ -339,6 +339,15 @@ direction: rtl
<label for="exampleInputPassword1" class="form-label">كلمة السر</label>
<input type="password" class="form-control" id="exampleInputPassword1">
</div>
+ <div class="mb-3">
+ <label for="exampleSelect" class="form-label">قائمة اختيار</label>
+ <select class="form-select" id="exampleSelect">
+ <option selected>افتح قائمة الاختيار هذه</option>
+ <option value="1">واحد</option>
+ <option value="2">اثنان</option>
+ <option value="3">ثلاثة</option>
+ </select>
+ </div>
<div class="mb-3 form-check">
<input type="checkbox" class="form-check-input" id="exampleCheck1">
<label class="form-check-label" for="exampleCheck1">اخترني</label>
@@ -440,7 +449,7 @@ direction: rtl
<input class="form-control form-control-lg" type="text" placeholder="حقل إدخال كبير" aria-label=".form-control-lg مثال">
</div>
<div class="mb-3">
- <select class="form-select form-select-lg mb-3" aria-label=".form-select-lg مثال">
+ <select class="form-select form-select-lg" aria-label=".form-select-lg مثال">
<option selected>افتح قائمة الاختيار هذه</option>
<option value="1">واحد</option>
<option value="2">اثنان</option>
diff --git a/site/content/docs/5.2/examples/cheatsheet/index.html b/site/content/docs/5.2/examples/cheatsheet/index.html
index 5627f83750..da6c381e49 100644
--- a/site/content/docs/5.2/examples/cheatsheet/index.html
+++ b/site/content/docs/5.2/examples/cheatsheet/index.html
@@ -338,6 +338,15 @@ body_class: "bg-light"
<label for="exampleInputPassword1" class="form-label">Password</label>
<input type="password" class="form-control" id="exampleInputPassword1">
</div>
+ <div class="mb-3">
+ <label for="exampleSelect" class="form-label">Select menu</label>
+ <select class="form-select" id="exampleSelect">
+ <option selected>Open this select menu</option>
+ <option value="1">One</option>
+ <option value="2">Two</option>
+ <option value="3">Three</option>
+ </select>
+ </div>
<div class="mb-3 form-check">
<input type="checkbox" class="form-check-input" id="exampleCheck1">
<label class="form-check-label" for="exampleCheck1">Check me out</label>
@@ -439,7 +448,7 @@ body_class: "bg-light"
<input class="form-control form-control-lg" type="text" placeholder=".form-control-lg" aria-label=".form-control-lg example">
</div>
<div class="mb-3">
- <select class="form-select form-select-lg mb-3" aria-label=".form-select-lg example">
+ <select class="form-select form-select-lg" aria-label=".form-select-lg example">
<option selected>Open this select menu</option>
<option value="1">One</option>
<option value="2">Two</option>