Add light notifications

This commit is contained in:
Jeremy Thomas
2020-01-05 12:56:19 +00:00
parent 5405a8b5c8
commit 28eb21b7b5
5 changed files with 65 additions and 15 deletions

View File

@@ -3429,31 +3429,61 @@ fieldset[disabled] .button {
color: #fff;
}
.notification.is-primary.is-light {
background-color: #ebfffc;
color: #00947e;
}
.notification.is-link {
background-color: #3273dc;
color: #fff;
}
.notification.is-link.is-light {
background-color: #eef3fc;
color: #2160c4;
}
.notification.is-info {
background-color: #3298dc;
color: #fff;
}
.notification.is-info.is-light {
background-color: #eef6fc;
color: #1d72aa;
}
.notification.is-success {
background-color: #48c774;
color: #fff;
}
.notification.is-success.is-light {
background-color: #effaf3;
color: #257942;
}
.notification.is-warning {
background-color: #ffdd57;
color: rgba(0, 0, 0, 0.7);
}
.notification.is-warning.is-light {
background-color: #fffbeb;
color: #947600;
}
.notification.is-danger {
background-color: #f14668;
color: #fff;
}
.notification.is-danger.is-light {
background-color: #feecf0;
color: #cc0f35;
}
.progress {
-moz-appearance: none;
-webkit-appearance: none;

File diff suppressed because one or more lines are too long