mirror of
https://github.com/correl/doom-modeline.git
synced 2024-11-23 19:19:50 +00:00
Fix: invalid faces of icons.
This commit is contained in:
parent
a1e765fa56
commit
7ea698723f
1 changed files with 5 additions and 5 deletions
|
@ -307,7 +307,7 @@ directory, the file name, and its state (modified, read-only or non-existent)."
|
|||
,(doom-modeline-icon-height 1.1)
|
||||
:family
|
||||
,(all-the-icons-icon-family icon)
|
||||
:inherit 'mode-line-inactive)))
|
||||
:inherit mode-line-inactive)))
|
||||
(if active doom-modeline-vspc doom-modeline-inactive-vspc))))
|
||||
|
||||
;; state icon
|
||||
|
@ -323,7 +323,7 @@ directory, the file name, and its state (modified, read-only or non-existent)."
|
|||
,(doom-modeline-icon-height 1.3)
|
||||
:family
|
||||
,(all-the-icons-icon-family icon)
|
||||
:inherit 'mode-line-inactive)
|
||||
:inherit mode-line-inactive)
|
||||
'mode-line-inactive)))
|
||||
(if active doom-modeline-vspc doom-modeline-inactive-vspc)))
|
||||
|
||||
|
@ -520,7 +520,7 @@ Uses `all-the-icons-octicon' to fetch the icon."
|
|||
,(doom-modeline-icon-height 1.2)
|
||||
:family
|
||||
,(all-the-icons-icon-family icon)
|
||||
:inherit 'mode-line-inactive)
|
||||
:inherit mode-line-inactive)
|
||||
'mode-line-inactive))
|
||||
doom-modeline-inactive-vspc
|
||||
(propertize text 'face 'mode-line-inactive)))
|
||||
|
@ -822,7 +822,7 @@ icons."
|
|||
,(doom-modeline-icon-height 1.3)
|
||||
:family
|
||||
,(all-the-icons-icon-family icon)
|
||||
:inherit 'mode-line-inactive)
|
||||
:inherit mode-line-inactive)
|
||||
'mode-line-inactive)))
|
||||
(when (and icon text) doom-modeline-inactive-vspc)
|
||||
(when text (propertize text 'face 'mode-line-inactive))))
|
||||
|
|
Loading…
Reference in a new issue