codebrainz commented on this pull request.
@@ -1,10 +0,0 @@
-@import "geany.css"; - -/* make close button on the editor's tabs smaller */ -#geany-close-tab-button { - -GtkWidget-focus-padding: 0; - -GtkWidget-focus-line-width: 0; - -GtkButton-default-border: 0; - -GtkButton-default-outside-border: 0; - -GtkButton-inner-border: 0; -}
I don't know specifically about file dialogs with the open file action, since GTK+'s CSS documentation is garbage, I don't even know where to look to find special stuff on a per-widget basis, but to do what I originally meant, style the file chooser for which we have no custom ID, it would just be:
```css GtkFileChooserDialog { font-size: x-large; } ```