diff options
author | raveit65 <[email protected]> | 2015-02-15 20:20:05 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2015-02-15 20:20:05 +0100 |
commit | a2b5187d238ac25e58e1a97c8e77121b67e2f13b (patch) | |
tree | 5bf177060df1ab50a154d2902187c43e38787300 /desktop-themes/Menta/gtk-3.0 | |
parent | 98d64d2111bb5bb14b483ffd9cda128fe5fa22a3 (diff) | |
download | mate-themes-a2b5187d238ac25e58e1a97c8e77121b67e2f13b.tar.bz2 mate-themes-a2b5187d238ac25e58e1a97c8e77121b67e2f13b.tar.xz |
Menta themes, Contrast themes GTK3: avoid resizing theme thumbnails in mate-appearance-properties
Diffstat (limited to 'desktop-themes/Menta/gtk-3.0')
-rw-r--r-- | desktop-themes/Menta/gtk-3.0/gtk-widgets.css | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/desktop-themes/Menta/gtk-3.0/gtk-widgets.css b/desktop-themes/Menta/gtk-3.0/gtk-widgets.css index 27768eb8..9d8f7a5d 100644 --- a/desktop-themes/Menta/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/Menta/gtk-3.0/gtk-widgets.css @@ -51,7 +51,9 @@ */ outline-color: alpha(@theme_text_color, 0.3); outline-style: dashed; - outline-offset: 2px; + outline-offset: -3px; /* 2px */ + outline-width: 0px; /* disable ugly focus-line */ + outline-radius: 2px; } /*************** @@ -3226,6 +3228,12 @@ GtkTreeView:selected:focus { outline-color: mix(@theme_selected_fg_color, @theme_selected_bg_color, 0.30); } +GtkIconView, +GtkViewport { + /* avoid resizing theme thumbnails in mate-appearance-properties */ + padding: 0px; +} + GtkIconView.cell:selected, GtkIconView.cell:selected:focus { border-radius: 4px; @@ -3238,6 +3246,11 @@ GtkIconView.cell:selected:focus { outline-offset: 3px; } +GtkIconView.cell:hover, +GtkIconView.cell:hover:focus { + border-radius: 4px; +} + .view { background-color: @theme_base_color; color: @theme_text_color; |