org-faces.el (org-document-title): Use the normal height.

* org-faces.el (org-document-title): Use the normal height.

The :height 1.44 was ugly, visually disruptive.  If you disagree
and miss the good old fat face, set `org-document-title' to whatever
suits you.
This commit is contained in:
Bastien Guerry 2012-07-28 17:36:10 +02:00
parent 42d2552a83
commit e6337a9e22

View file

@ -491,9 +491,9 @@ changes."
:version "22.1") :version "22.1")
(defface org-document-title (defface org-document-title
'((((class color) (background light)) (:foreground "midnight blue" :weight bold :height 1.44)) '((((class color) (background light)) (:foreground "midnight blue" :weight bold))
(((class color) (background dark)) (:foreground "pale turquoise" :weight bold :height 1.44)) (((class color) (background dark)) (:foreground "pale turquoise" :weight bold))
(t (:weight bold :height 1.44))) (t (:weight bold)))
"Face for document title, i.e. that which follows the #+TITLE: keyword." "Face for document title, i.e. that which follows the #+TITLE: keyword."
:group 'org-faces) :group 'org-faces)