summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrbuj <[email protected]>2019-09-22 23:37:44 +0200
committerraveit65 <[email protected]>2021-03-27 16:17:54 +0100
commit4728989448fb9a5391a27d2f637d55d6574b16bb (patch)
tree87da0f2791553641772fe577ee5b0fffbc7c8f0b
parent6127af25367a6c423826eea09be9307fcc08d615 (diff)
downloadmate-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
-rw-r--r--desktop-themes/TraditionalGreen/gtk-3.0/gtk-widgets.css2
-rw-r--r--desktop-themes/TraditionalOk/gtk-3.0/gtk-widgets.css2
2 files changed, 2 insertions, 2 deletions
diff --git a/desktop-themes/TraditionalGreen/gtk-3.0/gtk-widgets.css b/desktop-themes/TraditionalGreen/gtk-3.0/gtk-widgets.css
index 0634c079..4a201618 100644
--- a/desktop-themes/TraditionalGreen/gtk-3.0/gtk-widgets.css
+++ b/desktop-themes/TraditionalGreen/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;
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;