1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-26 14:54:27 +02:00

reorder variables, rename -color to -color

This commit is contained in:
Mark Otto
2015-08-10 23:38:41 -07:00
parent 67765587d9
commit a90f6c7093
4 changed files with 95 additions and 77 deletions

View File

@@ -1,14 +1,14 @@
// Alerts
@mixin alert-variant($background, $border, $text-color) {
@mixin alert-variant($background, $border, $body-color) {
background-color: $background;
border-color: $border;
color: $text-color;
color: $body-color;
hr {
border-top-color: darken($border, 5%);
}
.alert-link {
color: darken($text-color, 10%);
color: darken($body-color, 10%);
}
}