diff options
| author | Miles Bader | 2002-02-12 02:59:39 +0000 |
|---|---|---|
| committer | Miles Bader | 2002-02-12 02:59:39 +0000 |
| commit | 53a2f6e13958e335fe07a75693e942cf5c47ea22 (patch) | |
| tree | 20a7ae9bdd50413f049ac93cae3fdf74891ca1b3 | |
| parent | 4f9b90604146129d6fa6095a810119d2776df09b (diff) | |
| download | emacs-53a2f6e13958e335fe07a75693e942cf5c47ea22.tar.gz emacs-53a2f6e13958e335fe07a75693e942cf5c47ea22.zip | |
(mode-line-inactive): Add dark-background variant.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/faces.el | 9 |
2 files changed, 12 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 3c7a17ff6de..e5286147be7 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2002-02-12 Miles Bader <miles@gnu.org> | ||
| 2 | |||
| 3 | * faces.el (mode-line-inactive): Add dark-background variant. | ||
| 4 | |||
| 1 | 2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk> | 5 | 2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk> |
| 2 | 6 | ||
| 3 | * toolbar/tool-bar.el (tool-bar-mode): Removed standard value. | 7 | * toolbar/tool-bar.el (tool-bar-mode): Removed standard value. |
| @@ -239,6 +243,7 @@ | |||
| 239 | * cus-start.el (x-use-underline-position-properties): | 243 | * cus-start.el (x-use-underline-position-properties): |
| 240 | Allow customization. | 244 | Allow customization. |
| 241 | 245 | ||
| 246 | >>>>>>> 1.3434 | ||
| 242 | 2002-02-04 Simon Josefsson <jas@extundo.com> | 247 | 2002-02-04 Simon Josefsson <jas@extundo.com> |
| 243 | 248 | ||
| 244 | * dired.el (dired-load-hook, dired-mode-hook) | 249 | * dired.el (dired-load-hook, dired-mode-hook) |
diff --git a/lisp/faces.el b/lisp/faces.el index 45b5d585282..be8f6e601e3 100644 --- a/lisp/faces.el +++ b/lisp/faces.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; faces.el --- Lisp faces | 1 | ;;; faces.el --- Lisp faces |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001 | 3 | ;; Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002 |
| 4 | ;; Free Software Foundation, Inc. | 4 | ;; Free Software Foundation, Inc. |
| 5 | 5 | ||
| 6 | ;; Maintainer: FSF | 6 | ;; Maintainer: FSF |
| @@ -1714,11 +1714,16 @@ created." | |||
| 1714 | :group 'basic-faces) | 1714 | :group 'basic-faces) |
| 1715 | 1715 | ||
| 1716 | (defface mode-line-inactive | 1716 | (defface mode-line-inactive |
| 1717 | '((((type x w32 mac) (class color)) | 1717 | '((((type x w32 mac) (background light) (class color)) |
| 1718 | :inherit mode-line | 1718 | :inherit mode-line |
| 1719 | :weight light | 1719 | :weight light |
| 1720 | :box (:line-width -1 :color "grey75" :style nil) | 1720 | :box (:line-width -1 :color "grey75" :style nil) |
| 1721 | :foreground "grey20" :background "grey90") | 1721 | :foreground "grey20" :background "grey90") |
| 1722 | (((type x w32 mac) (background dark) (class color)) | ||
| 1723 | :inherit mode-line | ||
| 1724 | :weight light | ||
| 1725 | :box (:line-width -1 :color "grey40" :style nil) | ||
| 1726 | :foreground "grey80" :background "grey30") | ||
| 1722 | (t | 1727 | (t |
| 1723 | :inverse-video t)) | 1728 | :inverse-video t)) |
| 1724 | "Basic mode line face for non-selected windows." | 1729 | "Basic mode line face for non-selected windows." |