aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiles Bader <[email protected]>2002-02-12 02:59:39 +0000
committerMiles Bader <[email protected]>2002-02-12 02:59:39 +0000
commit53a2f6e13958e335fe07a75693e942cf5c47ea22 (patch)
tree20a7ae9bdd50413f049ac93cae3fdf74891ca1b3
parent4f9b90604146129d6fa6095a810119d2776df09b (diff)
(mode-line-inactive): Add dark-background variant.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/faces.el9
2 files changed, 12 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 3c7a17ff6d..e5286147be 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
+2002-02-12 Miles Bader <[email protected]>
+
+ * faces.el (mode-line-inactive): Add dark-background variant.
+
2002-02-11 Per Abrahamsen <[email protected]>
* toolbar/tool-bar.el (tool-bar-mode): Removed standard value.
@@ -239,6 +243,7 @@
* cus-start.el (x-use-underline-position-properties):
Allow customization.
+>>>>>>> 1.3434
2002-02-04 Simon Josefsson <[email protected]>
* dired.el (dired-load-hook, dired-mode-hook)
diff --git a/lisp/faces.el b/lisp/faces.el
index 45b5d58528..be8f6e601e 100644
--- a/lisp/faces.el
+++ b/lisp/faces.el
@@ -1,6 +1,6 @@
;;; faces.el --- Lisp faces
-;; Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001
+;; Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002
;; Free Software Foundation, Inc.
;; Maintainer: FSF
@@ -1714,11 +1714,16 @@ created."
:group 'basic-faces)
(defface mode-line-inactive
- '((((type x w32 mac) (class color))
+ '((((type x w32 mac) (background light) (class color))
:inherit mode-line
:weight light
:box (:line-width -1 :color "grey75" :style nil)
:foreground "grey20" :background "grey90")
+ (((type x w32 mac) (background dark) (class color))
+ :inherit mode-line
+ :weight light
+ :box (:line-width -1 :color "grey40" :style nil)
+ :foreground "grey80" :background "grey30")
(t
:inverse-video t))
"Basic mode line face for non-selected windows."