From 87f1c6b8ecaf796409c6dfeb8735ce0af2ba410c Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 9 Oct 2013 20:19:02 -0700 Subject: more icon conversions - savedsearch listings need more work. The drop icon should be hidden unless the entry is being hovered. --- view/theme/redbasic/css/style.css | 4 ++-- view/theme/redbasic/js/redbasic.js | 16 ++++++++-------- view/tpl/saved_searches_aside.tpl | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) (limited to 'view') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index db202b08d..135a4d3c3 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -177,7 +177,7 @@ header #banner { text-align: center; font-size: 1.4em; font-family: tahoma, "Lucida Sans", sans; - color: #eec; + color: #FFF; font-weight: bold; margin-top: 1px; } @@ -186,7 +186,7 @@ header #banner a:active, header #banner a:visited, header #banner a:link, header #banner a:hover { - color: #eec; + color: #FFF; text-decoration: none; outline: none; vertical-align: bottom; diff --git a/view/theme/redbasic/js/redbasic.js b/view/theme/redbasic/js/redbasic.js index 10ca4cfa3..42a55c409 100644 --- a/view/theme/redbasic/js/redbasic.js +++ b/view/theme/redbasic/js/redbasic.js @@ -66,21 +66,21 @@ $('.sidebar-group-element').hover( ); -$('.savedsearchdrop').hover( - function() { - $(this).addClass('drop'); $(this).addClass('icon'); $(this).removeClass('iconspacer');}, - function() { - $(this).removeClass('drop'); $(this).removeClass('icon'); $(this).addClass('iconspacer');} - ); +//$('.savedsearchdrop').hover( +// function() { +// $(this).addClass('drop'); $(this).addClass('icon'); $(this).removeClass('iconspacer');}, +// function() { +// $(this).removeClass('drop'); $(this).removeClass('icon'); $(this).addClass('iconspacer');} +// ); $('.savedsearchterm').hover( function() { id = $(this).attr('id'); - $('#drop-' + id).addClass('icon'); $('#drop-' + id).addClass('drophide'); $('#drop-' + id).removeClass('iconspacer');}, + $('#dropicon-' + id).addClass('searchdrop'); $('#dropicon-' + id).removeClass('iconspacer');}, function() { id = $(this).attr('id'); - $('#drop-' + id).removeClass('icon');$('#drop-' + id).removeClass('drophide'); $('#drop-' + id).addClass('iconspacer');} + $('#dropicon-' + id).removeClass('searchdrop'); $('#dropicon-' + id).addClass('iconspacer');} ); }); diff --git a/view/tpl/saved_searches_aside.tpl b/view/tpl/saved_searches_aside.tpl index 27c7d86a0..0dabca4a6 100755 --- a/view/tpl/saved_searches_aside.tpl +++ b/view/tpl/saved_searches_aside.tpl @@ -5,7 +5,7 @@