Box around labels.
This commit is contained in:
parent
5661df2222
commit
dcbb449238
1 changed files with 7 additions and 2 deletions
9
magit.el
9
magit.el
|
@ -187,7 +187,7 @@ Many Magit faces inherit from this one by default."
|
|||
'((((class color) (background light))
|
||||
:foreground "firebrick")
|
||||
(((class color) (background dark))
|
||||
:foreground "OrangeRed"))
|
||||
:foreground "tomato"))
|
||||
"Face for the sha1 element of the log output."
|
||||
:group 'magit)
|
||||
|
||||
|
@ -222,9 +222,11 @@ Many Magit faces inherit from this one by default."
|
|||
|
||||
(defface magit-log-head-label-remote
|
||||
'((((class color) (background light))
|
||||
:box t
|
||||
:background "Grey85"
|
||||
:foreground "OliveDrab4")
|
||||
(((class color) (background dark))
|
||||
:box t
|
||||
:background "Grey11"
|
||||
:foreground "DarkSeaGreen2"))
|
||||
"Face for remote branch head labels shown in log buffer."
|
||||
|
@ -232,9 +234,11 @@ Many Magit faces inherit from this one by default."
|
|||
|
||||
(defface magit-log-head-label-tags
|
||||
'((((class color) (background light))
|
||||
:box t
|
||||
:background "Grey85"
|
||||
:foreground "VioletRed1")
|
||||
(((class color) (background dark))
|
||||
:box t
|
||||
:background "Grey13"
|
||||
:foreground "khaki1"))
|
||||
"Face for tag labels shown in log buffer."
|
||||
|
@ -242,9 +246,11 @@ Many Magit faces inherit from this one by default."
|
|||
|
||||
(defface magit-log-head-label-local
|
||||
'((((class color) (background light))
|
||||
:box t
|
||||
:background "Grey85"
|
||||
:foreground "LightSkyBlue4")
|
||||
(((class color) (background dark))
|
||||
:box t
|
||||
:background "Grey13"
|
||||
:foreground "LightSkyBlue1"))
|
||||
"Face for local branch head labels shown in log buffer."
|
||||
|
@ -3307,5 +3313,4 @@ Prefix arg means justify as well."
|
|||
((diff)
|
||||
(magit-interactive-resolve (cadr info)))))
|
||||
|
||||
|
||||
(provide 'magit)
|
||||
|
|
Loading…
Reference in a new issue