diff options
author | rbuj <[email protected]> | 2019-09-22 23:37:44 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2021-03-27 16:17:54 +0100 |
commit | 4728989448fb9a5391a27d2f637d55d6574b16bb (patch) | |
tree | 87da0f2791553641772fe577ee5b0fffbc7c8f0b /desktop-themes/TraditionalOk/gtk-3.0 | |
parent | 6127af25367a6c423826eea09be9307fcc08d615 (diff) | |
download | mate-themes-4728989448fb9a5391a27d2f637d55d6574b16bb.tar.bz2 mate-themes-4728989448fb9a5391a27d2f637d55d6574b16bb.tar.xz |
Traditional themes: fix tooltip shadow on openindiana
The compositor doesn't apply the shadow mask if border-radius is 0
closes https://github.com/mate-desktop/mate-themes/issues/255
Diffstat (limited to 'desktop-themes/TraditionalOk/gtk-3.0')
-rw-r--r-- | desktop-themes/TraditionalOk/gtk-3.0/gtk-widgets.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop-themes/TraditionalOk/gtk-3.0/gtk-widgets.css b/desktop-themes/TraditionalOk/gtk-3.0/gtk-widgets.css index 40a364b7..6bb9ad47 100644 --- a/desktop-themes/TraditionalOk/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/TraditionalOk/gtk-3.0/gtk-widgets.css @@ -70,7 +70,7 @@ tooltip.background, border-style: solid; border-width: 1px; border-color: @theme_tooltip_border_color; - border-radius: 0px; + border-radius: 2px; background-color: @theme_tooltip_bg_color; color: @theme_tooltip_fg_color; text-shadow: none; |