From 7d20e02b2f4bae3cc7c9d23fa5b76eb8fe4de451 Mon Sep 17 00:00:00 2001 From: Alex Eagle Date: Thu, 22 Sep 2022 06:51:51 -0700 Subject: [PATCH] fix: corporate logo should not have a grey background All the logos became badly rendered in the switch from bazelbuild/bazel-website to devsite. From inspecting the DOM, I can see that the problem is coming from this calculated css style .devsite-landing-row-item-image:not([background]) { background: var(--devsite-background-4); } which I think comes from it being classified as a 'button'. I don't know if there's a way for me to preview this change however. --- site/en/community/experts/_index.yaml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/site/en/community/experts/_index.yaml b/site/en/community/experts/_index.yaml index 587e8018a8f598..b57903ef5c390f 100644 --- a/site/en/community/experts/_index.yaml +++ b/site/en/community/experts/_index.yaml @@ -29,7 +29,7 @@ landing_page: buttons: - label: Learn more path: https://www.aspect.dev/ - classname: button + classname: fully-clickable # Item 2 - image_path: /community/images/buildbuddy-logo.svg heading: BuildBuddy @@ -43,7 +43,7 @@ landing_page: buttons: - label: Learn more path: https://www.buildbuddy.io/ - classname: button + classname: fully-clickable # Item 3 - image_path: /community/images/codethink-logo.svg heading: Codethink @@ -56,7 +56,7 @@ landing_page: buttons: - label: Learn more path: https://www.codethink.co.uk/ - classname: button + classname: fully-clickable # Item 4 - image_path: /community/images/engflow-logo.svg heading: EngFlow @@ -69,7 +69,7 @@ landing_page: buttons: - label: Learn more path: https://www.engflow.com/ - classname: button + classname: fully-clickable # Item 5 - image_path: /community/images/epam-logo.png heading: EPAM @@ -83,7 +83,7 @@ landing_page: buttons: - label: Learn more path: https://www.epam.com/ - classname: button + classname: fully-clickable # Item 6 - image_path: /community/images/flare-logo.png heading: Flare @@ -96,7 +96,7 @@ landing_page: buttons: - label: Learn more path: https://flare.build/ - classname: button + classname: fully-clickable # Item 7 - image_path: /community/images/oasis-logo.png heading: Oasis Digital @@ -109,7 +109,7 @@ landing_page: buttons: - label: Learn more path: https://oasisdigital.com/ - classname: button + classname: fully-clickable # Item 8 - image_path: /community/images/sumglobal-logo.png heading: SUM Global @@ -122,7 +122,7 @@ landing_page: buttons: - label: Learn more path: http://sumglobal.com/bazel-build - classname: button + classname: fully-clickable # Item 9 - image_path: /community/images/tweag-logo.png heading: Tweag @@ -137,4 +137,4 @@ landing_page: buttons: - label: Learn more path: https://www.tweag.io/ - classname: button + classname: fully-clickable