소스 검색

Leven: clean up nested link colors.

Allan Cole 5 년 전
부모
커밋
2365a4e07f
1개의 변경된 파일11개의 추가작업 그리고 0개의 파일을 삭제
  1. 11 0
      leven/inc/wpcom-editor-colors.php

+ 11 - 0
leven/inc/wpcom-editor-colors.php

@@ -252,3 +252,14 @@ add_editor_color_rule( 'fg1', '#1285ce', array(
 			#editor .editor-styles-wrapper .wp-block .has-secondary-background-color[class]', 'background-color' ),
 
 ), __( 'Secondary Color' ) );
+
+/**
+ * Custom CSS
+ */
+function leven_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', 'leven_editor_custom_colors_extra_css' );