]> git.eshelyaron.com Git - emacs.git/commitdiff
(header-line): Change defaults to be less confusing when mixed with mode-lines.
authorMiles Bader <miles@gnu.org>
Sun, 17 Sep 2000 16:42:09 +0000 (16:42 +0000)
committerMiles Bader <miles@gnu.org>
Sun, 17 Sep 2000 16:42:09 +0000 (16:42 +0000)
lisp/ChangeLog
lisp/faces.el

index f8f1059b30e81f5edb98a2a57430006200b7a244..8efb523be63327af694c8160ca606eb5ba61043a 100644 (file)
@@ -1,5 +1,8 @@
 2000-09-18  Miles Bader  <miles@gnu.org>
 
+       * faces.el (header-line): Change defaults to be less confusing
+       when mixed with mode-lines.
+
        * info.el (Info-fontify-node): Make a few cleanups.
        Add extra `help-echo' and `local-map' props to node xrefs.
        Use header-specific faces for node-names & xrefs.
index fa0a68eda6d7094096e78101fa0e41fa7adbf84a..d50600c4a6c6eb970f3f36a2a646ca89dc445576 100644 (file)
@@ -1529,12 +1529,20 @@ created."
 (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."