diff options
author | raveit65 <[email protected]> | 2015-08-12 20:01:08 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2015-08-12 20:01:08 +0200 |
commit | a819200e2af3fd7f874855147c79c89344aabeff (patch) | |
tree | 6e4c4a9ed02d22883f7b2f8e21ff34f37154fb09 | |
parent | 1499ad09c1c4d3cbe177d431a6f84815fd23c8e0 (diff) | |
download | mate-themes-a819200e2af3fd7f874855147c79c89344aabeff.tar.bz2 mate-themes-a819200e2af3fd7f874855147c79c89344aabeff.tar.xz |
GTK submarine themes: add hyperlinks fg color settings in yelp
-rw-r--r-- | desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css | 15 | ||||
-rw-r--r-- | desktop-themes/Green-Submarine/gtk-3.0/gtk-widgets.css | 15 |
2 files changed, 30 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 bf77f500..f035006e 100644 --- a/desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css @@ -2336,6 +2336,21 @@ NemoWindow .primary-toolbar.toolbar .button:active:active, icon-shadow: 1px 1px @theme_selected_shadow_color;
}
+/* hyperlinks */
+/* ie. yelp */
+*:link,
+*:visited {
+ color: @link_color;
+}
+
+GtkLinkButton,
+GtkLinkButton:hover,
+GtkLinkButton.button.flat,
+GtkLinkButton.button.flat:hover {
+ padding: 4px;
+ border-color: transparent;
+}
+
/*****************
* Notebooks and *
* tabs *
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 2eddb02c..75223367 100644 --- a/desktop-themes/Green-Submarine/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/Green-Submarine/gtk-3.0/gtk-widgets.css @@ -2340,6 +2340,21 @@ NemoWindow .primary-toolbar.toolbar .button:active:active, icon-shadow: 1px 1px @theme_selected_shadow_color;
}
+/* hyperlinks */
+/* ie. yelp */
+*:link,
+*:visited {
+ color: @link_color;
+}
+
+GtkLinkButton,
+GtkLinkButton:hover,
+GtkLinkButton.button.flat,
+GtkLinkButton.button.flat:hover {
+ padding: 4px;
+ border-color: transparent;
+}
+
/*****************
* Notebooks and *
* tabs *
|