diff options
author | Wolfgang Ulbrich <[email protected]> | 2016-02-02 00:46:55 +0100 |
---|---|---|
committer | Wolfgang Ulbrich <[email protected]> | 2016-02-02 00:46:55 +0100 |
commit | 03a9edcfaf8c3d33d530756e86e44207dbabaddc (patch) | |
tree | 1fe14254582fb28fb96c59d950f8d8ce33ecfaa2 /desktop-themes | |
parent | d65e10b294cb1f36a83348894bc5c70cf62ffbf5 (diff) | |
download | mate-themes-03a9edcfaf8c3d33d530756e86e44207dbabaddc.tar.bz2 mate-themes-03a9edcfaf8c3d33d530756e86e44207dbabaddc.tar.xz |
Gtk+-3.20 BlueMenta: port tooltips to gtk+-3.30
Diffstat (limited to 'desktop-themes')
-rw-r--r-- | desktop-themes/BlueMenta/gtk-3.0/gtk-widgets.css | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/desktop-themes/BlueMenta/gtk-3.0/gtk-widgets.css b/desktop-themes/BlueMenta/gtk-3.0/gtk-widgets.css index a1e0ef5f..11080ad4 100644 --- a/desktop-themes/BlueMenta/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/BlueMenta/gtk-3.0/gtk-widgets.css @@ -136,22 +136,28 @@ GtkTextView { /************ * Tooltips * ************/ -.tooltip, -.tooltip.background { +tooltip { padding: 4px; border-style: solid; border-width: 1px; border-color: shade(@theme_tooltip_bg_color, 0.50); - border-radius: 0px; + border-radius: 2px; +} +tooltip.background { background-color: @theme_tooltip_bg_color; color: @theme_tooltip_fg_color; - text-shadow: none; } -.tooltip * { +tooltip decoration { + background-color: transparent; +} + +tooltip * { background-color: transparent; + color: @theme_tooltip_fg_color; + padding: 4px; } /********************* |