summaryrefslogtreecommitdiff
path: root/lisp/faces.el
diff options
context:
space:
mode:
authorMiles Bader <miles@gnu.org>2000-10-12 07:51:58 +0000
committerMiles Bader <miles@gnu.org>2000-10-12 07:51:58 +0000
commit56e380d934095a4f4d0bdb075d11339f7215f908 (patch)
tree447cbd0882b5a19c6bb432df6fcd53807acd56d6 /lisp/faces.el
parente7c1d8bb97c15f0a680c6b9ae92471050df2a29f (diff)
downloademacs-56e380d934095a4f4d0bdb075d11339f7215f908.tar.gz
(header-line): Change tty-variant to use underlining.
Diffstat (limited to 'lisp/faces.el')
-rw-r--r--lisp/faces.el11
1 files changed, 10 insertions, 1 deletions
diff --git a/lisp/faces.el b/lisp/faces.el
index fc026154e21..89c3bf73f3c 100644
--- a/lisp/faces.el
+++ b/lisp/faces.el
@@ -1535,7 +1535,16 @@ created."
(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"