diff options
| author | Miles Bader | 2000-10-23 04:50:20 +0000 |
|---|---|---|
| committer | Miles Bader | 2000-10-23 04:50:20 +0000 |
| commit | 984905989e6b003a54655502cc85dde21f9e2fed (patch) | |
| tree | bd06727a755d5fb8d001222483d412d2d9f6329a | |
| parent | 7f1c969b3ae5bf7648d407f8463b6198d71eafda (diff) | |
| download | emacs-984905989e6b003a54655502cc85dde21f9e2fed.tar.gz emacs-984905989e6b003a54655502cc85dde21f9e2fed.zip | |
(header-line): Make more reasonable on mono/grayscale displays.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/faces.el | 32 |
2 files changed, 25 insertions, 12 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 2531ef0de1b..5ced92fa811 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2000-10-23 Miles Bader <miles@lsi.nec.co.jp> | ||
| 2 | |||
| 3 | * faces.el (header-line): Make more reasonable on mono/grayscale | ||
| 4 | displays. | ||
| 5 | |||
| 1 | 2000-10-23 Andrew Choi <akochoi@i-cable.com> | 6 | 2000-10-23 Andrew Choi <akochoi@i-cable.com> |
| 2 | 7 | ||
| 3 | * cus-edit.el (custom-button-face): Use 3D look for mac. | 8 | * cus-edit.el (custom-button-face): Use 3D look for mac. |
diff --git a/lisp/faces.el b/lisp/faces.el index 1a246af0a5a..28ebba796c4 100644 --- a/lisp/faces.el +++ b/lisp/faces.el | |||
| @@ -1552,18 +1552,26 @@ created." | |||
| 1552 | ;; happens to look good with the only current use of header-lines, | 1552 | ;; happens to look good with the only current use of header-lines, |
| 1553 | ;; the info browser. XXX | 1553 | ;; the info browser. XXX |
| 1554 | (:underline t)) | 1554 | (:underline t)) |
| 1555 | (((class color) (background light)) | 1555 | (((class color grayscale) (background light)) |
| 1556 | (:box (:line-width 1 :style released-button) | 1556 | (:inherit mode-line |
| 1557 | :background "grey90" :foreground "grey20" | 1557 | :background "grey90" :foreground "grey20" |
| 1558 | :inherit mode-line)) | 1558 | :box (:line-width 1 :style released-button))) |
| 1559 | (((class color) (background dark)) | 1559 | (((class color grayscale) (background dark)) |
| 1560 | (:box (:line-width 1 :style released-button) | 1560 | (:inherit mode-line |
| 1561 | :background "grey20" :foreground "grey90" | 1561 | :background "grey20" :foreground "grey90" |
| 1562 | :inherit mode-line)) | 1562 | :box (:line-width 1 :style released-button))) |
| 1563 | (((class mono)) | 1563 | (((class mono) (background light)) |
| 1564 | (:box (:line-width 1 :style released-button) | 1564 | (:inherit mode-line |
| 1565 | :background "grey" | 1565 | :background "white" :foreground "black" |
| 1566 | :inherit mode-line)) | 1566 | :inverse-video nil |
| 1567 | :box nil | ||
| 1568 | :underline t)) | ||
| 1569 | (((class mono) (background dark)) | ||
| 1570 | (:inherit mode-line | ||
| 1571 | :background "black" :foreground "white" | ||
| 1572 | :inverse-video nil | ||
| 1573 | :box nil | ||
| 1574 | :underline t)) | ||
| 1567 | (t | 1575 | (t |
| 1568 | (:inverse-video t))) | 1576 | (:inverse-video t))) |
| 1569 | "Basic header-line face." | 1577 | "Basic header-line face." |