diff options
author | raveit65 <[email protected]> | 2015-08-13 23:17:07 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2015-08-13 23:18:03 +0200 |
commit | 0f9388232bc8e6859cec43333e9668d7e4e80c3b (patch) | |
tree | e0667e07703d54b4c009ff07b9feffdc45daa611 | |
parent | 1815bb2d33907e5f66321f92e8f5863fa16f21be (diff) | |
download | mate-themes-0f9388232bc8e6859cec43333e9668d7e4e80c3b.tar.bz2 mate-themes-0f9388232bc8e6859cec43333e9668d7e4e80c3b.tar.xz |
GTK3 traditional themes: adjust link_color and add styling for hyperlinks
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; +} + |