I've been working on customizing the theme of an application using Gtk3 and Css. I have successfully implemented my desired themes for the widgets by using gtk_widget_set_name
and defining names in CSS. However, I am facing an issue with removing the border of a GtkEntry
, including for the :focus
state.
Here's what I have tried:
#address_entry {
border: none;
border-style: none;
}
#address_entry:hover {
border: none;
border-style: none;
}
#address_entry:focus {
border: none;
border-style: none;
}
Although this code successfully removes the border when the entry is not in focus, it still displays a blue border when it is in focus due to my theme settings.
I'm now seeking guidance on how to completely remove the border for all states. Any suggestions would be greatly appreciated.