diff --git a/css/roblib_search.base.css b/css/roblib_search.base.css index ebca601..da2e5fa 100644 --- a/css/roblib_search.base.css +++ b/css/roblib_search.base.css @@ -50,6 +50,11 @@ border-left-width: 10px; } +.roblib-search-other-sources-header { + border-left-color:#800000; + border-left-width: 10px; +} + .roblib-search-islandscholar-header { border-left-color:darkolivegreen; diff --git a/roblib_search.module b/roblib_search.module index d8ea0ca..aec1c95 100644 --- a/roblib_search.module +++ b/roblib_search.module @@ -101,6 +101,16 @@ function roblib_search_theme() { ); } +function roblib_search_preprocess_panels_pane(&$variables, $hook){ + switch ($variables['pane']->subtype) { + case 'roblib_search-roblib_search_other': + $variables['title_prefix'] = '
'; + $variables['title_suffix'] = '
'; + break; + + } +} + function roblib_search_init() { // Make qtip available for all targets js. drupal_add_js(drupal_get_path('module', 'roblib_search') . '/js/jquery.qtip.min.js');