changeset 31682:c7b40c9887c9

(Info-title-3-face, Info-title-2-face, Info-title-1-face): Use face inheritance and relative sizes instead of hard-wiring things.
author Miles Bader <miles@gnu.org>
date Mon, 18 Sep 2000 05:54:32 +0000
parents f89c2fe5fb38
children 67dd2c5ce0ed
files lisp/info.el
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/info.el	Mon Sep 18 05:48:14 2000 +0000
+++ b/lisp/info.el	Mon Sep 18 05:54:32 2000 +0000
@@ -2340,17 +2340,17 @@
 	   (Info-goto-emacs-command-node command)))))
 
 (defface Info-title-1-face
-  '((t (:family "helv" :height 240 :weight bold)))
+  '((t (:height 1.2 :inherit Info-title-2-face)))
   "Face for Info titles at level 1."
   :group 'info)
 
 (defface Info-title-2-face
-  '((t (:family "helv" :height 180 :weight bold)))
+  '((t (:height 1.2 :inherit Info-title-3-face)))
   "Face for Info titles at level 2."
   :group 'info)
 
 (defface Info-title-3-face
-  '((t (:family "helv" :height 160 :weight bold)))
+  '((t (:height 1.2 :weight bold :inherit variable-pitch)))
   "Face for Info titles at level 3."
   :group 'info)