diff options
| author | Miles Bader | 2000-09-17 16:42:09 +0000 |
|---|---|---|
| committer | Miles Bader | 2000-09-17 16:42:09 +0000 |
| commit | a114b1ca6e39479bce038fe2f78ed07e3ef0b5bc (patch) | |
| tree | 279be857c586daf8d78839a382dfbe24f57ff0f4 | |
| parent | 50ac70af8aeca33b8240f0c6c70b3e7f5a4882bc (diff) | |
| download | emacs-a114b1ca6e39479bce038fe2f78ed07e3ef0b5bc.tar.gz emacs-a114b1ca6e39479bce038fe2f78ed07e3ef0b5bc.zip | |
(header-line): Change defaults to be less confusing when mixed with mode-lines.
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/faces.el | 20 |
2 files changed, 17 insertions, 6 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index f8f1059b30e..8efb523be63 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2000-09-18 Miles Bader <miles@gnu.org> | 1 | 2000-09-18 Miles Bader <miles@gnu.org> |
| 2 | 2 | ||
| 3 | * faces.el (header-line): Change defaults to be less confusing | ||
| 4 | when mixed with mode-lines. | ||
| 5 | |||
| 3 | * info.el (Info-fontify-node): Make a few cleanups. | 6 | * info.el (Info-fontify-node): Make a few cleanups. |
| 4 | Add extra `help-echo' and `local-map' props to node xrefs. | 7 | Add extra `help-echo' and `local-map' props to node xrefs. |
| 5 | Use header-specific faces for node-names & xrefs. | 8 | Use header-specific faces for node-names & xrefs. |
diff --git a/lisp/faces.el b/lisp/faces.el index fa0a68eda6d..d50600c4a6c 100644 --- a/lisp/faces.el +++ b/lisp/faces.el | |||
| @@ -1529,12 +1529,20 @@ created." | |||
| 1529 | (put 'modeline 'face-alias 'mode-line) | 1529 | (put 'modeline 'face-alias 'mode-line) |
| 1530 | 1530 | ||
| 1531 | (defface header-line | 1531 | (defface header-line |
| 1532 | '((((type x) (class color)) | 1532 | '((((type tty)) |
| 1533 | (:box (:line-width 2 :style released-button) | 1533 | (:inverse-video t)) |
| 1534 | :background "grey75" :foreground "black")) | 1534 | (((class color) (background light)) |
| 1535 | (((type w32) (class color)) | 1535 | (:box (:line-width 1 :style released-button) |
| 1536 | (:box (:line-width 2 :style released-button) | 1536 | :background "grey90" |
| 1537 | :background "grey75" :foreground "black")) | 1537 | :inherit mode-line)) |
| 1538 | (((class color) (background dark)) | ||
| 1539 | (:box (:line-width 1 :style released-button) | ||
| 1540 | :background "grey20" | ||
| 1541 | :inherit mode-line)) | ||
| 1542 | (((class mono)) | ||
| 1543 | (:box (:line-width 1 :style released-button) | ||
| 1544 | :background "grey" | ||
| 1545 | :inherit mode-line)) | ||
| 1538 | (t | 1546 | (t |
| 1539 | (:inverse-video t))) | 1547 | (:inverse-video t))) |
| 1540 | "Basic header-line face." | 1548 | "Basic header-line face." |