From 40135b2102019bd7d13be1c0bce3e307f2d6c73c Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Thu, 22 Jun 2023 15:59:22 -0400 Subject: [PATCH] Add missing comma to light-mode selector example --- docs/reference/images.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reference/images.md b/docs/reference/images.md index ee0245a1a..c13cf86ee 100644 --- a/docs/reference/images.md +++ b/docs/reference/images.md @@ -182,7 +182,7 @@ hash fragment to the image URL: === "Custom light scheme" ``` css - [data-md-color-scheme="custom-light"] img[src$="#only-dark"] + [data-md-color-scheme="custom-light"] img[src$="#only-dark"], [data-md-color-scheme="custom-light"] img[src$="#gh-dark-mode-only"] { display: none; /* Hide dark images in light mode */ }