diff options
author | raveit65 <[email protected]> | 2015-08-13 23:17:07 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2015-08-13 23:17:07 +0200 |
commit | 0fcda70e8362d85fce9df6d7c0fef4d675209edf (patch) | |
tree | 09c80fc25af6098fcb898264d3b1c2a54c21153b /desktop-themes | |
parent | 1cf99c6bcb967549136c10d6aafebdbd5b85c090 (diff) | |
download | mate-themes-0fcda70e8362d85fce9df6d7c0fef4d675209edf.tar.bz2 mate-themes-0fcda70e8362d85fce9df6d7c0fef4d675209edf.tar.xz |
GTK3 traditional themes: adjust link_color and add styling for hyperlinks
Diffstat (limited to 'desktop-themes')
4 files changed, 47 insertions, 2 deletions
diff --git a/desktop-themes/TraditionalGreen/gtk-3.0/gtk-widgets.css b/desktop-themes/TraditionalGreen/gtk-3.0/gtk-widgets.css index f02af2cc..f5ae5724 100644 --- a/desktop-themes/TraditionalGreen/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/TraditionalGreen/gtk-3.0/gtk-widgets.css @@ -2627,3 +2627,18 @@ GtkCalendar.header .app-notification.frame .titlebutton.button { padding: 0px; } +/* hyperlinks */ +/* 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; +} + diff --git a/desktop-themes/TraditionalGreen/gtk-3.0/gtk.css b/desktop-themes/TraditionalGreen/gtk-3.0/gtk.css index c80b5a30..2bdf7d7d 100644 --- a/desktop-themes/TraditionalGreen/gtk-3.0/gtk.css +++ b/desktop-themes/TraditionalGreen/gtk-3.0/gtk.css @@ -19,8 +19,8 @@ @define-color theme_text_color #1a1a1a; -@define-color link_color #0000ee; -@define-color visited_link_color #551a8b; +@define-color link_color #00EE00; +@define-color visited_link_color #1A8B54; /***************** * error/warning * diff --git a/desktop-themes/TraditionalOk/gtk-3.0/gtk-widgets.css b/desktop-themes/TraditionalOk/gtk-3.0/gtk-widgets.css index 6ddd20e8..0c67b039 100644 --- a/desktop-themes/TraditionalOk/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/TraditionalOk/gtk-3.0/gtk-widgets.css @@ -2631,3 +2631,18 @@ GtkCalendar.header .app-notification.frame .titlebutton.button { padding: 0px; } +/* hyperlinks */ +/* 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; +} + diff --git a/desktop-themes/TraditionalOkTest/gtk-3.0/gtk-widgets.css b/desktop-themes/TraditionalOkTest/gtk-3.0/gtk-widgets.css index 3d5b5d4c..a9fa5e59 100644 --- a/desktop-themes/TraditionalOkTest/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/TraditionalOkTest/gtk-3.0/gtk-widgets.css @@ -2627,3 +2627,18 @@ GtkCalendar.header .app-notification.frame .titlebutton.button { padding: 0px; } +/* hyperlinks */ +/* 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; +} + |