From b916f5f29879116978bd2441bdca56cca77a811d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?benjamin=20melan=C3=A7on?= Date: Mon, 23 Sep 2019 10:06:27 -0400 Subject: [PATCH] Add different background colors for each content type for non-image content --- web/themes/custom/geofresco/src/global/_layout.scss | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/web/themes/custom/geofresco/src/global/_layout.scss b/web/themes/custom/geofresco/src/global/_layout.scss index cca6db6..426e4b8 100644 --- a/web/themes/custom/geofresco/src/global/_layout.scss +++ b/web/themes/custom/geofresco/src/global/_layout.scss @@ -49,3 +49,15 @@ .page--content-item--gleaning .page-title { background-color: $gleaning; } + +.page--content-item--article .background-replacement-for-no-image { + background-color: $article; +} + +.page--content-item--blog .background-replacement-for-no-image { + background-color: $blog; +} + +.page--content-item--collection .background-replacement-for-no-image { + background-color: $collection; +}