mirror of
https://github.com/twbs/bootstrap.git
synced 2024-12-04 16:24:22 +01:00
520cc8de92
* Docs: group together examples reusable CSS in a stylesheet * Use pointer-events utility in sidebars example * Remove @import and move the content into _default/examples.html. Handle 2 sorts of dividers * Remove footers.css extra css declaration * Fix modals example * Review: remove .b-example-hr Co-authored-by: Gaël Poupard <ffoodd@users.noreply.github.com>
20 lines
332 B
CSS
20 lines
332 B
CSS
.form-control-dark {
|
|
color: #fff;
|
|
background-color: var(--bs-dark);
|
|
border-color: var(--bs-gray);
|
|
}
|
|
.form-control-dark:focus {
|
|
color: #fff;
|
|
background-color: var(--bs-dark);
|
|
border-color: #fff;
|
|
box-shadow: 0 0 0 .25rem rgba(255, 255, 255, .25);
|
|
}
|
|
|
|
.text-small {
|
|
font-size: 85%;
|
|
}
|
|
|
|
.dropdown-toggle {
|
|
outline: 0;
|
|
}
|