Mercurial > emacs
changeset 32404:d355f52b4497
(header-line): Change tty-variant to use underlining.
author | Miles Bader <miles@gnu.org> |
---|---|
date | Thu, 12 Oct 2000 07:51:58 +0000 |
parents | c86b75f277bb |
children | fb79b2de00db |
files | lisp/faces.el |
diffstat | 1 files changed, 10 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/faces.el Thu Oct 12 07:39:14 2000 +0000 +++ b/lisp/faces.el Thu Oct 12 07:51:58 2000 +0000 @@ -1535,7 +1535,16 @@ (defface header-line '((((type tty)) - (:inverse-video t)) + ;; This used to be `:inverse-video t', but that doesn't look very + ;; good when combined with inverse-video mode-lines and multiple + ;; windows. Underlining looks better, and is more consistent with + ;; the window-system face variants, which deemphasize the + ;; header-line in relation to the mode-line face. If a terminal + ;; can't underline, then the header-line will end up without any + ;; highlighting; this may be too confusing in general, although it + ;; happens to look good with the only current use of header-lines, + ;; the info browser. XXX + (:underline t)) (((class color) (background light)) (:box (:line-width 1 :style released-button) :background "grey90" :foreground "grey20"