[#11150] Chat icons are black in dark mode
Signed-off-by: andrey <motor4ik@gmail.com>
This commit is contained in:
parent
f7ec945c56
commit
0594548617
|
@ -122,7 +122,7 @@
|
||||||
:accessibility-label :unviewed-messages-public}]
|
:accessibility-label :unviewed-messages-public}]
|
||||||
[badge/message-counter unviewed-messages-count])]))
|
[badge/message-counter unviewed-messages-count])]))
|
||||||
|
|
||||||
(def icon-style
|
(defn icon-style []
|
||||||
{:color colors/black
|
{:color colors/black
|
||||||
:width 15
|
:width 15
|
||||||
:height 15
|
:height 15
|
||||||
|
@ -147,13 +147,13 @@
|
||||||
:align-items :center}
|
:align-items :center}
|
||||||
(cond
|
(cond
|
||||||
muted
|
muted
|
||||||
[icons/icon :main-icons/tiny-muted (assoc icon-style :color colors/gray)]
|
[icons/icon :main-icons/tiny-muted (assoc (icon-style) :color colors/gray)]
|
||||||
private-group?
|
private-group?
|
||||||
[icons/icon :main-icons/tiny-group icon-style]
|
[icons/icon :main-icons/tiny-group (icon-style)]
|
||||||
public-group?
|
public-group?
|
||||||
[icons/icon :main-icons/tiny-public icon-style]
|
[icons/icon :main-icons/tiny-public (icon-style)]
|
||||||
:else
|
:else
|
||||||
[icons/icon :main-icons/tiny-new-contact icon-style])
|
[icons/icon :main-icons/tiny-new-contact (icon-style)])
|
||||||
[quo/text {:weight :medium
|
[quo/text {:weight :medium
|
||||||
:color (when muted :secondary)
|
:color (when muted :secondary)
|
||||||
:accessibility-label :chat-name-text
|
:accessibility-label :chat-name-text
|
||||||
|
|
Loading…
Reference in New Issue