Vier: No visible login border/no search and events without login
This commit is contained in:
parent
1756ecaba3
commit
0c5f315294
|
@ -118,15 +118,17 @@ function nav_info(&$a) {
|
||||||
if(count($a->apps)>0)
|
if(count($a->apps)>0)
|
||||||
$nav['apps'] = array('apps', t('Apps'), "", t('Addon applications, utilities, games'));
|
$nav['apps'] = array('apps', t('Apps'), "", t('Addon applications, utilities, games'));
|
||||||
|
|
||||||
$nav['search'] = array('search', t('Search'), "", t('Search site content'));
|
if (local_user()) {
|
||||||
|
$nav['search'] = array('search', t('Search'), "", t('Search site content'));
|
||||||
|
|
||||||
$nav['searchoption'] = array(
|
$nav['searchoption'] = array(
|
||||||
t("Full Text"),
|
t("Full Text"),
|
||||||
t("Tags"),
|
t("Tags"),
|
||||||
t("Contacts"));
|
t("Contacts"));
|
||||||
|
|
||||||
if (get_config('system','poco_local_search'))
|
if (get_config('system','poco_local_search'))
|
||||||
$nav['searchoption'][] = t("Forums");
|
$nav['searchoption'][] = t("Forums");
|
||||||
|
}
|
||||||
|
|
||||||
$gdirpath = 'directory';
|
$gdirpath = 'directory';
|
||||||
|
|
||||||
|
@ -140,7 +142,8 @@ function nav_info(&$a) {
|
||||||
elseif(get_config('system','community_page_style') == CP_GLOBAL_COMMUNITY)
|
elseif(get_config('system','community_page_style') == CP_GLOBAL_COMMUNITY)
|
||||||
$nav['community'] = array('community', t('Community'), "", t('Conversations on the network'));
|
$nav['community'] = array('community', t('Community'), "", t('Conversations on the network'));
|
||||||
|
|
||||||
$nav['events'] = Array('events', t('Events'), "", t('Events and Calendar'));
|
if(local_user())
|
||||||
|
$nav['events'] = Array('events', t('Events'), "", t('Events and Calendar'));
|
||||||
|
|
||||||
$nav['directory'] = array($gdirpath, t('Directory'), "", t('People directory'));
|
$nav['directory'] = array($gdirpath, t('Directory'), "", t('People directory'));
|
||||||
|
|
||||||
|
|
|
@ -2378,6 +2378,11 @@ ul.tabs li .active, span.pager_current a {
|
||||||
aside form {
|
aside form {
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
}
|
}
|
||||||
|
aside form fieldset {
|
||||||
|
margin: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
border: 0px none;
|
||||||
|
}
|
||||||
aside form .field label {
|
aside form .field label {
|
||||||
float: left;
|
float: left;
|
||||||
width: 170px;
|
width: 170px;
|
||||||
|
|
Loading…
Reference in a new issue