2015-04-16 14:57:49 -07:00
|
|
|
// Buttons
|
|
|
|
//
|
|
|
|
// Custom buttons for the docs.
|
|
|
|
|
2021-07-27 21:36:12 -07:00
|
|
|
// scss-docs-start btn-css-vars-example
|
2017-11-06 23:21:03 +01:00
|
|
|
.btn-bd-primary {
|
2022-02-09 14:15:15 -08:00
|
|
|
--bs-btn-font-weight: 600;
|
|
|
|
--bs-btn-color: var(--bs-white);
|
|
|
|
--bs-btn-bg: var(--bd-violet);
|
|
|
|
--bs-btn-border-color: var(--bd-violet);
|
|
|
|
--bs-btn-hover-color: var(--bs-white);
|
|
|
|
--bs-btn-hover-bg: #{shade-color($bd-violet, 20%)};
|
|
|
|
--bs-btn-hover-border-color: #{shade-color($bd-violet, 20%)};
|
|
|
|
--bs-btn-focus-shadow-rgb: var(--bd-violet-rgb);
|
2015-04-16 14:57:49 -07:00
|
|
|
}
|
2021-07-27 21:36:12 -07:00
|
|
|
// scss-docs-end btn-css-vars-example
|
2017-05-30 12:03:24 -07:00
|
|
|
|
2022-02-09 14:15:15 -08:00
|
|
|
.btn-bd-accent {
|
|
|
|
--bs-btn-font-weight: 600;
|
|
|
|
--bs-btn-color: var(--bd-accent);
|
|
|
|
--bs-btn-border-color: var(--bd-accent);
|
|
|
|
--bs-btn-hover-color: var(--bd-dark);
|
|
|
|
--bs-btn-hover-bg: var(--bd-accent);
|
|
|
|
--bs-btn-hover-border-color: var(--bd-accent);
|
|
|
|
--bs-btn-focus-shadow-rgb: var(--bd-accent-rgb);
|
2017-05-30 12:03:24 -07:00
|
|
|
}
|
2019-09-05 11:43:31 -07:00
|
|
|
|
|
|
|
.btn-bd-light {
|
2022-02-09 14:15:15 -08:00
|
|
|
--bs-btn-color: var(--bs-gray-600);
|
|
|
|
--bs-btn-border-color: var(--bs-gray-300);
|
|
|
|
--bs-btn-active-color: var(--bd-violet);
|
|
|
|
--bs-btn-active-bg: var(--bs-white);
|
|
|
|
--bs-btn-active-border-color: var(--bd-violet);
|
|
|
|
--bs-btn-focus-shadow-rgb: var(--bd-violet-rgb);
|
2019-09-05 11:43:31 -07:00
|
|
|
}
|