diff options
Diffstat (limited to 'lisp/wid-edit.el')
-rw-r--r-- | lisp/wid-edit.el | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/lisp/wid-edit.el b/lisp/wid-edit.el index 94ab938a227..2dd19622be3 100644 --- a/lisp/wid-edit.el +++ b/lisp/wid-edit.el @@ -126,15 +126,19 @@ This exists as a variable so it can be set locally in certain buffers.") ;; background, at least on light-background TTYs. (defface widget-field '((((type tty)) :background "yellow3" - :foreground "black") + :foreground "black" + :extend t) (((class grayscale color) (background light)) - :background "gray85") + :background "gray85" + :extend t) (((class grayscale color) (background dark)) - :background "dim gray") + :background "dim gray" + :extend t) (t - :slant italic)) + :slant italic + :extend t)) "Face used for editable fields." :group 'widget-faces) |