mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-28 07:45:00 +00:00
(mode-line-inactive): New face for mode-line for
non-selected windows. (mode-line): Doc fix: Only used for selected window.
This commit is contained in:
parent
039b639462
commit
c5752dcb2f
@ -1708,13 +1708,27 @@ created."
|
||||
:background "grey75" :foreground "black"))
|
||||
(t
|
||||
(:inverse-video t)))
|
||||
"Basic mode line face."
|
||||
"Basic mode line face for selected window."
|
||||
:version "21.1"
|
||||
:group 'modeline
|
||||
:group 'basic-faces)
|
||||
|
||||
(defface mode-line-inactive
|
||||
'((((type x w32 mac) (class color))
|
||||
:inherit mode-line
|
||||
:weight light
|
||||
:box (:line-width -1 :color "grey75" :style nil)
|
||||
:foreground "grey20" :background "grey90")
|
||||
(t
|
||||
:inverse-video t))
|
||||
"Basic mode line face for non-selected windows."
|
||||
:version "21.2"
|
||||
:group 'modeline
|
||||
:group 'basic-faces)
|
||||
|
||||
;; Make `modeline' an alias for `mode-line', for compatibility.
|
||||
(put 'modeline 'face-alias 'mode-line)
|
||||
(put 'modeline-inactive 'face-alias 'mode-line-inactive)
|
||||
|
||||
(defface header-line
|
||||
'((((type tty))
|
||||
|
Loading…
Reference in New Issue
Block a user