Alert text color fix

This commit is contained in:
Tim Hovius 2015-02-23 09:39:08 +01:00
parent 925696bcb3
commit b74014cbfd

View File

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