Debian 11とxfceを実行しながらデフォルトのスクロールバースライダーの色を変更する方法を見つけようとしていますが、暗い灰色が機能しません。
編集:いいね、これはうまくいきます:
scrollbar
{
-XfceTasklist-min-button-length: 3000;
/* Needed or else no buttons! */
-GtkScrollbar-has-backward-stepper: true;
-GtkScrollbar-has-forward-stepper: true;
}
scrollbar slider { min-width: 20px; }
scrollbar button {padding: 6px}
/* dark green: pointer is not in the active window */
scrollbar slider:backdrop { background-color: #00aa00; }
scrollbar button:backdrop { color: #00aa00; }
/* green: pointer is in the active window but not on the slider/button */
scrollbar slider { background-color: #00ff00; }
scrollbar button { color: #00ff00; }
/* dark red: pointer is hovering over slider/button, but mouse button not pressed */
scrollbar slider:hover { background-color: #aa0000; }
scrollbar button:hover { color: #aa0000; }
/* red: slider/button is active */
scrollbar slider:hover:active { background-color: #ff0000; }
scrollbar button:active { color: #ff0000; }
/* slider maxed out, window active */
scrollbar button:disabled { color: white; }
/* slider maxed out, window inactive */
scrollbar button:backdrop:disabled { color: white; }
/* What is this? */
scrollbar button:checked { color: black; }
...どんな意見や改善事項でも歓迎します。