@id for site_nav_global_primary items in order to target for styling
This commit is contained in:
parent
6b23a9ed2f
commit
9d384aadb1
|
@ -399,6 +399,7 @@ class RegisterAction extends Action
|
||||||
$this->elementEnd('li');
|
$this->elementEnd('li');
|
||||||
$attrs = array('type' => 'checkbox',
|
$attrs = array('type' => 'checkbox',
|
||||||
'id' => 'license',
|
'id' => 'license',
|
||||||
|
'class' => 'checkbox',
|
||||||
'name' => 'license',
|
'name' => 'license',
|
||||||
'value' => 'true');
|
'value' => 'true');
|
||||||
if ($this->boolean('license')) {
|
if ($this->boolean('license')) {
|
||||||
|
|
|
@ -242,25 +242,29 @@ class Action extends HTMLOutputter // lawsuit
|
||||||
$this->elementStart('ul', array('class' => 'nav'));
|
$this->elementStart('ul', array('class' => 'nav'));
|
||||||
if ($user) {
|
if ($user) {
|
||||||
$this->menuItem(common_local_url('all', array('nickname' => $user->nickname)),
|
$this->menuItem(common_local_url('all', array('nickname' => $user->nickname)),
|
||||||
_('Home'));
|
_('Home'), _('Personal timeline'), false, 'nav_home');
|
||||||
}
|
}
|
||||||
$this->menuItem(common_local_url('peoplesearch'), _('Search'));
|
$this->menuItem(common_local_url('peoplesearch'),
|
||||||
|
_('Search'), _('Search the site for people and text'), false, 'nav_search');
|
||||||
if ($user) {
|
if ($user) {
|
||||||
$this->menuItem(common_local_url('profilesettings'),
|
$this->menuItem(common_local_url('profilesettings'),
|
||||||
_('Account'));
|
_('Account'), _('Account settings'), false, 'nav_account');
|
||||||
$this->menuItem(common_local_url('imsettings'),
|
$this->menuItem(common_local_url('imsettings'),
|
||||||
_('Connect'));
|
_('Connect'), _('Connect settings'), false, 'nav_connect');
|
||||||
$this->menuItem(common_local_url('logout'),
|
$this->menuItem(common_local_url('logout'),
|
||||||
_('Logout'));
|
_('Logout'), _('Logout from the site'), false, 'nav_logout');
|
||||||
} else {
|
} else {
|
||||||
$this->menuItem(common_local_url('login'), _('Login'));
|
$this->menuItem(common_local_url('login'),
|
||||||
|
_('Login'), _('Login to the site'), false, 'nav_login');
|
||||||
if (!common_config('site', 'closed')) {
|
if (!common_config('site', 'closed')) {
|
||||||
$this->menuItem(common_local_url('register'), _('Register'));
|
$this->menuItem(common_local_url('register'),
|
||||||
|
_('Register'), _('Create an account'), false, 'nav_register');
|
||||||
}
|
}
|
||||||
$this->menuItem(common_local_url('openidlogin'), _('OpenID'));
|
$this->menuItem(common_local_url('openidlogin'),
|
||||||
|
_('OpenID'), _('Login with OpenID'), false, 'nav_openid');
|
||||||
}
|
}
|
||||||
$this->menuItem(common_local_url('doc', array('title' => 'help')),
|
$this->menuItem(common_local_url('doc', array('title' => 'help')),
|
||||||
_('Help'));
|
_('Help'), _('Help me!'), false, 'nav_help');
|
||||||
$this->elementEnd('ul');
|
$this->elementEnd('ul');
|
||||||
$this->elementEnd('dd');
|
$this->elementEnd('dd');
|
||||||
$this->elementEnd('dl');
|
$this->elementEnd('dl');
|
||||||
|
|
|
@ -57,6 +57,21 @@ background-color:transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#site_nav_global_primary a {
|
||||||
|
}
|
||||||
|
|
||||||
|
#nav_register a {
|
||||||
|
background-color:#A9BF4F;
|
||||||
|
color:#fff;
|
||||||
|
text-decoration:none;
|
||||||
|
font-weight:bold;
|
||||||
|
padding:2px 4px;
|
||||||
|
|
||||||
|
}
|
||||||
|
#nav_login a {
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
#site_nav_local_views a {
|
#site_nav_local_views a {
|
||||||
border-color:#fff;
|
border-color:#fff;
|
||||||
background-color:rgba(255, 255, 255, 0.2);
|
background-color:rgba(255, 255, 255, 0.2);
|
||||||
|
@ -71,6 +86,7 @@ background-color:rgba(255, 255, 255, 0.7);
|
||||||
background-color:#fff;
|
background-color:#fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#page_notice .error {
|
#page_notice .error {
|
||||||
background-color:#F7E8E8;
|
background-color:#F7E8E8;
|
||||||
}
|
}
|
||||||
|
@ -78,9 +94,6 @@ background-color:#F7E8E8;
|
||||||
background-color:#EFF3DC;
|
background-color:#EFF3DC;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#export_data li a {
|
#export_data li a {
|
||||||
background-repeat:no-repeat;
|
background-repeat:no-repeat;
|
||||||
background-position:0 45%;
|
background-position:0 45%;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user