Xfce Wiki

Sub domains
 

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
xfce:xfce4-panel:tasklist [2024/12/21 01:20] – fix css layout and comments kevinbowenxfce:xfce4-panel:tasklist [2025/02/06 17:03] (current) – Add separator gael
Line 55: Line 55:
   -XfceTasklist-menu-max-width-chars: 24;   -XfceTasklist-menu-max-width-chars: 24;
 } }
 +</file>
 +
 +----
 +
 +===== Theming Examples =====
 +
 +<file txt ~/.config/gtk-3.0/gtk.css>
 +/* window button font color */
 +/* NORMAL */
 +.tasklist button {
 +    color: #ffffff;
 +}
 +/* PRELIGHT */
 +.tasklist button:hover {
 +    color: #ffffff;
 +}
 +/* ACTIVE - only while being clicked */
 +.tasklist button:active {
 +    color: #000000;
 +}
 +/* SELECTED */
 +.tasklist button:checked {
 +    color: #000000;
 +}
 +
 +/* icon text not truncated */
 +XfdesktopIconView.view {
 +   -XfdesktopIconView-ellipsize-icon-labels: 0;
 +}
 +
 </file> </file>