diff options
| author | Miles Bader | 2000-09-18 05:55:03 +0000 |
|---|---|---|
| committer | Miles Bader | 2000-09-18 05:55:03 +0000 |
| commit | 8ec8f673fab973455f8a7e6b471144cb91cf806a (patch) | |
| tree | 478109e17ae405e7217e99489e540388d168fa8e /lisp/info.el | |
| parent | 690d30e676def870f8b8003ccb149fd61b6aff61 (diff) | |
| download | emacs-8ec8f673fab973455f8a7e6b471144cb91cf806a.tar.gz emacs-8ec8f673fab973455f8a7e6b471144cb91cf806a.zip | |
(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'." | |||
| 2340 | (Info-goto-emacs-command-node command))))) | 2340 | (Info-goto-emacs-command-node command))))) |
| 2341 | 2341 | ||
| 2342 | (defface Info-title-1-face | 2342 | (defface Info-title-1-face |
| 2343 | '((t (:family "helv" :height 240 :weight bold))) | 2343 | '((t (:height 1.2 :inherit Info-title-2-face))) |
| 2344 | "Face for Info titles at level 1." | 2344 | "Face for Info titles at level 1." |
| 2345 | :group 'info) | 2345 | :group 'info) |
| 2346 | 2346 | ||
| 2347 | (defface Info-title-2-face | 2347 | (defface Info-title-2-face |
| 2348 | '((t (:family "helv" :height 180 :weight bold))) | 2348 | '((t (:height 1.2 :inherit Info-title-3-face))) |
| 2349 | "Face for Info titles at level 2." | 2349 | "Face for Info titles at level 2." |
| 2350 | :group 'info) | 2350 | :group 'info) |
| 2351 | 2351 | ||
| 2352 | (defface Info-title-3-face | 2352 | (defface Info-title-3-face |
| 2353 | '((t (:family "helv" :height 160 :weight bold))) | 2353 | '((t (:height 1.2 :weight bold :inherit variable-pitch))) |
| 2354 | "Face for Info titles at level 3." | 2354 | "Face for Info titles at level 3." |
| 2355 | :group 'info) | 2355 | :group 'info) |
| 2356 | 2356 | ||