joelshepherd / tabliss

A beautiful, customisable New Tab page for Firefox, Chrome, and Edge.
https://tabliss.io
GNU General Public License v3.0
2.15k stars 281 forks source link

[Feature Request] Option to change favicon and hide the "settings" icon. #679

Open kwan-vini opened 3 months ago

kwan-vini commented 3 months ago

An option to change the favicon to something else, or have no favicon. In my opinion i just think the default favicon looks kinda ugly. image Also add an option to hide the settings icon, or make it only appear when hovering over it. image

LouisPhilippeHeon commented 9 hours ago

I came here looking for an issue about changing the favicon, I would love to see this getting implemented.

However, you can use this custom css to make the setting icon appear only when hovered.

.Overlay svg {
  display: none;
}
.Overlay:hover svg {
  display: initial !important;
}
kwan-vini commented 7 hours ago

I came here looking for an issue about changing the favicon, I would love to see this getting implemented.

However, you can use this custom css to make the setting icon appear only when hovered.

.Overlay svg {
  display: none;
}
.Overlay:hover svg {
  display: initial !important;
}

Thank you so much!