Merge pull request #444 from timhovius/alert-text-color

Alert text color fix
This commit is contained in:
Fez Vrasta 2015-02-27 09:57:36 +01:00
commit d988ef6762

View File

@ -1,16 +1,23 @@
.alert {
border: 0px;
border-radius: 0;
.generic-variations(~"", @darkbg-text, {
background-color: @material-color;
color: @text-color;
a, .alert-link {
color: #FFFFFF;
color: @text-color;
}
.variations(~"", background-color, #FFFFFF);
});
&-info, &-danger, &-warning, &-success {
color: #FFFFFF;
color: @darkbg-text;
}
&-default {
a, .alert-link {
color: #000000;
color: @lightbg-text;
}
}
}