Make alert links readable

This commit is contained in:
James Brooks
2015-11-29 10:53:55 +00:00
parent d8156b0ee3
commit e46ee644ae
6 changed files with 57 additions and 40 deletions
+17 -2
View File
@@ -7,17 +7,32 @@
background-color: $cachet_green;
border: solid 2px $cachet_dark-green;
color: white;
a {
color: white;
font-weight: bold;
}
}
&.alert-info {
background: $cachet_blue;
border: solid 2px $cachet_dark-blue;
color: #FFF;
color: white;
a {
color: white;
font-weight: bold;
}
}
&.alert-danger {
background: $cachet_red;
border: solid 2px $cachet_dark-red;
color: #FFF;
color: white;
a {
color: white;
font-weight: bold;
}
}
}