Ich fand, der einfachste Weg ist, dies in Ihre Overrides zu setzen. Entschuldigung für meine einfallslose Farbwahl
Bootstrap 4-Alpha SASS
.my-btn {
//@include button-variant($btn-primary-color, $btn-primary-bg, $btn-primary-border);
@include button-variant(red, white, blue);
}
Bootstrap 4 Alpha SASS Beispiel
Bootstrap 3 WENIGER
.my-btn {
//.button-variant(@btn-primary-color; @btn-primary-bg; @btn-primary-border);
.button-variant(red; white; blue);
}
Bootstrap 3 WENIGER Beispiel
Bootstrap 3 SASS
.my-btn {
//@include button-variant($btn-primary-color, $btn-primary-bg, $btn-primary-border);
@include button-variant(red, white, blue);
}
Bootstrap 3 SASS Beispiel
Bootstrap 2.3 WENIGER
.btn-primary {
//.buttonBackground(@btnBackground, @btnBackgroundHighlight, @grayDark, 0 1px 1px rgba(255,255,255,.75));
.buttonBackground(red, white);
}
Bootstrap 2.3 WENIGER Beispiel
Bootstrap 2.3 SASS
.btn-primary {
//@include buttonBackground($btnPrimaryBackground, $btnPrimaryBackgroundHighlight);
@include buttonBackground(red, white);
}
Es kümmert sich für Sie um den Schwebeflug / die Aktiva
Wenn Sie in den Kommentaren die Schaltfläche aufhellen möchten, anstatt sie zu verdunkeln, wenn Sie Schwarz verwenden (oder nur umkehren möchten), müssen Sie die Klasse ein wenig weiter ausdehnen, wie folgt:
Bootstrap 3 SASS Ligthen
.my-btn {
// @include button-variant($btn-primary-color, $btn-primary-bg, $btn-primary-border);
$color: #fff;
$background: #000;
$border: #333;
@include button-variant($color, $background, $border);
// override the default darkening with lightening
&:hover,
&:focus,
&.focus,
&:active,
&.active,
.open > &.dropdown-toggle {
color: $color;
background-color: lighten($background, 20%); //10% default
border-color: lighten($border, 22%); // 12% default
}
}
Bootstrap 3 SASS Lighten Beispiel
lessc
. Bearbeiten Sie die CSS-Dateien nicht direkt! Es ist nicht wartbar.