Port more icons to fontawesome-4

pull/37/head
Thomas Spura 12 years ago committed by Matthias BUSSONNIER
parent 30b38d2887
commit 01dec53cf9

@ -88,7 +88,7 @@ define([
that.bring_to_front();
});
this.$close = $('<button />')
.addClass('close icon-remove')
.addClass('close fa fa-remove')
.css('margin-left', '5px')
.appendTo(this.$title_bar)
.click(function(){
@ -96,14 +96,14 @@ define([
event.stopPropagation();
});
this.$minimize = $('<button />')
.addClass('close icon-arrow-down')
.addClass('close fa fa-arrow-down')
.appendTo(this.$title_bar)
.click(function(){
that.popped_out = !that.popped_out;
if (!that.popped_out) {
that.$minimize
.removeClass('icon-arrow-down')
.addClass('icon-arrow-up');
.removeClass('fa fa-arrow-down')
.addClass('fa fa-arrow-up');
that.$window
.draggable('destroy')
@ -116,8 +116,8 @@ define([
that.$close.hide();
} else {
that.$minimize
.addClass('icon-arrow-down')
.removeClass('icon-arrow-up');
.addClass('fa fa-arrow-down')
.removeClass('fa fa-arrow-up');
that.$window
.removeClass('docked-widget-modal')

@ -243,7 +243,7 @@ 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]}}>
{{'<i class="icon-external-link menu-icon pull-right"></i>' if link[2]}}
{{'<i class="fa fa-external-link menu-icon pull-right"></i>' if link[2]}}
{{link[1]}}
</a></li>
{% endfor %}

@ -42,7 +42,7 @@ data-notebook-path="{{notebook_path}}"
<div class="col-sm-4 no-padding tree-buttons">
<span id="notebook_buttons" class="pull-right">
<button id="new_notebook" title="Create new notebook" class="btn btn-default btn-xs">New Notebook</button>
<button id="refresh_notebook_list" title="Refresh notebook list" class="btn btn-default btn-xs"><i class="icon-refresh"></i></button>
<button id="refresh_notebook_list" title="Refresh notebook list" class="btn btn-default btn-xs"><i class="fa fa-refresh"></i></button>
</span>
</div>
</div>
@ -51,7 +51,7 @@ data-notebook-path="{{notebook_path}}"
<div id="notebook_list_header" class="row list_header">
<div id="project_name">
<ul class="breadcrumb">
<li><a href="{{breadcrumbs[0][0]}}"><i class="icon-home"></i></a></li>
<li><a href="{{breadcrumbs[0][0]}}"><i class="fa fa-home"></i></a></li>
{% for crumb in breadcrumbs[1:] %}
<li><a href="{{crumb[0]}}">{{crumb[1]}}</a></li>
{% endfor %}
@ -69,7 +69,7 @@ data-notebook-path="{{notebook_path}}"
</div>
<div class="col-sm-4 no-padding tree-buttons">
<span id="running_buttons" class="pull-right">
<button id="refresh_running_list" title="Refresh running list" class="btn btn-default btn-xs"><i class="icon-refresh"></i></button>
<button id="refresh_running_list" title="Refresh running list" class="btn btn-default btn-xs"><i class="fa fa-refresh"></i></button>
</span>
</div>
</div>
@ -89,7 +89,7 @@ data-notebook-path="{{notebook_path}}"
</div>
<div class="col-xs-4 no-padding tree-buttons">
<span id="cluster_buttons" class="pull-right">
<button id="refresh_cluster_list" title="Refresh cluster list" class="btn btn-default btn-xs"><i class="icon-refresh"></i></button>
<button id="refresh_cluster_list" title="Refresh cluster list" class="btn btn-default btn-xs"><i class="fa fa-refresh"></i></button>
</span>
</div>
</div>

Loading…
Cancel
Save