2015-04-16 14:57:49 -07:00
|
|
|
// Buttons
|
|
|
|
//
|
|
|
|
// Custom buttons for the docs.
|
|
|
|
|
2017-11-06 23:21:03 +01:00
|
|
|
.btn-bd-primary {
|
2018-09-19 04:31:51 +03:00
|
|
|
font-weight: 600;
|
2020-05-10 00:33:01 +03:00
|
|
|
color: $white;
|
|
|
|
background-color: $bd-purple-bright;
|
2015-08-14 22:45:55 -07:00
|
|
|
border-color: $bd-purple-bright;
|
2015-04-16 14:57:49 -07:00
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active {
|
2018-10-15 11:27:00 +03:00
|
|
|
color: $white;
|
2020-05-10 00:33:01 +03:00
|
|
|
background-color: darken($bd-purple-bright, 10%);
|
|
|
|
border-color: darken($bd-purple-bright, 10%);
|
2015-04-16 14:57:49 -07:00
|
|
|
}
|
2018-02-24 12:35:45 +01:00
|
|
|
|
|
|
|
&:focus {
|
|
|
|
box-shadow: 0 0 0 3px rgba($bd-purple-bright, .25);
|
|
|
|
}
|
2015-04-16 14:57:49 -07:00
|
|
|
}
|
2017-05-30 12:03:24 -07:00
|
|
|
|
2017-11-06 23:21:03 +01:00
|
|
|
.btn-bd-download {
|
2018-09-19 04:31:51 +03:00
|
|
|
font-weight: 600;
|
2017-11-06 23:21:03 +01:00
|
|
|
color: $bd-download;
|
|
|
|
border-color: $bd-download;
|
2017-05-30 12:03:24 -07:00
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active {
|
2017-11-06 23:21:03 +01:00
|
|
|
color: $bd-dark;
|
|
|
|
background-color: $bd-download;
|
|
|
|
border-color: $bd-download;
|
2017-05-30 12:03:24 -07:00
|
|
|
}
|
2018-02-24 12:35:45 +01:00
|
|
|
|
|
|
|
&:focus {
|
|
|
|
box-shadow: 0 0 0 3px rgba($bd-download, .25);
|
|
|
|
}
|
2017-05-30 12:03:24 -07:00
|
|
|
}
|
2020-08-04 18:54:01 +03: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);
|
|
|
|
}
|
|
|
|
}
|