diff options
author | Wolfgang Ulbrich <[email protected]> | 2015-11-26 21:52:32 +0100 |
---|---|---|
committer | Wolfgang Ulbrich <[email protected]> | 2015-11-26 21:52:32 +0100 |
commit | e8baa0a66b4f96cb8579b618036a50dac3c89d34 (patch) | |
tree | 9714ab1ea986df550289399e27e203a1fb4e70d5 /desktop-themes/BlueMenta | |
parent | f657adbb3a24cb9045c212e506baad033d6f7ca0 (diff) | |
download | mate-themes-e8baa0a66b4f96cb8579b618036a50dac3c89d34.tar.bz2 mate-themes-e8baa0a66b4f96cb8579b618036a50dac3c89d34.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/BlueMenta')
-rw-r--r-- | desktop-themes/BlueMenta/gtk-3.0/mate-applications.css | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/desktop-themes/BlueMenta/gtk-3.0/mate-applications.css b/desktop-themes/BlueMenta/gtk-3.0/mate-applications.css index fd2eb405..0b23b990 100644 --- a/desktop-themes/BlueMenta/gtk-3.0/mate-applications.css +++ b/desktop-themes/BlueMenta/gtk-3.0/mate-applications.css @@ -921,3 +921,14 @@ EomThumbNav .button.flat:insensitive { border-color: transparent; } +/*********************** + * 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: 1px 0px 0px 0px; +} + |