Variable: gnus-mouse-face

gnus-mouse-face is a customizable variable defined in gnus.el.gz.

Value

highlight

Documentation

Face used for group or summary buffer mouse highlighting.

The line beneath the mouse pointer will be highlighted with this face.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus.el.gz
(defcustom gnus-mouse-face
  (condition-case ()
      (if (gnus-visual-p 'mouse-face 'highlight)
	  (if (boundp 'gnus-mouse-face)
	      (or gnus-mouse-face 'highlight)
	    'highlight)
	'default)
    (error 'highlight))
  "Face used for group or summary buffer mouse highlighting.
The line beneath the mouse pointer will be highlighted with this
face."
  :group 'gnus-visual
  :type 'face)