forked from hiway/freedive
Highlight active icon
This commit is contained in:
parent
97a2464b14
commit
30e02f1c38
2 changed files with 26 additions and 14 deletions
|
@ -119,6 +119,7 @@ defmodule Liliform.Icon do
|
||||||
color -> color
|
color -> color
|
||||||
end
|
end
|
||||||
|
|
||||||
|
auto_color =
|
||||||
case assigns.for do
|
case assigns.for do
|
||||||
"alert" -> [class: "has-text-danger"]
|
"alert" -> [class: "has-text-danger"]
|
||||||
"info" -> [class: "has-text-info"]
|
"info" -> [class: "has-text-info"]
|
||||||
|
@ -133,6 +134,17 @@ defmodule Liliform.Icon do
|
||||||
"account" -> [color: "darkblue"]
|
"account" -> [color: "darkblue"]
|
||||||
_ -> [color: color]
|
_ -> [color: color]
|
||||||
end
|
end
|
||||||
|
|
||||||
|
case color do
|
||||||
|
"auto" ->
|
||||||
|
auto_color
|
||||||
|
|
||||||
|
"" ->
|
||||||
|
[]
|
||||||
|
|
||||||
|
_ ->
|
||||||
|
[color: color]
|
||||||
|
end
|
||||||
else
|
else
|
||||||
[class: "has-text-dark"]
|
[class: "has-text-dark"]
|
||||||
end
|
end
|
||||||
|
|
|
@ -50,7 +50,7 @@ defmodule Liliform.Page do
|
||||||
phx-click="filter"
|
phx-click="filter"
|
||||||
phx-value-key={filter.key}
|
phx-value-key={filter.key}
|
||||||
>
|
>
|
||||||
<.icon for={filter.icon} color="auto" />
|
<.icon for={filter.icon} color={if filter.active, do: "gray", else: "auto"} />
|
||||||
</a>
|
</a>
|
||||||
<% end %>
|
<% end %>
|
||||||
</.panel_tabs>
|
</.panel_tabs>
|
||||||
|
|
Loading…
Reference in a new issue