--- data/anaconda-gtk.css | 8 ++++++++ pyanaconda/ui/gui/spokes/welcome.glade | 3 +++ 2 files changed, 11 insertions(+)
diff --git a/data/anaconda-gtk.css b/data/anaconda-gtk.css index 8d71f60..89ad84a 100644 --- a/data/anaconda-gtk.css +++ b/data/anaconda-gtk.css @@ -190,3 +190,11 @@ AnacondaSpokeSelector:insensitive { color: @anaconda_insensitive_fg_color; border-color: @anaconda_insensitive_borders; } + +/* When multi-column GtkTreeViews set a row separator, the horizontal-sepataor + * is still applied to the row separator, breaking it up for each column. It + * looks kind of dumb. Provide a way to not do that. + */ +GtkTreeView.solid-separator { + -GtkTreeView-horizontal-separator: 0; +} diff --git a/pyanaconda/ui/gui/spokes/welcome.glade b/pyanaconda/ui/gui/spokes/welcome.glade index b2a6cc5..0180e63 100644 --- a/pyanaconda/ui/gui/spokes/welcome.glade +++ b/pyanaconda/ui/gui/spokes/welcome.glade @@ -316,6 +316,9 @@ <property name="AtkObject::accessible-name" translatable="yes">Languages</property> </object> </child> + <style> + <class name="solid-separator"/> + </style> </object> </child> </object>
On Wed, 2014-07-23 at 10:50 -0400, David Shea wrote:
data/anaconda-gtk.css | 8 ++++++++ pyanaconda/ui/gui/spokes/welcome.glade | 3 +++ 2 files changed, 11 insertions(+)
diff --git a/data/anaconda-gtk.css b/data/anaconda-gtk.css index 8d71f60..89ad84a 100644 --- a/data/anaconda-gtk.css +++ b/data/anaconda-gtk.css @@ -190,3 +190,11 @@ AnacondaSpokeSelector:insensitive { color: @anaconda_insensitive_fg_color; border-color: @anaconda_insensitive_borders; }
+/* When multi-column GtkTreeViews set a row separator, the horizontal-sepataor
- is still applied to the row separator, breaking it up for each column. It
- looks kind of dumb. Provide a way to not do that.
- */
+GtkTreeView.solid-separator {
- -GtkTreeView-horizontal-separator: 0;
+} diff --git a/pyanaconda/ui/gui/spokes/welcome.glade b/pyanaconda/ui/gui/spokes/welcome.glade index b2a6cc5..0180e63 100644 --- a/pyanaconda/ui/gui/spokes/welcome.glade +++ b/pyanaconda/ui/gui/spokes/welcome.glade @@ -316,6 +316,9 @@ <property name="AtkObject::accessible-name" translatable="yes">Languages</property> </object> </child>
<style><class name="solid-separator"/></style> </object> </child> </object>
Neat. ACK.
anaconda-patches@lists.fedorahosted.org