Skip to content
Snippets Groups Projects
Commit 000a568b authored by Raghu Nayyar's avatar Raghu Nayyar
Browse files

Long Application Names are ellipsis correctly.

parent 5ef38961
No related branches found
No related tags found
No related merge requests found
......@@ -248,8 +248,8 @@ fieldset.warning a { color:#b94a48 !important; font-weight:bold; }
overflow:hidden; box-sizing:border-box; -moz-box-sizing:border-box;
}
#navigation:hover { overflow-y:auto; }
#navigation a {
display:block; padding:8px 0 4px;
#navigation a span {
display:block;
text-decoration:none; font-size:10px; text-align:center;
color:#fff; text-shadow:#000 0 -1px 0;
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; filter:alpha(opacity=50); opacity:.5;
......@@ -257,7 +257,7 @@ fieldset.warning a { color:#b94a48 !important; font-weight:bold; }
}
#navigation a:hover, #navigation a:focus { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; filter:alpha(opacity=80); opacity:.8; }
#navigation a.active { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter:alpha(opacity=100); opacity:1; }
#navigation .icon { display:block; width:32px; height:32px; margin:0 16px 0; }
#navigation .icon { display:block; width:32px; height:32px; margin:0 16px 0; padding:8px 0 4px;}
#navigation li:first-child a { padding-top:16px; }
......
......@@ -75,7 +75,9 @@
<a href="<?php print_unescaped($entry['href']); ?>" title=""
<?php if( $entry['active'] ): ?> class="active"<?php endif; ?>>
<img class="icon svg" src="<?php print_unescaped($entry['icon']); ?>"/>
<?php p($entry['name']); ?>
<span>
<?php p($entry['name']); ?>
</span>
</a>
</li>
<?php endforeach; ?>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment