From 76d8501d671ae7d4234f1a905cd0e506c7f9b23e Mon Sep 17 00:00:00 2001 From: marijus Date: Tue, 10 Dec 2013 00:32:49 +0100 Subject: [PATCH] saved search icon work and bugfixes for #tags not beeing deletable and save button showing if saved search is disabled --- include/text.php | 2 +- mod/search.php | 2 +- view/theme/redbasic/css/style.css | 15 ++++++++++++++- 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/include/text.php b/include/text.php index 9254508a4..f425690ba 100755 --- a/include/text.php +++ b/include/text.php @@ -734,7 +734,7 @@ function search($s,$id='search-box',$url='/search',$save = false) { $o .= '
'; $o .= ''; $o .= ''; - if($save) + if(feature_enabled(local_user(),'savedsearch')) $o .= ''; $o .= '
'; return $o; diff --git a/mod/search.php b/mod/search.php index bad071936..7651b3a4e 100644 --- a/mod/search.php +++ b/mod/search.php @@ -17,7 +17,7 @@ function search_saved_searches() { $o .= '

' . t('Saved Searches') . '

' . "\r\n"; $o .= '
' . "\r\n"; } diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 14a708e55..ede7c4abd 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1232,13 +1232,26 @@ a.mail-list-link { .groupsideedit { margin-right: 10px; } + #saved-search-ul { list-style-type: none; } + +.saved-search-li i { + opacity: 0; +} + +.saved-search-li:hover i { + opacity: 1; +} + +/* .savedsearchdrop, .savedsearchterm { float: left; margin-top: 10px; } +*/ + .savedsearchterm { margin-left: 10px; } @@ -2985,4 +2998,4 @@ img.mail-list-sender-photo { .comment-edit-text-full { color: black; } -.suggest-widget-more { margin-top: 10px; } \ No newline at end of file +.suggest-widget-more { margin-top: 10px; }