diff options
author | raveit65 <[email protected]> | 2015-08-13 23:17:07 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2015-08-13 23:18:30 +0200 |
commit | 31c14bfb01cd00577c11dd872c8b59bcae083415 (patch) | |
tree | 48db065fe5cb8b4f4a44d19a6ee32ad91806d9ae /desktop-themes | |
parent | e7f35162bbaea70e57177dcc1a699b8304b7c48f (diff) | |
download | mate-themes-31c14bfb01cd00577c11dd872c8b59bcae083415.tar.bz2 mate-themes-31c14bfb01cd00577c11dd872c8b59bcae083415.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 bf01c16e..c4c730d4 100644 --- a/desktop-themes/TraditionalGreen/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/TraditionalGreen/gtk-3.0/gtk-widgets.css @@ -2555,3 +2555,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 93cfd309..d03aef35 100644 --- a/desktop-themes/TraditionalOk/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/TraditionalOk/gtk-3.0/gtk-widgets.css @@ -2559,3 +2559,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 3ca7ab73..8c10a8fc 100644 --- a/desktop-themes/TraditionalOkTest/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/TraditionalOkTest/gtk-3.0/gtk-widgets.css @@ -2555,3 +2555,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; +} + |