mirror of
https://github.com/jupyter/notebook.git
synced 2024-12-27 04:20:22 +08:00
FF Fix: make ext icon same line as txt
This commit is contained in:
parent
b8101613eb
commit
65fba24d92
@ -23,3 +23,11 @@ i.menu-icon {
|
||||
// add padding to account for float-right
|
||||
padding-top: 4px;
|
||||
}
|
||||
|
||||
ul#help_menu li a{
|
||||
overflow: hidden;
|
||||
padding-right: 2.2em;
|
||||
i {
|
||||
margin-right: -1.2em;
|
||||
}
|
||||
}
|
@ -238,7 +238,10 @@ class="notebook_app"
|
||||
|
||||
{% for helplinks in sections %}
|
||||
{% for link in helplinks %}
|
||||
<li><a href="{{link[0]}}" {{'target="_blank" title="Opens in a new window"' if link[2]}}>{{link[1]}}{{'<i class="icon-external-link menu-icon pull-right"></i>' if link[2]}}</a></li>
|
||||
<li><a href="{{link[0]}}" {{'target="_blank" title="Opens in a new window"' if link[2]}}>
|
||||
{{'<i class="icon-external-link menu-icon pull-right"></i>' if link[2]}}
|
||||
{{link[1]}}
|
||||
</a></li>
|
||||
{% endfor %}
|
||||
{% if not loop.last %}
|
||||
<li class="divider"></li>
|
||||
|
Loading…
Reference in New Issue
Block a user