]> git.eshelyaron.com Git - emacs.git/commitdiff
(custom-button-face, custom-button-pressed-face):
authorGerd Moellmann <gerd@gnu.org>
Fri, 23 Jun 2000 05:56:08 +0000 (05:56 +0000)
committerGerd Moellmann <gerd@gnu.org>
Fri, 23 Jun 2000 05:56:08 +0000 (05:56 +0000)
Specify foreground color.

lisp/cus-edit.el

index 9005e0a3fec21991c24c8c59f1e8aadab167a75e..8c2a801ba77b6335fcdf18af0efb4154e4ccf498 100644 (file)
@@ -1697,9 +1697,11 @@ and `face'."
 
 (defface custom-button-face
   '((((type x) (class color))          ; Like default modeline
-     (:box (:line-width 2 :style released-button) :background "lightgrey"))
+     (:box (:line-width 2 :style released-button)
+          :background "lightgrey" :foreground "black"))
     (((type w32) (class color))                ; Like default modeline
-     (:box (:line-width 2 :style released-button) :background "lightgrey"))
+     (:box (:line-width 2 :style released-button)
+          :background "lightgrey" :foreground "black"))
     (t
      nil))
   "Face used for buttons in customization buffers."
@@ -1708,9 +1710,11 @@ and `face'."
 
 (defface custom-button-pressed-face
   '((((type x) (class color))
-     (:box (:line-width 2 :style pressed-button) :background "lightgrey"))
+     (:box (:line-width 2 :style pressed-button)
+          :background "lightgrey" :foreground "black"))
     (((type w32) (class color))
-     (:box (:line-width 2 :style pressed-button) :background "lightgrey"))
+     (:box (:line-width 2 :style pressed-button)
+          :background "lightgrey" :foreground "black"))
     (t
      (:inverse-video t)))
   "Face used for buttons in customization buffers."