瀏覽代碼

Exford: Fix nested link colors.

Allan Cole 5 年之前
父節點
當前提交
ba2b07bd44
共有 1 個文件被更改,包括 12 次插入0 次删除
  1. 12 0
      exford/inc/wpcom-editor-colors.php

+ 12 - 0
exford/inc/wpcom-editor-colors.php

@@ -201,3 +201,15 @@ add_editor_color_rule( 'fg1', '#0963C4', array(
 	array( '#editor .editor-styles-wrapper .has-secondary-background-color[class]', 'background-color' ),
 
 ), __( 'Secondary Color' ) );
+
+
+/**
+ * Custom CSS
+ */
+function exford_editor_custom_colors_extra_css() { ?>
+	#editor .editor-styles-wrapper .has-text-color a,
+	#editor .editor-styles-wrapper .has-background a {
+		color: currentColor;
+	}
+<?php }
+add_theme_support( 'custom_colors_extra_css', 'exford_editor_custom_colors_extra_css' );