diff options
author | raveit65 <[email protected]> | 2015-08-12 20:01:08 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2015-08-12 20:01:46 +0200 |
commit | 5ae7119fbc7d1e87f5697ff4adfc1ae064127554 (patch) | |
tree | 9022dfaf6e51e2299c6653840917bd198cb71187 | |
parent | 13f394fe3bcf89059247f181ed73f0065e526215 (diff) | |
download | mate-themes-5ae7119fbc7d1e87f5697ff4adfc1ae064127554.tar.bz2 mate-themes-5ae7119fbc7d1e87f5697ff4adfc1ae064127554.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 f6fd6e0b..0de52048 100644 --- a/desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css @@ -2470,6 +2470,21 @@ NemoWindow .primary-toolbar.toolbar .button:active:hover, 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 95500682..8a53f645 100644 --- a/desktop-themes/Green-Submarine/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/Green-Submarine/gtk-3.0/gtk-widgets.css @@ -2473,6 +2473,21 @@ NemoWindow .primary-toolbar.toolbar .button:active:hover, 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 *
|