瀏覽代碼

Redhill: update style-child-theme-editor

Andrés 5 年之前
父節點
當前提交
1ce54776fc
共有 2 個文件被更改,包括 6 次插入2 次删除
  1. 4 2
      redhill/sass/style-child-theme-editor.scss
  2. 2 0
      redhill/style-editor.css

+ 4 - 2
redhill/sass/style-child-theme-editor.scss

@@ -21,12 +21,14 @@
 
 // Reset the font-family override on html to make editor fonts match front-end
 html {
-  font-family: #{map-deep-get($config-global, "font", "family", "primary")};
+  font-family: #{map-deep-get($config-global, "font", "family", "primary")}; // For browsers without CSS custom properties support.
+  font-family: var( --font-headings, #{map-deep-get($config-global, "font", "family", "primary")} );
 }
 
 // Set the correct font family/size for the title
 .editor-post-title .editor-post-title__block .editor-post-title__input {
-  font-family: #{map-deep-get($config-global, "font", "family", "primary")};
+  font-family: #{map-deep-get($config-global, "font", "family", "primary")}; // For browsers without CSS custom properties support.
+  font-family: var( --font-headings, #{map-deep-get($config-global, "font", "family", "primary")} );
   font-size: #{map-deep-get($config-global, "font", "size", "xxxl")};
   text-align: center;
 }

+ 2 - 0
redhill/style-editor.css

@@ -195,10 +195,12 @@ a {
 
 html {
 	font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif;
+	font-family: var(--font-headings, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif);
 }
 
 .editor-post-title .editor-post-title__block .editor-post-title__input {
 	font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif;
+	font-family: var(--font-headings, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif);
 	font-size: 2.48832rem;
 	text-align: center;
 }