2015-04-16 23:57:49 +02:00
|
|
|
// Buttons
|
|
|
|
//
|
|
|
|
// Custom buttons for the docs.
|
|
|
|
|
2021-07-28 06:36:12 +02:00
|
|
|
// scss-docs-start btn-css-vars-example
|
2017-11-06 23:21:03 +01:00
|
|
|
.btn-bd-primary {
|
2022-02-09 23:15:15 +01: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 23:57:49 +02:00
|
|
|
}
|
2021-07-28 06:36:12 +02:00
|
|
|
// scss-docs-end btn-css-vars-example
|
2017-05-30 21:03:24 +02:00
|
|
|
|
2022-02-09 23:15:15 +01: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 21:03:24 +02:00
|
|
|
}
|
2019-09-05 20:43:31 +02:00
|
|
|
|
|
|
|
.btn-bd-light {
|
2022-02-09 23:15:15 +01: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 20:43:31 +02:00
|
|
|
}
|