mirror of
https://github.com/friendica/friendica
synced 2024-11-10 03:42:53 +00:00
rename separator to divider
This commit is contained in:
parent
61ef23dedc
commit
cf54ed6960
2 changed files with 7 additions and 6 deletions
|
@ -757,7 +757,7 @@ nav.navbar .nav > li > button:focus {
|
|||
/* required to compensate for moving the container below the topnav bar */
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
#offcanvasUsermenu li.list-group-separator {
|
||||
#offcanvasUsermenu li.divider {
|
||||
background-color: transparent;
|
||||
height: 3px;
|
||||
}
|
||||
|
|
|
@ -299,16 +299,17 @@
|
|||
<li role="menuitem" class="nav-sitename list-group-item">{{$nav.sitename}}</li>
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
<li role="presentation" class="list-group-item"><img src="{{$nav.userinfo.icon}}"
|
||||
alt="{{$nav.userinfo.name}}"
|
||||
<li role="presentation" class="list-group-item">
|
||||
<img src="{{$nav.userinfo.icon}}" alt="{{$nav.userinfo.name}}"
|
||||
style="max-width:15px; max-height:15px; min-width:15px; min-height:15px; width:15px; height:15px;">
|
||||
{{$nav.userinfo.name}}{{if $nav.remote}} ({{$nav.remote}}){{/if}}</li>
|
||||
{{$nav.userinfo.name}}{{if $nav.remote}} ({{$nav.remote}}){{/if}}
|
||||
</li>
|
||||
{{foreach $nav.usermenu as $usermenu}}
|
||||
<li role="menuitem" class="list-group-item"><a role="menuitem" class="{{$usermenu.2}}"
|
||||
href="{{$usermenu.0}}" title="{{$usermenu.3}}">{{$usermenu.1}}</a></li>
|
||||
{{/foreach}}
|
||||
{{if $nav.notifications || $nav.contacts || $nav.messages || $nav.delegation}}
|
||||
<li role="presentation" class="list-group-separator"></li>
|
||||
<li role="presentation" class="divider"></li>
|
||||
{{/if}}
|
||||
{{if $nav.notifications}}
|
||||
<li role="presentation" class="list-group-item"><a role="menuitem"
|
||||
|
@ -335,7 +336,7 @@
|
|||
aria-hidden="true"></i> {{$nav.delegation.1}}</a></li>
|
||||
{{/if}}
|
||||
{{if $nav.settings || $nav.admin || $nav.logout}}
|
||||
<li role="presentation" class="list-group-separator"></li>
|
||||
<li role="presentation" class="divider"></li>
|
||||
{{/if}}
|
||||
{{if $nav.settings}}
|
||||
<li role="presentation" class="list-group-item">
|
||||
|
|
Loading…
Reference in a new issue