Tagged Questions
1
vote
1answer
285 views
Disable css warnings
Everytime I open a gtk application it outputs css warnings (lack of units assuming px etc). Can I disable this dreadful verbosity?
example:
$ gedit
(gedit:19558): Gtk-WARNING **: Theme parsing ...
1
vote
0answers
196 views
Using thicker border for focus in GTK3 theme
I'm trying to make a gtk3 theme where the focused control is highlighted with a thicker border:
GtkButton /* etc. */ {
border-width: 1px;
}
.focused {
border-width: 2px;
}
This works, but is ...
3
votes
1answer
168 views
How to curve the edges of menus?
I want to know if this is possible. Like the menu when you right click, if the edges can be curved. I don't like to see the square appearance.