Fix inheritance setting for Org mode line face

Should not inherit from any face, so that the background is consistent with the rest of the
mode-line.
This commit is contained in:
Daniel Borchmann 2025-06-07 20:34:58 +02:00
parent 45123dee0a
commit 4593f083e6
No known key found for this signature in database
GPG Key ID: 50EA937BF472ADD1
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ Known to work well with the `solarized-dark theme.")
'(org-column ((t (:strike-through nil :underline nil :slant normal :weight normal)))) '(org-column ((t (:strike-through nil :underline nil :slant normal :weight normal))))
'(org-headline-done ((t (:foreground "#859900")))) '(org-headline-done ((t (:foreground "#859900"))))
'(org-link ((t (:inherit link :weight normal)))) '(org-link ((t (:inherit link :weight normal))))
'(org-mode-line-clock ((t (:inherit default)))) '(org-mode-line-clock ((t (:inherit nil))))
'(outline-4 ((t (:inherit org-level-4)))) '(outline-4 ((t (:inherit org-level-4))))
'(flyspell-duplicate ((t (:underline (:color "orange red" :style wave))))) '(flyspell-duplicate ((t (:underline (:color "orange red" :style wave)))))
'(flyspell-incorrect ((t (:underline (:color "orange red" :style wave))))) '(flyspell-incorrect ((t (:underline (:color "orange red" :style wave)))))

View File

@ -18,7 +18,7 @@
'(org-column ((t (:strike-through nil :underline nil :slant normal :weight normal :height 110 :family "DejaVu Sans Mono")))) '(org-column ((t (:strike-through nil :underline nil :slant normal :weight normal :height 110 :family "DejaVu Sans Mono"))))
'(org-headline-done ((t (:foreground "#859900")))) '(org-headline-done ((t (:foreground "#859900"))))
'(org-link ((t (:inherit link :weight normal)))) '(org-link ((t (:inherit link :weight normal))))
'(org-mode-line-clock ((t (:inherit default)))) '(org-mode-line-clock ((t (:inherit nil))))
'(outline-4 ((t (:inherit org-level-4)))) '(outline-4 ((t (:inherit org-level-4))))
'(flyspell-duplicate ((t (:underline (:color "orange red" :style wave))))) '(flyspell-duplicate ((t (:underline (:color "orange red" :style wave)))))
'(flyspell-incorrect ((t (:underline (:color "orange red" :style wave))))) '(flyspell-incorrect ((t (:underline (:color "orange red" :style wave)))))