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.
(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."