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)
|
,(doom-modeline-icon-height 1.1)
|
||||||
:family
|
:family
|
||||||
,(all-the-icons-icon-family icon)
|
,(all-the-icons-icon-family icon)
|
||||||
:inherit 'mode-line-inactive)))
|
:inherit mode-line-inactive)))
|
||||||
(if active doom-modeline-vspc doom-modeline-inactive-vspc))))
|
(if active doom-modeline-vspc doom-modeline-inactive-vspc))))
|
||||||
|
|
||||||
;; state icon
|
;; 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)
|
,(doom-modeline-icon-height 1.3)
|
||||||
:family
|
:family
|
||||||
,(all-the-icons-icon-family icon)
|
,(all-the-icons-icon-family icon)
|
||||||
:inherit 'mode-line-inactive)
|
:inherit mode-line-inactive)
|
||||||
'mode-line-inactive)))
|
'mode-line-inactive)))
|
||||||
(if active doom-modeline-vspc doom-modeline-inactive-vspc)))
|
(if active doom-modeline-vspc doom-modeline-inactive-vspc)))
|
||||||
|
|
||||||
|
@ -413,7 +413,7 @@ mouse-3: Toggle minor modes"
|
||||||
"The process info."
|
"The process info."
|
||||||
(if (doom-modeline--active)
|
(if (doom-modeline--active)
|
||||||
mode-line-process
|
mode-line-process
|
||||||
(propertize mode-line-process 'face 'mode-line-inactive)))
|
(propertize mode-line-process 'face 'mode-line-inactive)))
|
||||||
|
|
||||||
|
|
||||||
;;
|
;;
|
||||||
|
@ -520,7 +520,7 @@ Uses `all-the-icons-octicon' to fetch the icon."
|
||||||
,(doom-modeline-icon-height 1.2)
|
,(doom-modeline-icon-height 1.2)
|
||||||
:family
|
:family
|
||||||
,(all-the-icons-icon-family icon)
|
,(all-the-icons-icon-family icon)
|
||||||
:inherit 'mode-line-inactive)
|
:inherit mode-line-inactive)
|
||||||
'mode-line-inactive))
|
'mode-line-inactive))
|
||||||
doom-modeline-inactive-vspc
|
doom-modeline-inactive-vspc
|
||||||
(propertize text 'face 'mode-line-inactive)))
|
(propertize text 'face 'mode-line-inactive)))
|
||||||
|
@ -822,7 +822,7 @@ icons."
|
||||||
,(doom-modeline-icon-height 1.3)
|
,(doom-modeline-icon-height 1.3)
|
||||||
:family
|
:family
|
||||||
,(all-the-icons-icon-family icon)
|
,(all-the-icons-icon-family icon)
|
||||||
:inherit 'mode-line-inactive)
|
:inherit mode-line-inactive)
|
||||||
'mode-line-inactive)))
|
'mode-line-inactive)))
|
||||||
(when (and icon text) doom-modeline-inactive-vspc)
|
(when (and icon text) doom-modeline-inactive-vspc)
|
||||||
(when text (propertize text 'face 'mode-line-inactive))))
|
(when text (propertize text 'face 'mode-line-inactive))))
|
||||||
|
|
Loading…
Reference in a new issue