diff options
author | Miles Bader <miles@gnu.org> | 2000-09-18 05:55:03 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 2000-09-18 05:55:03 +0000 |
commit | 8ec8f673fab973455f8a7e6b471144cb91cf806a (patch) | |
tree | 478109e17ae405e7217e99489e540388d168fa8e /lisp/info.el | |
parent | 690d30e676def870f8b8003ccb149fd61b6aff61 (diff) | |
download | emacs-8ec8f673fab973455f8a7e6b471144cb91cf806a.tar.gz |
(Info-title-3-face, Info-title-2-face, Info-title-1-face):
Use face inheritance and relative sizes instead of hard-wiring things.
Diffstat (limited to 'lisp/info.el')
-rw-r--r-- | lisp/info.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/info.el b/lisp/info.el index 4a2ed94ad46..28ec2ca5e98 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -2340,17 +2340,17 @@ the variable `Info-file-list-for-emacs'." (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) |