branch: elpa/popup
commit 748c109f3f7b5a5bd44472b398154341ccac3132
Merge: 967cde1 23652e7
Author: Tomohiro Matsuyama <[email protected]>
Commit: Tomohiro Matsuyama <[email protected]>
Merge pull request #31 from tkf/inherit-face
Inherit face
---
popup.el | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/popup.el b/popup.el
index 3caa82f..7bd3ad8 100644
--- a/popup.el
+++ b/popup.el
@@ -214,7 +214,7 @@ buffer."
:group 'popup)
(defface popup-summary-face
- '((t (:background "lightgray" :foreground "dimgray")))
+ '((t (:inherit popup-face :foreground "dimgray")))
"Face for popup summary."
:group 'popup)
@@ -1046,7 +1046,7 @@ PROMPT is a prompt string when reading events during
event loop."
;;; Popup Menu
(defface popup-menu-face
- '((t (:background "lightgray" :foreground "black")))
+ '((t (:inherit popup-face)))
"Face for popup menu."
:group 'popup)
@@ -1061,7 +1061,7 @@ PROMPT is a prompt string when reading events during
event loop."
:group 'popup)
(defface popup-menu-summary-face
- '((t (:background "lightgray" :foreground "dimgray")))
+ '((t (:inherit popup-summary-face)))
"Face for popup summary."
:group 'popup)