Commit 3d2debf9 authored by Alexandra Panyukova's avatar Alexandra Panyukova

warnings in indexhtml colored red

parent 29080da0
...@@ -397,8 +397,8 @@ div.alterator-accordion h3.ui-state-active { ...@@ -397,8 +397,8 @@ div.alterator-accordion h3.ui-state-active {
/* deprecated */ /* deprecated */
.error-message { .error-message {
background-color: #FFCACA; background-color: #@LIGHT_ERROR_HEX@;
border: 1px solid #FF6060; border: 1px solid #@DARK_ERROR_HEX@;
padding-left:10px; padding-left:10px;
padding-right:10px; padding-right:10px;
margin-bottom:10px; margin-bottom:10px;
......
...@@ -50,6 +50,11 @@ div.box { ...@@ -50,6 +50,11 @@ div.box {
border-radius: 0.5em; border-radius: 0.5em;
} }
div.warning {
border: 1px solid #@DARK_LABELS_HEX@;;
background-color:
}
#lang { #lang {
text-align: center; text-align: center;
} }
......
...@@ -9,9 +9,12 @@ LIGHT_COLOR_HEX=F4F8F9 ...@@ -9,9 +9,12 @@ LIGHT_COLOR_HEX=F4F8F9
MIDDLE_COLOR_HEX=E2E6EB MIDDLE_COLOR_HEX=E2E6EB
DARK_COLOR_HEX=1B3664 DARK_COLOR_HEX=1B3664
LIGHT_LABELS_HEX=EAEDEF LIGHT_LABELS_HEX=EAEDEF
DARK_LABELS_HEX=B51F2D DARK_LABELS_HEX=B51F2D #selection
MIDDLE_LABELS_HEX=415E6F MIDDLE_LABELS_HEX=415E6F
DARK_ERROR_HEX=DARK_LABELS_HEX
LIGHT_ERROR_HEX=FFCACA
LIGHT_COLOR_DEC=`./color_dec ${LIGHT_COLOR_HEX}` LIGHT_COLOR_DEC=`./color_dec ${LIGHT_COLOR_HEX}`
MIDDLE_COLOR_DEC=`./color_dec ${MIDDLE_COLOR_HEX}` MIDDLE_COLOR_DEC=`./color_dec ${MIDDLE_COLOR_HEX}`
DARK_COLOR_DEC=`./color_dec ${DARK_COLOR_HEX}` DARK_COLOR_DEC=`./color_dec ${DARK_COLOR_HEX}`
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment