diff options
author | Wolfgang Ulbrich <[email protected]> | 2015-11-26 21:52:32 +0100 |
---|---|---|
committer | Wolfgang Ulbrich <[email protected]> | 2015-11-26 21:54:14 +0100 |
commit | 3425f8e47546fddc9221aa71317cf4ced43b82a5 (patch) | |
tree | f2bb3f746f85d813c7ec6ce057ecf94cdab7b82d /desktop-themes/TraditionalOkTest | |
parent | f2fdba9cfbb23f973b00ca5b362857a2d8005f6d (diff) | |
download | mate-themes-3425f8e47546fddc9221aa71317cf4ced43b82a5.tar.bz2 mate-themes-3425f8e47546fddc9221aa71317cf4ced43b82a5.tar.xz |
GTK3: use a horizontal padding=0 for GtkCell
- this is a workaround to fix https://github.com/mate-desktop/mate-system-monitor/issues/62
- the real issue should be in gtk+ itself
Diffstat (limited to 'desktop-themes/TraditionalOkTest')
-rw-r--r-- | desktop-themes/TraditionalOkTest/gtk-3.0/mate-applications.css | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/desktop-themes/TraditionalOkTest/gtk-3.0/mate-applications.css b/desktop-themes/TraditionalOkTest/gtk-3.0/mate-applications.css index b2b85858..6ece9f7c 100644 --- a/desktop-themes/TraditionalOkTest/gtk-3.0/mate-applications.css +++ b/desktop-themes/TraditionalOkTest/gtk-3.0/mate-applications.css @@ -507,3 +507,14 @@ EomThumbNav .button.flat:insensitive { border-color: @insensitive_border_color; } +/*********************** + * Mate-system-monitor * + ***********************/ + +/* workaround for crash if reducing the size of device column to zero, + horizontal padding needs to set to 0, any other value crashes m-s-m */ + +.notebook .vertical GtkScrolledWindow GtkTreeView .cell { + padding: 2px 0px; +} + |