diff options
author | friendica <info@friendica.com> | 2013-06-03 22:34:35 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-06-03 22:34:35 -0700 |
commit | 21491100f834372545569035e525ab74fc64cf26 (patch) | |
tree | 58bdb263c4f5044e531740b0cc3b80b304aa58af /view | |
parent | a2584878017f933a3a2761754dd9d1eecf0c6e4f (diff) | |
download | volse-hubzilla-21491100f834372545569035e525ab74fc64cf26.tar.gz volse-hubzilla-21491100f834372545569035e525ab74fc64cf26.tar.bz2 volse-hubzilla-21491100f834372545569035e525ab74fc64cf26.zip |
fix buggered contact photos
Diffstat (limited to 'view')
-rw-r--r-- | view/theme/redbasic/css/style.css | 11 | ||||
-rwxr-xr-x | view/tpl/nav.tpl | 2 |
2 files changed, 12 insertions, 1 deletions
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 92f91541d..53d17ea04 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -2439,6 +2439,17 @@ aside input[type='text'] { margin-top: -4px; } +.nav-dropdown-indicator { + opacity: 0.5; + filter:alpha(opacity=50); +} + +.nav-dropdown-indicator:hover { + opacity: 1.0; + filter:alpha(opacity=100); +} + + .location-label, .gender-label, .marital-label, .homepage-label { float: left; text-align: right; diff --git a/view/tpl/nav.tpl b/view/tpl/nav.tpl index af619f8d4..1470d0725 100755 --- a/view/tpl/nav.tpl +++ b/view/tpl/nav.tpl @@ -11,7 +11,7 @@ <ul> {{if $userinfo}} - <li id="nav-user-linkmenu" class="nav-menu-icon"><a href="#" rel="#nav-user-menu" title="{{$userinfo.name}}"><img src="{{$userinfo.icon}}" alt="{{$userinfo.name}}">∇</a> + <li id="nav-user-linkmenu" class="nav-menu-icon"><a href="#" rel="#nav-user-menu" title="{{$userinfo.name}}"><img src="{{$userinfo.icon}}" alt="{{$userinfo.name}}"><span class="nav-dropdown-indicator">∇</span></a> {{if $localuser}} <ul id="nav-user-menu" class="menu-popup"> {{foreach $nav.usermenu as $usermenu}} |