🐛 Fixed active icons in dark mode (admin tab navigation, mobile)

no issue
When using dark mode on mobile, some of the icons in the admin tab
navigation become invisible when the section is active, due to a black
fill applied to them, which is not overridden.
There was a fix applied to the "dashboard" icon already - as this is the
default landing one, the bug would have hardly gone unnoticed there. I
used the same principle and applied it to the "posts" and "members"
icons as well.
This commit is contained in:
lorumic 2023-10-16 13:47:46 +02:00
parent 6941ef0148
commit 49dc9add54
2 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<title>content</title>
<path d="M11.246 24a.743.743 0 0 1-.53-.22.745.745 0 0 1-.205-.677l.75-3.75a.748.748 0 0 1 .205-.384l7.631-7.63a2.844 2.844 0 0 1 2.026-.839 2.873 2.873 0 0 1 2.03 4.899l-7.627 7.629a.74.74 0 0 1-.384.205l-3.749.75a.615.615 0 0 1-.147.017zm.956-1.706 2.424-.485 7.467-7.469a1.368 1.368 0 0 0 .003-1.932l-.03-.03a1.33 1.33 0 0 0-.941-.379c-.366 0-.71.142-.968.401l-7.471 7.47-.484 2.424zM2.242 21a2.252 2.252 0 0 1-2.25-2.25V2.25A2.252 2.252 0 0 1 2.242 0h15a2.252 2.252 0 0 1 2.25 2.25V9a.75.75 0 0 1-1.5 0V2.25a.75.75 0 0 0-.75-.75h-15a.75.75 0 0 0-.75.75v16.5c0 .414.336.75.75.75h6a.75.75 0 0 1 0 1.5h-6z"/>
<path d="M8.242 6a.75.75 0 0 1 0-1.5h6a.75.75 0 0 1 0 1.5h-6zm-3 4.5a.75.75 0 0 1 0-1.5h9a.75.75 0 0 1 0 1.5h-9zm0 4.5a.75.75 0 0 1 0-1.5h7.5a.75.75 0 0 1 0 1.5h-7.5z"/>
<path d="M11.246 24a.743.743 0 0 1-.53-.22.745.745 0 0 1-.205-.677l.75-3.75a.748.748 0 0 1 .205-.384l7.631-7.63a2.844 2.844 0 0 1 2.026-.839 2.873 2.873 0 0 1 2.03 4.899l-7.627 7.629a.74.74 0 0 1-.384.205l-3.749.75a.615.615 0 0 1-.147.017zm.956-1.706 2.424-.485 7.467-7.469a1.368 1.368 0 0 0 .003-1.932l-.03-.03a1.33 1.33 0 0 0-.941-.379c-.366 0-.71.142-.968.401l-7.471 7.47-.484 2.424zM2.242 21a2.252 2.252 0 0 1-2.25-2.25V2.25A2.252 2.252 0 0 1 2.242 0h15a2.252 2.252 0 0 1 2.25 2.25V9a.75.75 0 0 1-1.5 0V2.25a.75.75 0 0 0-.75-.75h-15a.75.75 0 0 0-.75.75v16.5c0 .414.336.75.75.75h6a.75.75 0 0 1 0 1.5h-6z" style="fill:none;stroke:currentColor;stroke-linecap:round;stroke-linejoin:round"/>
<path d="M8.242 6a.75.75 0 0 1 0-1.5h6a.75.75 0 0 1 0 1.5h-6zm-3 4.5a.75.75 0 0 1 0-1.5h9a.75.75 0 0 1 0 1.5h-9zm0 4.5a.75.75 0 0 1 0-1.5h7.5a.75.75 0 0 1 0 1.5h-7.5z" style="fill:none;stroke:currentColor;stroke-linecap:round;stroke-linejoin:round"/>
</svg>

Before

Width:  |  Height:  |  Size: 876 B

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -2,7 +2,7 @@
<title>members</title>
<defs>
<style>
.cls-1{fill:none;stroke:currentColor;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.5px}
.cls-1{fill:none!important;stroke:currentColor!important;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.5px}
</style>
</defs>
<circle class="cls-1" cx="7.5" cy="7.875" r="4.125"/>

Before

Width:  |  Height:  |  Size: 506 B

After

Width:  |  Height:  |  Size: 526 B