From d10d8a406216fc984b58e3d51cdd82d86cbe5a3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20Taymans?= Date: Mon, 15 Jan 2018 15:15:41 +0100 Subject: [PATCH] [IMP] website_theme: colors for warnings --- .../src/less/beesdoo_website_design.less | 47 ++++++++++++++++++- 1 file changed, 45 insertions(+), 2 deletions(-) diff --git a/beesdoo_website_theme/static/src/less/beesdoo_website_design.less b/beesdoo_website_theme/static/src/less/beesdoo_website_design.less index 8882adb..227030f 100644 --- a/beesdoo_website_theme/static/src/less/beesdoo_website_design.less +++ b/beesdoo_website_theme/static/src/less/beesdoo_website_design.less @@ -35,9 +35,12 @@ /* Defines variables */ -@colors: #FCC300, #BD0926, #12235A, #D0B565, #E7511E, #4B67AA, #5CBEC3, #1A171B; +// yellow , red , blue , beige , orange ,turquoise, black +@colors: #FCC300, #BD0926, #12235A, #D0B565, #E7511E, #5CBEC3, #1A171B; //@nbcolors: length(@colors); /* For less >= 1.6 */ -@nbcolors: 8; /* For less <=1.4 */ +@nbcolors: 7; /* For less <=1.4 */ +@colors-light: #fee799, #e49da8, #b7c2dd, #ece1c1, #f5b9a5, #bee5e7; +@nbcolors-light: 6; /* Main */ @@ -175,3 +178,43 @@ h2 font-family: BebasNeue, sans; font-size: 25px; } + +.alert-info +{ + background-color: extract(@colors-light, 3); + border-color: extract(@colors-light, 3); + color: extract(@colors, 3); +} + +.alert-warning +{ + background-color: extract(@colors-light, 1); + border-color: extract(@colors-light, 1); +} + +.alert-danger +{ + background-color: extract(@colors-light, 2); + border-color: extract(@colors-light, 2); +} + +.panel-warning +{ + background-color: extract(@colors-light, 1); +} + +.table > thead > tr > td.warning, +.table > tbody > tr > td.warning, +.table > tfoot > tr > td.warning, +.table > thead > tr > th.warning, +.table > tbody > tr > th.warning, +.table > tfoot > tr > th.warning, +.table > thead > tr.warning > td, +.table > tbody > tr.warning > td, +.table > tfoot > tr.warning > td, +.table > thead > tr.warning > th, +.table > tbody > tr.warning > th, +.table > tfoot > tr.warning > th +{ + background-color: extract(@colors-light, 1); +}