En Xfce al elegir el tema Dusk suele pasar que al no estar estandarizado afecta a diferentes aplicaciones. Por ejemplo, en el navegador firefox afecta al los cuadros de búsqueda de tal manera que no se puede ver los que se escribe. Para solucionar esto, hay que editar el archivo gtkrc.
Ir al directorio del tema:
# cd /usr/share/themes/Xfce-dusk/gtk-2.0
Hacer un backup del archivo que se va a modificar:
# cp gtkrc gtkrc.back
Editar el archivo:
# vim gtkrc
Cambiar los siguientes parámetros:
GtkEntry::cursor_color = “#fcfcfc”
GtkEntry::secondary_cursor_color = “#fcfcfc”
GtkTextView::cursor_color = “#fcfcfc”
GtkTextView::secondary_cursor_color = “#fcfcfc”
Por los siguientes:
GtkEntry::cursor_color = “#777777”
GtkEntry::secondary_cursor_color = “#777777”
GtkTextView::cursor_color = “#777777”
GtkTextView::secondary_cursor_color = “#777777”
Y también cambiar estos parámetros:
text[ACTIVE] = “#fcfcfc”
text[NORMAL] = “#fcfcfc”
Por estos:
text[ACTIVE] = “#777777”
text[NORMAL] = “#777777”
Y por último reiniciar lightdm o reiniciar el sistema
# service lightdm restart
o
# reboot