Streamlines form error colors to be inline with the rest of our color scheme

This commit is contained in:
Shannon
2014-06-26 13:31:39 +10:00
parent 0f7c407a7c
commit 70da51113c

View File

@@ -274,20 +274,20 @@
// Form states
// -------------------------
@formWarningText: #c09853;
@formWarningBackground: #fcf8e3;
@formWarningText: @orange;
@formWarningBackground: lighten(@warningBackground, 41%);
@formWarningBorder: darken(spin(@warningBackground, -10), 3%);
@formErrorText: #b94a48;
@formErrorBackground: #f2dede;
@formErrorText: @red;
@formErrorBackground: lighten(@errorBackground, 55%);
@formErrorBorder: darken(spin(@errorBackground, -10), 3%);
@formSuccessText: #468847;
@formSuccessBackground: #dff0d8;
@formSuccessText: @green;
@formSuccessBackground: lighten(@successBackground, 48%);
@formSuccessBorder: darken(spin(@successBackground, -10), 5%);
@formInfoText: #3a87ad;
@formInfoBackground: #d9edf7;
@formInfoText: @blue;
@formInfoBackground: lighten(@infoBackground, 41%);
@formInfoBorder: darken(spin(@infoBackground, -10), 7%);