diff options
author | raveit65 <[email protected]> | 2015-08-12 19:07:43 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2015-08-12 19:09:41 +0200 |
commit | 9cd258ff29e1367b4f4ce12dd7d268dbbabdbe0a (patch) | |
tree | 04ac30e7a4676c9e3d0d0b06b2ff8c51c19b26c9 | |
parent | 119d386628ffeb23db6ee9e74ec12898a1b70fbc (diff) | |
download | mate-themes-9cd258ff29e1367b4f4ce12dd7d268dbbabdbe0a.tar.bz2 mate-themes-9cd258ff29e1367b4f4ce12dd7d268dbbabdbe0a.tar.xz |
GTK3 BlackMATE: fix font-color of links in yelp
-rw-r--r-- | desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css b/desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css index e49be21f..6b5fff34 100644 --- a/desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css @@ -1271,6 +1271,20 @@ GtkComboBox .menu { color: shade(@insensitive_fg_color, 0.7); } +/* ie. yelp */ +*:link, +*:visited { + color: @link_color; +} + +GtkLinkButton.button, +GtkLinkButton.button:hover, +GtkLinkButton.button:active, +GtkLinkButton.button:active:hover { + transition: all 400ms ease-in; + text-shadow: none; +} + /************** * Scrollbars * **************/ |