From b65f528375ad8ea74ecf6e53ee37daa2301bfde8 Mon Sep 17 00:00:00 2001 From: Rich Tabor Date: Tue, 11 Jul 2023 14:43:47 -0400 Subject: [PATCH] Fix LinkControl mark highlight to bold (#52517) --- .../block-editor/src/components/link-control/style.scss | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/packages/block-editor/src/components/link-control/style.scss b/packages/block-editor/src/components/link-control/style.scss index 21e488381f1bd6..565b6b05957f5d 100644 --- a/packages/block-editor/src/components/link-control/style.scss +++ b/packages/block-editor/src/components/link-control/style.scss @@ -139,6 +139,12 @@ $preview-image-height: 140px; // Inline block required to preserve white space // between `` elements and text nodes. display: inline-block; + + mark { + font-weight: 600; + color: inherit; + background-color: transparent; + } } .components-menu-item__shortcut { @@ -213,7 +219,7 @@ $preview-image-height: 140px; position: relative; mark { - font-weight: 700; + font-weight: 600; color: inherit; background-color: transparent; }