2015-04-17 05:57:49 +08:00
|
|
|
// Buttons
|
|
|
|
//
|
|
|
|
// Custom buttons for the docs.
|
|
|
|
|
2017-11-07 06:21:03 +08:00
|
|
|
.btn-bd-primary {
|
2018-09-19 09:31:51 +08:00
|
|
|
font-weight: 600;
|
2020-05-31 10:00:08 +08:00
|
|
|
color: $white;
|
|
|
|
background-color: $bd-purple-bright;
|
2015-08-15 13:45:55 +08:00
|
|
|
border-color: $bd-purple-bright;
|
2015-04-17 05:57:49 +08:00
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active {
|
2018-10-15 16:27:00 +08:00
|
|
|
color: $white;
|
2020-10-13 15:58:06 +08:00
|
|
|
background-color: shade-color($bd-purple-bright, 20%);
|
|
|
|
border-color: shade-color($bd-purple-bright, 20%);
|
2015-04-17 05:57:49 +08:00
|
|
|
}
|
2018-02-24 19:35:45 +08:00
|
|
|
|
|
|
|
&:focus {
|
|
|
|
box-shadow: 0 0 0 3px rgba($bd-purple-bright, .25);
|
|
|
|
}
|
2015-04-17 05:57:49 +08:00
|
|
|
}
|
2017-05-31 03:03:24 +08:00
|
|
|
|
2017-11-07 06:21:03 +08:00
|
|
|
.btn-bd-download {
|
2018-09-19 09:31:51 +08:00
|
|
|
font-weight: 600;
|
2017-11-07 06:21:03 +08:00
|
|
|
color: $bd-download;
|
|
|
|
border-color: $bd-download;
|
2017-05-31 03:03:24 +08:00
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active {
|
2017-11-07 06:21:03 +08:00
|
|
|
color: $bd-dark;
|
|
|
|
background-color: $bd-download;
|
|
|
|
border-color: $bd-download;
|
2017-05-31 03:03:24 +08:00
|
|
|
}
|
2018-02-24 19:35:45 +08:00
|
|
|
|
|
|
|
&:focus {
|
|
|
|
box-shadow: 0 0 0 3px rgba($bd-download, .25);
|
|
|
|
}
|
2017-05-31 03:03:24 +08:00
|
|
|
}
|
2019-09-06 02:43:31 +08:00
|
|
|
|
|
|
|
.btn-bd-light {
|
|
|
|
color: $gray-600;
|
|
|
|
border-color: $gray-300;
|
|
|
|
|
|
|
|
.show > &,
|
|
|
|
&:hover,
|
|
|
|
&:active {
|
|
|
|
color: $bd-purple-bright;
|
|
|
|
background-color: $white;
|
|
|
|
border-color: $bd-purple-bright;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
box-shadow: 0 0 0 3px rgba($bd-purple-bright, .25);
|
|
|
|
}
|
|
|
|
}
|