From 5d3613c8bc057392d3d43986357da6dddf60ce85 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Thu, 7 Mar 2013 19:34:54 +0100 Subject: [PATCH] Vier: The change from blue to black in links is now faded as well. --- include/enotify.php | 3 +-- view/theme/vier/style.css | 15 +++++++++++++++ 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/include/enotify.php b/include/enotify.php index 928d2b4b48..f294a4fc77 100644 --- a/include/enotify.php +++ b/include/enotify.php @@ -214,11 +214,10 @@ function notification($params) { } if($params['type'] == NOTIFY_CONFIRM) { - } if($params['type'] == NOTIFY_SYSTEM) { - + } $h = array( diff --git a/view/theme/vier/style.css b/view/theme/vier/style.css index fe9ec459cc..1595499ee0 100644 --- a/view/theme/vier/style.css +++ b/view/theme/vier/style.css @@ -240,6 +240,11 @@ div.pager { .shared_header a { color: black; + -webkit-transition: all 0.2s ease-in-out; + -moz-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; + -ms-transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; } .shared_header a:hover { @@ -1210,6 +1215,11 @@ border-bottom: 1px solid #D2D2D2; .wall-item-container .wall-item-name { color: black; font-weight: bold; + -webkit-transition: all 0.2s ease-in-out; + -moz-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; + -ms-transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; } .toplevel_item:hover .wall-item-name, @@ -1227,6 +1237,11 @@ border-bottom: 1px solid #D2D2D2; .toplevel_item .fakelink, .wall-item-container .fakelink { color: black; + -webkit-transition: all 0.2s ease-in-out; + -moz-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; + -ms-transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; /* color: darkblue; */ /* color: #3E3E8C; */ }