Fixed alert text colors

This commit is contained in:
Tim Hovius 2015-02-20 16:53:12 +01:00
parent 6d4e67a5c1
commit a692909235

View File

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