From ecee476ede872cc671c8fe4887eb6194d6b9ef85 Mon Sep 17 00:00:00 2001 From: Jane Sandberg Date: Sat, 31 Mar 2018 06:48:49 -0700 Subject: [PATCH] LP1760160: Search bar has a different CSS class when on the home page To test: 1. In templates/opac/css/style.css, add some highly noticeable CSS that applies to .searchbar-home or an element within .searchbar-home, e.g. .searchbar-home .search-box { background-color: purple; height: 4em; } 2. Go to the home page of your public catalog. The .searchbar-home .search-box CSS should have taken effect. 3. Go to another page of your public catalog, such as a search results or login page. The CSS should not have taken effect here. Signed-off-by: Jane Sandberg Signed-off-by: Bill Erickson --- Open-ILS/src/templates/opac/home.tt2 | 2 +- Open-ILS/src/templates/opac/parts/searchbar.tt2 | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Open-ILS/src/templates/opac/home.tt2 b/Open-ILS/src/templates/opac/home.tt2 index 8f120e6e9e..25dd196983 100644 --- a/Open-ILS/src/templates/opac/home.tt2 +++ b/Open-ILS/src/templates/opac/home.tt2 @@ -4,7 +4,7 @@ ctx.metalinks.push(''); ctx.page_title = l("Home") %]

[% l('Catalog Home') %]

- [% INCLUDE "opac/parts/searchbar.tt2" %] + [% INCLUDE "opac/parts/searchbar.tt2" is_home_page=1 %]
diff --git a/Open-ILS/src/templates/opac/parts/searchbar.tt2 b/Open-ILS/src/templates/opac/parts/searchbar.tt2 index 4cf34a393a..1b6b7cfe0a 100644 --- a/Open-ILS/src/templates/opac/parts/searchbar.tt2 +++ b/Open-ILS/src/templates/opac/parts/searchbar.tt2 @@ -46,7 +46,7 @@ END; [% l('Browse the Catalog') %] [% INCLUDE 'opac/parts/cart.tt2' %]
-