##// END OF EJS Templates
Fixes to make spinners in cluster list display correctly.
Jonathan Frederic -
Show More
@@ -104,7 +104,7 b' var IPython = (function (IPython) {'
104 104 var input = $('<input/>').attr('type','number')
105 105 .attr('min',1)
106 106 .attr('size',3)
107 .addClass('engine_num_input');
107 .addClass('engine_num_input form-control');
108 108 engines_col.append(input);
109 109 var start_button = $('<button/>').addClass("btn btn-default btn-xs").text("Start");
110 110 var action_col = $('<div/>').addClass('action_col col-md-2').append(
@@ -78,7 +78,6 b' ul.breadcrumb {'
78 78 padding-bottom: @dashboard_tb_pad;
79 79 padding-left: @dashboard_lr_pad;
80 80 padding-right: @dashboard_lr_pad;
81 height: @btn_mini_height;
82 81 line-height: @btn_mini_height;
83 82 }
84 83
@@ -106,7 +105,7 b' input.nbname_input, input.engine_num_input {'
106 105 // These settings give these inputs a height that matches @btn_mini_height = 22
107 106 padding-top: 3px;
108 107 padding-bottom: 3px;
109 height: 14px;
108 height: @btn_mini_height;
110 109 line-height: 14px;
111 110 margin: 0px;
112 111 }
@@ -75,7 +75,7 b' data-notebook-path="{{notebook_path}}"'
75 75 </div>
76 76
77 77 <div id="running_list">
78 <div id="running_list_header" class="row list_header">
78 <div id="running_list_header" class="row warning">
79 79 <div> There are no notebooks running. </div>
80 80 </div>
81 81 </div>
General Comments 0
You need to be logged in to leave comments. Login now