Die Fokusanzeige in Gtk3, ähnlich wie HTML, ist definiert als ein CSS outline style :
[…]:focus(visible) { // We use the outline properties to signal the focus properties // to the adwaita engine: using real CSS properties is faster, // and we don't use any outlines for now. outline-color: gtkalpha(currentColor, 0.3); outline-style: dashed; outline-offset: -3px; outline-width: 1px; -gtk-outline-radius: 2px; }
Sie können dies durch Themen, ein benutzerdefiniertes Stylesheet oder vorübergehend (für Experimente) über den Inspektor überschreiben CtrlShiftI. Wenn Sie möchten, dass es wie Hot Dog Stand aussieht :
*:focus { color: blue; background-color: yellow; outline-color: red; outline-style: solid; outline-width: 2px; }
Das benutzerdefinierte Stylesheet wird ~/.config/gtk-3.0/gtk.css
unabhängig vom Thema in gespeichert und angewendet.