You are not logged in.
Pages: 1
When we open a program (for example Featherpad), then an icon appears in the task bar.
There it has a pale blue background.
https://www.bilder-upload.eu/bild-7dbf0 … 9.png.html
I do not like it, because some icons are not very good visible in this background.
I would like to have a background like this:
https://www.bilder-upload.eu/bild-87f04 … 5.png.html
Is there a way to get this?
Thank you.
Offline
I would like to have a background like this:
https://www.bilder-upload.eu/bild-87f04 … 5.png.html
What exactly are you referring to in this image?
Please remember to mark your thread [SOLVED] to make it easier for others to find
--- How To Ask For Help | FAQ | Developer Wiki | Community | Contribute ---
Online
This picture shows the colour I want to have as background. It is red.
Offline
Assuming that the plugin from the first image is the tasklist (Windows Buttons) plugin, something like this should do it:
.tasklist button:checked { background-image: none; background-color: #ff0000; border-color: #ff0000; }
Please remember to mark your thread [SOLVED] to make it easier for others to find
--- How To Ask For Help | FAQ | Developer Wiki | Community | Contribute ---
Online
Thanks for the code.
It made a difference. The program that is active, now has a red background. But the programs that are in the background still have the pale blue background.
In this printscreen firefox is the active window:
https://www.bilder-upload.eu/bild-a9780 … 7.png.html
Last edited by Tabespe (2020-08-04 16:46:38)
Offline
If you want all buttons to have the same background color, regardless of state (checked, hover, normal), then just removed the ":checked" from the previous directive.
If you want them to have another background color (so you can differentiate between the active and background windows) do the following:
.tasklist button { background-image: none; background-color: #xxxxxx; border-color: #xxxxxx; }
.tasklist button:checked { background-image: none; background-color: #ff0000; border-color: #ff0000; }
...and change xxxxxx to the rgb color code that you want to use. This first sets the "default" background color then sets the background color for the currently active tile to red.
Please remember to mark your thread [SOLVED] to make it easier for others to find
--- How To Ask For Help | FAQ | Developer Wiki | Community | Contribute ---
Online
This works great. Thank you.
Offline
Pages: 1
[ Generated in 0.009 seconds, 8 queries executed - Memory usage: 541.41 KiB (Peak: 542.7 KiB) ]