Browse Source

Fix warning color using background warning color

pull/2304/head
Jack Lukic 9 years ago
parent
commit
80e529b0b5
1 changed files with 9 additions and 7 deletions
  1. 16
      src/themes/default/globals/site.variables

16
src/themes/default/globals/site.variables

@ -290,7 +290,7 @@
@infoTextColor : #0E566D; @infoTextColor : #0E566D;
/* Warning */ /* Warning */
@warningColor : #FFF9EA;
@warningColor : #F2C037;
@warningBorderColor : #C9BA9B; @warningBorderColor : #C9BA9B;
@warningBackgroundColor : #FFFAF3; @warningBackgroundColor : #FFFAF3;
@warningHeaderColor : #794B02; @warningHeaderColor : #794B02;
@ -429,16 +429,18 @@
@pageMinWidth : 320px; @pageMinWidth : 320px;
/* Positive / Negative Dupes */ /* Positive / Negative Dupes */
@successColor : @positiveColor;
@errorColor : @negativeColor;
@successBackgroundColor : @positiveBackgroundColor; @successBackgroundColor : @positiveBackgroundColor;
@errorBackgroundColor : @negativeBackgroundColor;
@successTextColor : @positiveTextColor;
@errorTextColor : @negativeTextColor;
@successColor : @positiveColor;
@successBorderColor : @positiveBorderColor; @successBorderColor : @positiveBorderColor;
@errorBorderColor : @negativeBorderColor;
@successHeaderColor : @positiveHeaderColor; @successHeaderColor : @positiveHeaderColor;
@successTextColor : @positiveTextColor;
@errorBackgroundColor : @negativeBackgroundColor;
@errorColor : @negativeColor;
@errorBorderColor : @negativeBorderColor;
@errorHeaderColor : @negativeHeaderColor; @errorHeaderColor : @negativeHeaderColor;
@errorTextColor : @negativeTextColor;
/* Responsive */ /* Responsive */
@largestMobileScreen : (@tabletBreakpoint - 1px); @largestMobileScreen : (@tabletBreakpoint - 1px);

Loading…
Cancel
Save