mirror of
https://github.com/jupyter/notebook.git
synced 2025-01-12 11:45:38 +08:00
Merge pull request #7271 from jdfreder/remove-term-page
Try moving terminal page contents into the running tab.
This commit is contained in:
commit
918d13200a
@ -35,6 +35,7 @@ body {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
height: 1px;
|
height: 1px;
|
||||||
background: @navbar-default-border;
|
background: @navbar-default-border;
|
||||||
|
margin-bottom: -1px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media print {
|
@media print {
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
#menubar {
|
#menubar {
|
||||||
.border-box-sizing();
|
.border-box-sizing();
|
||||||
|
margin-top: 1px;
|
||||||
|
|
||||||
.navbar {
|
.navbar {
|
||||||
border-top: 1px;
|
border-top: 1px;
|
||||||
|
45
IPython/html/static/style/style.min.css
vendored
45
IPython/html/static/style/style.min.css
vendored
@ -8285,6 +8285,7 @@ body {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
height: 1px;
|
height: 1px;
|
||||||
background: #e7e7e7;
|
background: #e7e7e7;
|
||||||
|
margin-bottom: -1px;
|
||||||
}
|
}
|
||||||
@media print {
|
@media print {
|
||||||
#header {
|
#header {
|
||||||
@ -8510,7 +8511,7 @@ ul.breadcrumb span {
|
|||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
.list_toolbar .tree-buttons {
|
.list_toolbar .tree-buttons {
|
||||||
padding-top: 2px;
|
padding-top: 1px;
|
||||||
}
|
}
|
||||||
.list_toolbar [class*="span"] {
|
.list_toolbar [class*="span"] {
|
||||||
min-height: 24px;
|
min-height: 24px;
|
||||||
@ -8521,11 +8522,11 @@ ul.breadcrumb span {
|
|||||||
.list_container {
|
.list_container {
|
||||||
margin-top: 4px;
|
margin-top: 4px;
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
border: 1px solid #ababab;
|
border: 1px solid #dddddd;
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
}
|
}
|
||||||
.list_container > div {
|
.list_container > div {
|
||||||
border-bottom: 1px solid #ababab;
|
border-bottom: 1px solid #dddddd;
|
||||||
}
|
}
|
||||||
.list_container > div:hover .list-item {
|
.list_container > div:hover .list-item {
|
||||||
background-color: red;
|
background-color: red;
|
||||||
@ -8534,7 +8535,7 @@ ul.breadcrumb span {
|
|||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
.list_item:hover .list_item {
|
.list_item:hover .list_item {
|
||||||
background-color: #ddd;
|
background-color: #dddddd;
|
||||||
}
|
}
|
||||||
.list_item a {
|
.list_item a {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
@ -8648,6 +8649,10 @@ input.engine_num_input {
|
|||||||
.file_icon:before.pull-right {
|
.file_icon:before.pull-right {
|
||||||
margin-left: .3em;
|
margin-left: .3em;
|
||||||
}
|
}
|
||||||
|
#notebook_toolbar .pull-right {
|
||||||
|
padding-top: 0px;
|
||||||
|
margin-right: -1px;
|
||||||
|
}
|
||||||
ul#new-menu {
|
ul#new-menu {
|
||||||
left: auto;
|
left: auto;
|
||||||
right: 0;
|
right: 0;
|
||||||
@ -8666,6 +8671,37 @@ ul#new-menu {
|
|||||||
#tab_content {
|
#tab_content {
|
||||||
padding-top: 20px;
|
padding-top: 20px;
|
||||||
}
|
}
|
||||||
|
#running .panel-group .panel {
|
||||||
|
margin-top: 3px;
|
||||||
|
margin-bottom: 1em;
|
||||||
|
}
|
||||||
|
#running .panel-group .panel .panel-heading {
|
||||||
|
background-color: #eeeeee;
|
||||||
|
padding-top: 4px;
|
||||||
|
padding-bottom: 4px;
|
||||||
|
padding-left: 7px;
|
||||||
|
padding-right: 7px;
|
||||||
|
line-height: 22px;
|
||||||
|
}
|
||||||
|
#running .panel-group .panel .panel-heading a:focus,
|
||||||
|
#running .panel-group .panel .panel-heading a:hover {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
#running .panel-group .panel .panel-body {
|
||||||
|
padding: 0px;
|
||||||
|
}
|
||||||
|
#running .panel-group .panel .panel-body .list_container {
|
||||||
|
margin-top: 0px;
|
||||||
|
margin-bottom: 0px;
|
||||||
|
border: 0px;
|
||||||
|
border-radius: 0px;
|
||||||
|
}
|
||||||
|
#running .panel-group .panel .panel-body .list_container .list_item {
|
||||||
|
border-bottom: 1px solid #dddddd;
|
||||||
|
}
|
||||||
|
#running .panel-group .panel .panel-body .list_container .list_item:last-child {
|
||||||
|
border-bottom: 0px;
|
||||||
|
}
|
||||||
/*!
|
/*!
|
||||||
*
|
*
|
||||||
* IPython text editor webapp
|
* IPython text editor webapp
|
||||||
@ -10269,6 +10305,7 @@ select[multiple].celltoolbar select {
|
|||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
-moz-box-sizing: border-box;
|
-moz-box-sizing: border-box;
|
||||||
-webkit-box-sizing: border-box;
|
-webkit-box-sizing: border-box;
|
||||||
|
margin-top: 1px;
|
||||||
}
|
}
|
||||||
#menubar .navbar {
|
#menubar .navbar {
|
||||||
border-top: 1px;
|
border-top: 1px;
|
||||||
|
@ -21,6 +21,36 @@ define([
|
|||||||
this.events = options.events;
|
this.events = options.events;
|
||||||
this.sessions = {};
|
this.sessions = {};
|
||||||
this.base_url = options.base_url || utils.get_body_data("baseUrl");
|
this.base_url = options.base_url || utils.get_body_data("baseUrl");
|
||||||
|
|
||||||
|
// Add collapse arrows.
|
||||||
|
$('#running .panel-group .panel .panel-heading a').each(function(index, el) {
|
||||||
|
var $link = $(el);
|
||||||
|
var $icon = $('<i />')
|
||||||
|
.addClass('fa fa-caret-down');
|
||||||
|
$link.append($icon);
|
||||||
|
$link.down = true;
|
||||||
|
$link.click(function () {
|
||||||
|
if ($link.down) {
|
||||||
|
$link.down = false;
|
||||||
|
// jQeury doesn't know how to animate rotations. Abuse
|
||||||
|
// jQueries animate function by using an unused css attribute
|
||||||
|
// to do the animation (borderSpacing).
|
||||||
|
$icon.animate({ borderSpacing: 90 }, {
|
||||||
|
step: function(now,fx) {
|
||||||
|
$icon.css('transform','rotate(-' + now + 'deg)');
|
||||||
|
}
|
||||||
|
}, 250);
|
||||||
|
} else {
|
||||||
|
$link.down = true;
|
||||||
|
// See comment above.
|
||||||
|
$icon.animate({ borderSpacing: 0 }, {
|
||||||
|
step: function(now,fx) {
|
||||||
|
$icon.css('transform','rotate(-' + now + 'deg)');
|
||||||
|
}
|
||||||
|
}, 250);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
SesssionList.prototype.load_sessions = function(){
|
SesssionList.prototype.load_sessions = function(){
|
||||||
|
@ -20,7 +20,7 @@ define([
|
|||||||
* base_url: string
|
* base_url: string
|
||||||
*/
|
*/
|
||||||
this.base_url = options.base_url || utils.get_body_data("baseUrl");
|
this.base_url = options.base_url || utils.get_body_data("baseUrl");
|
||||||
this.element_name = options.element_name || 'terminal';
|
this.element_name = options.element_name || 'running';
|
||||||
this.selector = selector;
|
this.selector = selector;
|
||||||
this.terminals = [];
|
this.terminals = [];
|
||||||
if (this.selector !== undefined) {
|
if (this.selector !== undefined) {
|
||||||
@ -38,7 +38,7 @@ define([
|
|||||||
$('#refresh_' + this.element_name + '_list').click(function () {
|
$('#refresh_' + this.element_name + '_list').click(function () {
|
||||||
that.load_terminals();
|
that.load_terminals();
|
||||||
});
|
});
|
||||||
$('#new_terminal').click($.proxy(this.new_terminal, this));
|
$('#new-terminal').click($.proxy(this.new_terminal, this));
|
||||||
};
|
};
|
||||||
|
|
||||||
TerminalList.prototype.new_terminal = function () {
|
TerminalList.prototype.new_terminal = function () {
|
||||||
|
@ -41,7 +41,7 @@ ul.breadcrumb {
|
|||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
|
|
||||||
.tree-buttons {
|
.tree-buttons {
|
||||||
padding-top: 2px;
|
padding-top: 1px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -56,12 +56,12 @@ ul.breadcrumb {
|
|||||||
.list_container {
|
.list_container {
|
||||||
margin-top: @dashboard_tb_pad;
|
margin-top: @dashboard_tb_pad;
|
||||||
margin-bottom: 5*@dashboard_tb_pad;
|
margin-bottom: 5*@dashboard_tb_pad;
|
||||||
border: 1px solid @border_color;
|
border: 1px solid @table-border-color;
|
||||||
border-radius: @border-radius-base;
|
border-radius: @border-radius-base;
|
||||||
}
|
}
|
||||||
|
|
||||||
.list_container > div {
|
.list_container > div {
|
||||||
border-bottom: 1px solid @border_color;
|
border-bottom: 1px solid @table-border-color;
|
||||||
&:hover .list-item{
|
&:hover .list-item{
|
||||||
background-color: red;
|
background-color: red;
|
||||||
};
|
};
|
||||||
@ -73,7 +73,7 @@ ul.breadcrumb {
|
|||||||
|
|
||||||
.list_item {
|
.list_item {
|
||||||
&:hover .list_item {
|
&:hover .list_item {
|
||||||
background-color: #ddd;
|
background-color: @table-border-color;
|
||||||
};
|
};
|
||||||
a {text-decoration: none;}
|
a {text-decoration: none;}
|
||||||
}
|
}
|
||||||
@ -156,6 +156,11 @@ input.engine_num_input {
|
|||||||
.icon(@fa-var-file-o)
|
.icon(@fa-var-file-o)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#notebook_toolbar .pull-right {
|
||||||
|
padding-top: 0px;
|
||||||
|
margin-right: -1px;
|
||||||
|
}
|
||||||
|
|
||||||
ul#new-menu {
|
ul#new-menu {
|
||||||
// align right instead of left
|
// align right instead of left
|
||||||
left: auto;
|
left: auto;
|
||||||
@ -179,3 +184,44 @@ ul#new-menu {
|
|||||||
#tab_content {
|
#tab_content {
|
||||||
padding-top: @page-header-padding;
|
padding-top: @page-header-padding;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#running {
|
||||||
|
.panel-group{
|
||||||
|
.panel {
|
||||||
|
margin-top: 3px;
|
||||||
|
margin-bottom: 1em;
|
||||||
|
|
||||||
|
.panel-heading {
|
||||||
|
background-color: @page-backdrop-color;
|
||||||
|
padding-top: @dashboard_tb_pad;
|
||||||
|
padding-bottom: @dashboard_tb_pad;
|
||||||
|
padding-left: @dashboard_lr_pad;
|
||||||
|
padding-right: @dashboard_lr_pad;
|
||||||
|
line-height: @btn_mini_height;
|
||||||
|
|
||||||
|
a:focus, a:hover {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.panel-body {
|
||||||
|
padding: 0px;
|
||||||
|
|
||||||
|
.list_container {
|
||||||
|
margin-top: 0px;
|
||||||
|
margin-bottom: 0px;
|
||||||
|
border: 0px;
|
||||||
|
border-radius: 0px;
|
||||||
|
|
||||||
|
.list_item {
|
||||||
|
border-bottom: 1px solid @table-border-color;
|
||||||
|
|
||||||
|
&:last-child {
|
||||||
|
border-bottom: 0px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -19,9 +19,6 @@ data-terminals-available="{{terminals_available}}"
|
|||||||
<ul id="tabs" class="nav nav-tabs">
|
<ul id="tabs" class="nav nav-tabs">
|
||||||
<li class="active"><a href="#notebooks" data-toggle="tab">Files</a></li>
|
<li class="active"><a href="#notebooks" data-toggle="tab">Files</a></li>
|
||||||
<li><a href="#running" data-toggle="tab">Running</a></li>
|
<li><a href="#running" data-toggle="tab">Running</a></li>
|
||||||
{% if terminals_available %}
|
|
||||||
<li><a href="#terminals" data-toggle="tab">Terminals</a></li>
|
|
||||||
{% endif %}
|
|
||||||
<li><a href="#clusters" data-toggle="tab">Clusters</a></li>
|
<li><a href="#clusters" data-toggle="tab">Clusters</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="tab-content">
|
<div class="tab-content">
|
||||||
@ -52,6 +49,11 @@ data-terminals-available="{{terminals_available}}"
|
|||||||
<li role="presentation" id="new-folder">
|
<li role="presentation" id="new-folder">
|
||||||
<a role="menuitem" tabindex="-1" href="#">Folder</a>
|
<a role="menuitem" tabindex="-1" href="#">Folder</a>
|
||||||
</li>
|
</li>
|
||||||
|
{% if terminals_available %}
|
||||||
|
<li role="presentation" id="new-terminal">
|
||||||
|
<a role="menuitem" tabindex="-1" href="#">Terminal</a>
|
||||||
|
</li>
|
||||||
|
{% endif %}
|
||||||
<li role="presentation" class="divider"></li>
|
<li role="presentation" class="divider"></li>
|
||||||
<li role="presentation" class="dropdown-header" id="notebook-kernels">Notebooks</li>
|
<li role="presentation" class="dropdown-header" id="notebook-kernels">Notebooks</li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -78,7 +80,7 @@ data-terminals-available="{{terminals_available}}"
|
|||||||
<div id="running" class="tab-pane">
|
<div id="running" class="tab-pane">
|
||||||
<div id="running_toolbar" class="row">
|
<div id="running_toolbar" class="row">
|
||||||
<div class="col-sm-8 no-padding">
|
<div class="col-sm-8 no-padding">
|
||||||
<span id="running_list_info">Currently running IPython notebooks</span>
|
<span id="running_list_info">Currently running Jupyter processes</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-sm-4 no-padding tree-buttons">
|
<div class="col-sm-4 no-padding tree-buttons">
|
||||||
<span id="running_buttons" class="pull-right">
|
<span id="running_buttons" class="pull-right">
|
||||||
@ -86,32 +88,43 @@ data-terminals-available="{{terminals_available}}"
|
|||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="panel-group" id="accordion" >
|
||||||
|
<div class="panel panel-default">
|
||||||
|
<div class="panel-heading">
|
||||||
|
<a data-toggle="collapse" data-target="#collapseOne" href="#">
|
||||||
|
Terminals
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div id="collapseOne" class=" collapse in">
|
||||||
|
<div class="panel-body">
|
||||||
|
{% if terminals_available %}
|
||||||
|
<div id="terminal_list">
|
||||||
|
<div id="terminal_list_header" class="row list_header">
|
||||||
|
<div> There are no terminals running. </div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="panel panel-default">
|
||||||
|
<div class="panel-heading">
|
||||||
|
<a data-toggle="collapse" data-target="#collapseTwo" href="#">
|
||||||
|
Notebooks
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div id="collapseTwo" class=" collapse in">
|
||||||
|
<div class="panel-body">
|
||||||
<div id="running_list">
|
<div id="running_list">
|
||||||
<div id="running_list_header" class="row list_header">
|
<div id="running_list_header" class="row list_header">
|
||||||
<div> There are no notebooks running. </div>
|
<div> There are no notebooks running. </div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{% if terminals_available %}
|
|
||||||
<div id="terminals" class="tab-pane">
|
|
||||||
<div id="terminal_toolbar" class="row">
|
|
||||||
<div class="col-xs-8 no-padding">
|
|
||||||
<span id="terminal_list_info">Currently running terminals</span>
|
|
||||||
</div>
|
|
||||||
<div class="col-xs-4 no-padding tree-buttons">
|
|
||||||
<span id="terminal_buttons" class="pull-right">
|
|
||||||
<button id="new_terminal" title="New terminal" class="btn btn-default btn-xs">New Terminal</button>
|
|
||||||
<button id="refresh_terminal_list" title="Refresh terminal list" class="btn btn-default btn-xs"><i class="fa fa-refresh"></i></button>
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div id="terminal_list">
|
|
||||||
<div id="terminal_list_header" class="row list_header">
|
|
||||||
<div> There are no terminals running. </div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
</div>
|
||||||
<div id="clusters" class="tab-pane">
|
<div id="clusters" class="tab-pane">
|
||||||
<div id="cluster_toolbar" class="row">
|
<div id="cluster_toolbar" class="row">
|
||||||
<div class="col-xs-8 no-padding">
|
<div class="col-xs-8 no-padding">
|
||||||
|
Loading…
Reference in New Issue
Block a user