emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Fontify whole heading line
@ 2010-06-04 10:06 Sébastien Vauban
  2010-06-27  7:58 ` David Maus
  0 siblings, 1 reply; 3+ messages in thread
From: Sébastien Vauban @ 2010-06-04 10:06 UTC (permalink / raw)
  To: emacs-orgmode-mXXj517/zsQ

Hi,

I've set:

--8<---------------cut here---------------start------------->8---
(setq org-fontify-whole-heading-line t)
--8<---------------cut here---------------end--------------->8---

and would like to have the `org-level-1' underlined. To do so, in my
`color-theme.el':

--8<---------------cut here---------------start------------->8---
(org-level-1 ((t (:foreground "cornflower blue" :underline t :weight bold :height 1.8 :family "Arial"))))
--8<---------------cut here---------------end--------------->8---

Though I see the background color applied on the whole heading line (when in
SHOW-ALL mode), the underline is _not_. Is there a reason/fix for this?

Best regards,
  Seb

-- 
Sébastien Vauban


_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode-mXXj517/zsQ@public.gmane.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Fontify whole heading line
  2010-06-04 10:06 Fontify whole heading line Sébastien Vauban
@ 2010-06-27  7:58 ` David Maus
  2010-06-28  8:24   ` Sébastien Vauban
  0 siblings, 1 reply; 3+ messages in thread
From: David Maus @ 2010-06-27  7:58 UTC (permalink / raw)
  To: Sébastien Vauban; +Cc: emacs-orgmode


[-- Attachment #1.1: Type: text/plain, Size: 1129 bytes --]

Sébastien Vauban wrote:
>Hi,

>I've set:

>--8<---------------cut here---------------start------------->8---
>(setq org-fontify-whole-heading-line t)
>--8<---------------cut here---------------end--------------->8---

>and would like to have the `org-level-1' underlined. To do so, in my
>`color-theme.el':

>--8<---------------cut here---------------start------------->8---
>(org-level-1 ((t (:foreground "cornflower blue" :underline t :weight bold :height 1.8 :family "Arial"))))
>--8<---------------cut here---------------end--------------->8---

>Though I see the background color applied on the whole heading line (when in
>SHOW-ALL mode), the underline is _not_. Is there a reason/fix for this?

I cannot reproduce this with 

Org-mode version 6.36trans on 

GNU Emacs 23.2.1 (i486-pc-linux-gnu, GTK+ Version 2.20.0) of
 2010-05-16 on raven, modified by Debian

I've customize the face `org-level-1' to be underlined and, well:
everything besides the key word is, spaces included.

HTH
  -- David
-- 
OpenPGP... 0x99ADB83B5A4478E6
Jabber.... dmjena@jabber.org
Email..... dmaus@ictsoc.de

[-- Attachment #1.2: Type: application/pgp-signature, Size: 230 bytes --]

[-- Attachment #2: Type: text/plain, Size: 201 bytes --]

_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Fontify whole heading line
  2010-06-27  7:58 ` David Maus
@ 2010-06-28  8:24   ` Sébastien Vauban
  0 siblings, 0 replies; 3+ messages in thread
From: Sébastien Vauban @ 2010-06-28  8:24 UTC (permalink / raw)
  To: emacs-orgmode-mXXj517/zsQ

Hi David,

David Maus wrote:
> Sébastien Vauban wrote:
>> I've set:
>>
>>--8<---------------cut here---------------start------------->8---
>>(setq org-fontify-whole-heading-line t)
>>--8<---------------cut here---------------end--------------->8---
>>
>> and would like to have the `org-level-1' underlined. To do so, in my
>> `color-theme.el':
>>
>>--8<---------------cut here---------------start------------->8---
>>(org-level-1 ((t (:foreground "cornflower blue" :underline t :weight bold :height 1.8 :family "Arial"))))
>>--8<---------------cut here---------------end--------------->8---
>>
>> Though I see the background color applied on the whole heading line (when in
>> SHOW-ALL mode), the underline is _not_. Is there a reason/fix for this?
>
> I cannot reproduce this with 
>
> Org-mode version 6.36trans on 
>
> GNU Emacs 23.2.1 (i486-pc-linux-gnu, GTK+ Version 2.20.0) of
>  2010-05-16 on raven, modified by Debian
>
> I've customize the face `org-level-1' to be underlined and, well: everything
> besides the key word is, spaces included.

I meant "virtual" spaces as well: everything up to the right side of the
screen, even after the potential tags. What I looked for was having a real
full line, from left to right of the screen.

Now, to make such a title more visible, I've chosen this new config, which
pleases me a lot currently:

--8<---------------cut here---------------start------------->8---
(org-level-1 ((t (:foreground "cornflower blue" :box (:line-width 1 :color "#0000CC") :background "LightSteelBlue1" :weight bold :height 1.8 :family "Arial"))))
(org-level-2 ((t (:foreground "LimeGreen" :box (:line-width 1 :color "#00CC00") :background "DarkSeaGreen1" :weight bold :height 1.6 :family "Arial"))))
(org-level-3 ((t (:foreground "#F9A049" :weight bold :height 1.3 :family "Arial")))) ; orange
(org-level-4 ((t (:foreground "red3" :weight bold))))
--8<---------------cut here---------------end--------------->8---

Thanks for your help,
  Seb

-- 
Sébastien Vauban


_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode-mXXj517/zsQ@public.gmane.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2010-06-28  8:24 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-06-04 10:06 Fontify whole heading line Sébastien Vauban
2010-06-27  7:58 ` David Maus
2010-06-28  8:24   ` Sébastien Vauban

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).