diff options
| author | XhmikosR <[email protected]> | 2022-12-24 18:37:22 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-12-24 18:37:22 +0200 |
| commit | cf9454caa00872899215603e5e036d9a824b1b11 (patch) | |
| tree | af5a1e3f18dd0b7117a2d32cad38721b7dc71a18 /site/content/docs/5.3/examples/dropdowns/dropdowns.css | |
| parent | 41f62c5a11d98d49646296f996fa844d05f9514d (diff) | |
| download | bootstrap-cf9454caa00872899215603e5e036d9a824b1b11.tar.xz bootstrap-cf9454caa00872899215603e5e036d9a824b1b11.zip | |
Release v5.3.0-alpha1 (#37661)
* Bump version to 5.3.0-alpha1
* Dist
* Add docs versions updates
* Update note in homepage hero
Co-authored-by: Mark Otto <[email protected]>
Diffstat (limited to 'site/content/docs/5.3/examples/dropdowns/dropdowns.css')
| -rw-r--r-- | site/content/docs/5.3/examples/dropdowns/dropdowns.css | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/site/content/docs/5.3/examples/dropdowns/dropdowns.css b/site/content/docs/5.3/examples/dropdowns/dropdowns.css new file mode 100644 index 000000000..556f310a9 --- /dev/null +++ b/site/content/docs/5.3/examples/dropdowns/dropdowns.css @@ -0,0 +1,79 @@ +.dropdown-menu { + margin: 4rem auto; +} + +.dropdown-item-danger { + color: var(--bs-red); +} +.dropdown-item-danger:hover, +.dropdown-item-danger:focus { + color: #fff; + background-color: var(--bs-red); +} +.dropdown-item-danger.active { + background-color: var(--bs-red); +} + +.btn-hover-light { + background-color: var(--bs-white); +} +.btn-hover-light:hover, +.btn-hover-light:focus { + color: var(--bs-blue); + background-color: var(--bs-light); +} + +.cal-month, +.cal-days, +.cal-weekdays { + display: grid; + grid-template-columns: repeat(7, 1fr); + align-items: center; +} +.cal-month-name { + grid-column-start: 2; + grid-column-end: 7; + text-align: center; +} +.cal-weekday, +.cal-btn { + display: flex; + flex-shrink: 0; + align-items: center; + justify-content: center; + height: 3rem; + padding: 0; +} +.cal-btn:not([disabled]) { + font-weight: 500; +} +.cal-btn:hover, +.cal-btn:focus { + background-color: rgba(0, 0, 0, .05); +} +.cal-btn[disabled] { + border: 0; + opacity: .5; +} + +.form-control-dark { + background-color: rgba(255, 255, 255, .05); + border-color: rgba(255, 255, 255, .15); +} + + +.w-220px { + width: 220px; +} + +.w-280px { + width: 280px; +} + +.w-340px { + width: 340px; +} + +.w-600px { + width: 600px; +} |
