Vier: The change from blue to black in links is now faded as well.

This commit is contained in:
Michael Vogel 2013-03-07 19:34:54 +01:00
parent c40c61c106
commit 5d3613c8bc
2 changed files with 16 additions and 2 deletions

View File

@ -214,11 +214,10 @@ function notification($params) {
}
if($params['type'] == NOTIFY_CONFIRM) {
}
if($params['type'] == NOTIFY_SYSTEM) {
}
$h = array(

View File

@ -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; */
}