diff options
author | raveit65 <[email protected]> | 2015-08-12 19:50:47 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2015-08-12 19:51:47 +0200 |
commit | a024ed92ae844a7ecefef6225128c7d4977c2b9b (patch) | |
tree | 37a4768f8a71789346b1937ffd11f12880314ec4 | |
parent | 544fe605fff7b3a3f32ae3ddbf7d342fee51c6c5 (diff) | |
download | mate-themes-a024ed92ae844a7ecefef6225128c7d4977c2b9b.tar.bz2 mate-themes-a024ed92ae844a7ecefef6225128c7d4977c2b9b.tar.xz |
GTK submarine themes: improve hyperlinks fg color in yelp
-rw-r--r-- | desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css | 6 | ||||
-rw-r--r-- | desktop-themes/Green-Submarine/gtk-3.0/gtk-widgets.css | 7 |
2 files changed, 13 insertions, 0 deletions
diff --git a/desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css b/desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css index d5f5c3f3..c152893b 100644 --- a/desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css @@ -3006,6 +3006,12 @@ GtkFlowBox .grid-child:selected { }
/* hyperlinks */
+/* ie. yelp */
+*:link,
+*:visited {
+ color: @link_color;
+}
+
GtkLinkButton,
GtkLinkButton:hover,
GtkLinkButton.button.flat,
diff --git a/desktop-themes/Green-Submarine/gtk-3.0/gtk-widgets.css b/desktop-themes/Green-Submarine/gtk-3.0/gtk-widgets.css index a6dd7fd8..34194db8 100644 --- a/desktop-themes/Green-Submarine/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/Green-Submarine/gtk-3.0/gtk-widgets.css @@ -2992,6 +2992,12 @@ GtkFlowBox .grid-child:selected { }
/* hyperlinks */
+/* ie. yelp */
+*:link,
+*:visited {
+ color: @link_color;
+}
+
GtkLinkButton,
GtkLinkButton:hover,
GtkLinkButton.button.flat,
@@ -3703,6 +3709,7 @@ GtkIconView.view.cell:selected:focus { color-stop (0.45, shade (@button_bg_active, 1.00)),
color-stop (0.52, shade (@button_bg_active, 0.88)),
to (shade (@button_bg_active, 0.90)));
+
border-width: 1px;
border-style: solid;
border-radius: 4px;
|