Mercurial > emacs
changeset 31662:08829d842312
(header-line): Change defaults to be less confusing when mixed with mode-lines.
author | Miles Bader <miles@gnu.org> |
---|---|
date | Sun, 17 Sep 2000 16:41:02 +0000 |
parents | 94a313b4dca5 |
children | 91f4f31f58f2 |
files | lisp/faces.el |
diffstat | 1 files changed, 14 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/faces.el Sun Sep 17 16:21:42 2000 +0000 +++ b/lisp/faces.el Sun Sep 17 16:41:02 2000 +0000 @@ -1529,12 +1529,20 @@ (put 'modeline 'face-alias 'mode-line) (defface header-line - '((((type x) (class color)) - (:box (:line-width 2 :style released-button) - :background "grey75" :foreground "black")) - (((type w32) (class color)) - (:box (:line-width 2 :style released-button) - :background "grey75" :foreground "black")) + '((((type tty)) + (:inverse-video t)) + (((class color) (background light)) + (:box (:line-width 1 :style released-button) + :background "grey90" + :inherit mode-line)) + (((class color) (background dark)) + (:box (:line-width 1 :style released-button) + :background "grey20" + :inherit mode-line)) + (((class mono)) + (:box (:line-width 1 :style released-button) + :background "grey" + :inherit mode-line)) (t (:inverse-video t))) "Basic header-line face."